diff options
author | Ivan Tham | 2021-06-05 07:45:24 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-06 01:12:35 +0000 |
commit | 8c2fa12ffc006de787992b4022263be033ac8200 (patch) | |
tree | 370e853f70868e92e23e4fedafab99e3d8818338 /helix-term/src/keymap.rs | |
parent | 212f6bc372c4ab1f4f8a3a6fe6948cddefe2fda1 (diff) |
Add window mode
Fix #93
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 7376cd03..e51dfbc5 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -264,10 +264,7 @@ pub fn default() -> Keymaps { ctrl!('u') => commands::half_page_up, ctrl!('d') => commands::half_page_down, - KeyEvent { - code: KeyCode::Tab, - modifiers: KeyModifiers::NONE - } => commands::next_view, + ctrl!('w') => commands::window_mode, // move under <space>c ctrl!('c') => commands::toggle_comments, |