aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/keymap.rs
diff options
context:
space:
mode:
authorJan Hrastnik2020-11-03 09:57:12 +0000
committerJan Hrastnik2020-11-03 09:57:12 +0000
commit2b44031929c490298cfc29cdd055ca4f22bf4645 (patch)
tree3452f7cb44b78e43cbbfc99ee62cd36759d4c788 /helix-view/src/keymap.rs
parentc9e9fcf7c549fe98f5ac5f13cdee213da9c9ad7a (diff)
various fixes
Diffstat (limited to 'helix-view/src/keymap.rs')
-rw-r--r--helix-view/src/keymap.rs1
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