How to configure zsh such that Ctrl+Backspace kills the word before point? How to achieve that Ctrl+Delete kills the word after point?
I use urxvt as terminal emulator.
How to configure zsh such that Ctrl+Backspace kills the word before point? How to achieve that Ctrl+Delete kills the word after point?
I use urxvt as terminal emulator.
Add the following to your ~/.zshrc
bindkey '^H' backward-kill-word
bindkey '^[[3;5~' kill-word
You can also use cat to see what escape sequences you terminal is sending to the shell when you type stuff, and use that with bindkey.
gnome-terminal
kitty too
I'll focus on Ctrl+Delete first.
The zsh command to delete a whole word forwards is called kill-word. By default it is bound to Alt+D.
How to make Ctrl+Delete do it too depends on which terminal emulator you are using.
On my system, this works in xterm and Gnome Terminal:
bindkey -M emacs '^[[3;5~' kill-word
and for urxvt, you should do:
bindkey -M emacs '^[[3^' kill-word
If that doesn't work, try typing Ctrl+V Ctrl+Delete to see what the value is on your system.
You could even add both of those together to your .zshrc, or use the output of tput kDC5 instead of hard-coding the sequence.
Ctrl+Backspace seems harder.
On my system, pressing that is the same as pressing just Backspace.
If yours is the same, I think your best option is to use Alt+Backspace or Ctrl+W instead.
Ctrl + Backspace doesn't work
^[[3^ for urxvt. Ctrl+V Ctrl+Delete would show you this.
'^[[3^' kill-word bindkey and '^H' backward-kill-word to my .zshrc. Now it works!
^H or ^? will work for Ctrl+Backspace. In fact it seems such a binding is not possible. Alt+Backspace or Ctrl+W might be adequate replacements.
On urxvt, for the deleting backwards part, I simply have in my .zshrc the following:
bindkey '^H' backward-kill-word
and it allows me to delete the previous word with ctrl+backspace
I've got this in my .Xresources:
URxvt.keysym.C-BackSpace: \033[33~
and that in my .zshrc:
bindkey -M main -M viins -M vicmd '^[[33~' backward-kill-word
This kills each whitespace seperated word. Note that '^[' is the Escape character. You have to xrdb -load .Xresources, open a terminal and then hit ^V followed by ^BackSpace.
Type showkey -a in your zsh, and enter the key combination(s) that you want (e.g. Ctrl + Backspace). I'm also using zsh and for me:
Ctrl + Backspace is
^H
Ctrl + Delete is
^[[3;5~
Then in your .zshrc file, add these lines:
# Ctrl+Backspace: kill the word backward
bindkey -M emacs '^H' backward-kill-word
bindkey -M viins '^H' backward-kill-word
bindkey -M vicmd '^H' backward-kill-word
# Ctrl+Delete: kill the word forward
bindkey -M emacs '^[[3;5~' kill-word
bindkey -M viins '^[[3;5~' kill-word
bindkey -M vicmd '^[[3;5~' kill-word
In fact the output of showkey -a on my Kali is:
Ctrl+Backspace is ^?
Backspace is ^H
So the accepted answers here just made my Backspace to delete words.
For anyone that happens to have the same behavior, add in your ~/.zshrc file this line:
bindkey '^?' backward-kill-word
showkey -a doesn't even react to ctrl+backspace combo or even backspace without any modifiers, so it doesn't work for anyone. (macOS Sonoma 14.5, zsh, xterm-256color)