-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Differenciate between Backspace and Ctrl+Backspace #1
Comments
can you examine the keytab files and provide some example with real values, please? I'm a little bit lost here. BTW these files (except macbook) are taken from konsole. |
Not sure what you mean, I filed this bug after a chat with the #zsh guys. I do believe Konsole has the same issue. The issue is when binding the keys, cf:
|
For the record, I managed to enable support in Konsole for Ctrl-Left/Right to skip words and Ctrl-Backspace to delete words, by making two changes: In the config for Konsole itself -
In the file ~/.inputrc -
|
Guys, is there any specification how to read these sequences, please? I'm just maintaining part of code which is blackbox for me so I'd like to know what I'm using in these keymap files... |
Fixes #1 Notes about other terminals: Konsole: ^? for backspace and ^H for ctrl+backspace Gnome Terminal (VTE3): - ^? for backspace and ^H for ctrl+backspace by default, and - ^H for backspace and ^? for ctrl+backspace if the option "Backspace key generates:" is set to "Control-H"
Here's a fix => #218 |
Fixes #1 Notes about other terminals: Konsole: ^? for backspace and ^H for ctrl+backspace Gnome Terminal (VTE3): - ^? for backspace and ^H for ctrl+backspace by default, and - ^H for backspace and ^? for ctrl+backspace if the option "Backspace key generates:" is set to "Control-H"
Fix issue cursor positioning issues
Fixes lxqt#1 Notes about other terminals: Konsole: ^? for backspace and ^H for ctrl+backspace Gnome Terminal (VTE3): - ^? for backspace and ^H for ctrl+backspace by default, and - ^H for backspace and ^? for ctrl+backspace if the option "Backspace key generates:" is set to "Control-H"
Ctrl+Backspace on linux/macbook/Default sends the same signal as backspace, ^?. On vt420pc/solaris they're both ^H.
^H should be sent by "backspace" and ^? by "ctrl+backspace"; a Ctrl+V in xterm shows the proper behaviour.
The text was updated successfully, but these errors were encountered: