diff options
author | Blaž Hrastnik | 2020-09-13 10:51:42 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-13 10:51:42 +0000 |
commit | fb0f56b7472d221e57b2bec13c9c8668fe673e77 (patch) | |
tree | d294eaa9b633ecb6d2a37234007edbba4667d739 /helix-term/src | |
parent | eb6b9a9ca958b0141a4cf6cc4dc59781e905fcc7 (diff) |
Add 'o' command.
Diffstat (limited to 'helix-term/src')
-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, |