diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index e51dfbc5..6ef53915 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -360,6 +360,7 @@ pub fn default() -> Keymaps { } => commands::insert::insert_tab, ctrl!('x') => commands::completion, + ctrl!('w') => commands::insert::delete_word_backward, ), ) } |