Fixed input key bindings.

This commit is contained in:
rakshasa
2025-08-04 09:34:31 +02:00
committed by Jari Sundell
parent 9ac43c2b40
commit 420f03b40b
3 changed files with 13 additions and 13 deletions
+8 -8
View File
@@ -32,14 +32,14 @@ static const int emacs_keymap[RT_KEYMAP_MAX] = {
'F' - '@',
'P' - '@',
'N' - '@',
'l',
'k',
'U' - '@',
'H' - '@',
'A' - '@',
'E' - '@',
'L',
'D' - '@'
'D' - '@', // RT_KEY_DELETE_ITEM
'k', // RT_KEY_DISCONNECT_PEER
'l', // RT_KEY_DISPLAY_LOG
'L' // RT_KEY_TOGGLE_LAYOUT
};
static const int vi_keymap[RT_KEYMAP_MAX] = {
@@ -47,14 +47,14 @@ static const int vi_keymap[RT_KEYMAP_MAX] = {
'l',
'k',
'j',
'L',
'K',
'B' - '@',
'D' - '@',
'H',
'G',
'L' - '@',
'x'
'x', // RT_KEY_DELETE_ITEM
'K', // RT_KEY_DISCONNECT_PEER
'L', // RT_KEY_DISPLAY_LOG
'L' - '@' // RT_KEY_TOGGLE_LAYOUT
};
Root::Root() {