diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index a6417cfd..39bd5f3b 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -280,7 +280,10 @@ pub fn default() -> Keymaps { // z family for save/restore/combine from/to sels from register - ctrl!('i') => commands::jump_forward, // TODO: ctrl-i conflicts tab + KeyEvent { // supposedly ctrl!('i') but did not work + code: KeyCode::Tab, + modifiers: KeyModifiers::NONE, + } => commands::jump_forward, ctrl!('o') => commands::jump_backward, // ctrl!('s') => commands::save_selection, |