diff options
author | Jan Hrastnik | 2020-11-03 09:57:12 +0000 |
---|---|---|
committer | Jan Hrastnik | 2020-11-03 09:57:12 +0000 |
commit | 2b44031929c490298cfc29cdd055ca4f22bf4645 (patch) | |
tree | 3452f7cb44b78e43cbbfc99ee62cd36759d4c788 /helix-view/src/keymap.rs | |
parent | c9e9fcf7c549fe98f5ac5f13cdee213da9c9ad7a (diff) |
various fixes
Diffstat (limited to 'helix-view/src/keymap.rs')
-rw-r--r-- | helix-view/src/keymap.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/keymap.rs b/helix-view/src/keymap.rs index f70b9deb..69e6cabb 100644 --- a/helix-view/src/keymap.rs +++ b/helix-view/src/keymap.rs @@ -163,6 +163,7 @@ pub fn default() -> Keymaps { vec![key!('p')] => commands::paste, vec![key!('>')] => commands::indent, vec![key!('<')] => commands::unindent, + vec![key!(':')] => commands::command_mode, vec![Key { code: KeyCode::Esc, modifiers: Modifiers::NONE |