search for: modifyotherkeys

Displaying 2 results from an estimated 2 matches for "modifyotherkeys".

2024 Jul 08
1
Can we reset CSI u mode on client disconnect? via
...2024 at 11:58, Damien Miller <djm at mindrot.org> wrote: > ssh already restores all TTY flags on exit: This isn't a TTY flag, it's a terminal mode enabled via an escape sequence, there's actually multiple modes involved (CSI u as in the subject), but xterm also supports "modifyOtherKeys" and Vim for example will pick depending what the terminal reports support for. The closest thing which ssh could do would be the code equivalent of "tput rs2", but OpenSSH isn't likely to link to ncurses just for that, and it seems like for most terminals "rs1" is nee...
2024 Jul 08
2
Can we reset CSI u mode on client disconnect? via
ssh already restores all TTY flags on exit: https://github.com/openssh/openssh-portable/blob/V_9_8_P1/sshtty.c#L56-L78 It's possible there are some exit cases that are not hitting the leave_raw_mode(), but if so then they aren't obvious. On Sun, 7 Jul 2024, Johannes Altmanninger wrote: > Some terminals support CSI u style encoding of keystrokes, typically via > the Kitty keyboard