diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-08-06 08:55:29 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-08-06 08:55:29 +0200 |
commit | 079e7bb5e0a79171f3356d55d3f6302a82645a39 (patch) | |
tree | 8f26f89ceb779ce4aae2eed7427692c7a6db37e6 /lib/key-bindings.zsh | |
parent | f2c8b970eed3e5ddf071c25177da44ea5061a279 (diff) | |
download | zsh-079e7bb5e0a79171f3356d55d3f6302a82645a39.tar.gz zsh-079e7bb5e0a79171f3356d55d3f6302a82645a39.tar.bz2 zsh-079e7bb5e0a79171f3356d55d3f6302a82645a39.zip |
lib: remove CTRL-Backspace key binding altogether
It conflicts with normal Backspace behavior. Fixes #9155
Diffstat (limited to 'lib/key-bindings.zsh')
-rw-r--r-- | lib/key-bindings.zsh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/key-bindings.zsh b/lib/key-bindings.zsh index 4916034b3..aaa73046e 100644 --- a/lib/key-bindings.zsh +++ b/lib/key-bindings.zsh @@ -89,8 +89,6 @@ else bindkey -M vicmd "^[3;5~" delete-char fi -# [Ctrl-Backspace] - delete whole backward-word -bindkey -M emacs '^H' backward-kill-word # [Ctrl-Delete] - delete whole forward-word bindkey -M emacs '^[[3;5~' kill-word bindkey -M viins '^[[3;5~' kill-word |