fixing return key

When pressing return in `nano` the terminal received an `<CTRL>+J` instead of
the return key. `<CTRL>+J` justifies the text. But is (confusingly) actually
the key for a line feed as well? Terminal programming is not easy …
Gentoo
Christian Burger 2022-04-07 00:28:37 +02:00
parent 6d02539162
commit 69d750b6ed
1 changed files with 4 additions and 0 deletions

View File

@ -39,7 +39,11 @@ namespace krikkel::NCursesPtyWindow
vterm_screen_set_callbacks(pseudoTerminalScreen, &screenCallbacks, this);
// the terminal is doing most of the work
//raw(); — cbreak might suffice
//noecho(); — already set
//nodelay(true); — @todo needs some reprogramming
keypad(false);
nonl();
/// @todo block all signals, this thread does not handle any
readPtyClientThread =