diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 26b2b5fe..a1d483c7 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -263,6 +263,7 @@ pub fn default() -> Keymaps { // ctrl!('s') => commands::save_selection, key!(' ') => commands::space_mode, + key!('z') => commands::view_mode, ); // TODO: decide whether we want normal mode to also be select mode (kakoune-like), or whether // we keep this separate select mode. More keys can fit into normal mode then, but it's weird |