Bindkey fix for delete key.

This commit is contained in:
David Tomaschik
2020-04-13 11:51:10 -07:00
parent aa6a2e806d
commit 57b181bd74

View File

@@ -83,6 +83,8 @@ bindkey '^h' backward-delete-char
# ok, a few emacs convenience bindings # ok, a few emacs convenience bindings
bindkey '^w' backward-kill-word bindkey '^w' backward-kill-word
bindkey '^r' history-incremental-search-backward bindkey '^r' history-incremental-search-backward
# delete really deletes
bindkey "^[[3~" delete-char
# Source extras and aliases if interactive # Source extras and aliases if interactive
if [[ $- == *i* ]] ; then if [[ $- == *i* ]] ; then