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 148611e3..32515761 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -108,6 +108,10 @@ pub fn default() -> Keymap { modifiers: Modifiers::NONE } => commands::append_mode as Command, Key { + code: KeyCode::Char('o'), + modifiers: Modifiers::NONE + } => commands::open_below as Command, + Key { code: KeyCode::Esc, modifiers: Modifiers::NONE } => commands::normal_mode as Command, |