Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tui.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ namespace tui {
if (system("stty cooked") != 0) {
err(1, "couldn't set stty cooked");
}
if (system("stty echo") != 0) {
err(1, "couldn't set stty echo");
}
// struct termios term{};
// if (tcgetattr(STDIN_FILENO, &term) == -1) {
// err(1, "error getting terminal attributes");
Expand Down