aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-13 10:51:42 +0000
committerBlaž Hrastnik2020-09-13 10:51:42 +0000
commitfb0f56b7472d221e57b2bec13c9c8668fe673e77 (patch)
treed294eaa9b633ecb6d2a37234007edbba4667d739 /helix-term
parenteb6b9a9ca958b0141a4cf6cc4dc59781e905fcc7 (diff)
Add 'o' command.
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/keymap.rs4
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,