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