diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index a27abf09..efc72b60 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -190,6 +190,10 @@ pub fn default() -> Keymaps { vec![ctrl!('p')] => commands::file_picker, vec![ctrl!('b')] => commands::buffer_picker, + vec![Key { + code: KeyCode::Tab, + modifiers: Modifiers::NONE + }] => commands::next_view, ), Mode::Insert => hashmap!( vec![Key { |