diff options
author | Blaž Hrastnik | 2021-03-19 15:16:34 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-22 04:53:43 +0000 |
commit | df306fe031e6ddb188cda9d33da019b65af8cd99 (patch) | |
tree | 7d30efe2b026e3259cf9dba7cfd29d6de9e46da8 /helix-term/src/keymap.rs | |
parent | 42d07b0621f034049ba3872122144ea9e69092eb (diff) |
Implement open_above (O).
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 5a39b774..1f34aa9e 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -160,7 +160,7 @@ pub fn default() -> Keymaps { key!('a') => commands::append_mode, shift!('A') => commands::append_to_line, key!('o') => commands::open_below, - // key!('O') => commands::open_above, + shift!('O') => commands::open_above, // [<space> ]<space> equivalents too (add blank new line, no edit) |