diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 132c81d0..440a3efb 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -146,8 +146,11 @@ pub fn default() -> Keymaps { vec![shift!('K')] => commands::extend_line_up, vec![shift!('L')] => commands::extend_char_right, vec![key!('w')] => commands::move_next_word_start, + vec![shift!('W')] => commands::extend_next_word_start, vec![key!('b')] => commands::move_prev_word_start, + vec![shift!('B')] => commands::extend_prev_word_start, vec![key!('e')] => commands::move_next_word_end, + // TODO: E vec![key!('g')] => commands::goto_mode, vec![key!('i')] => commands::insert_mode, vec![shift!('I')] => commands::prepend_to_line, |