From 57b181bd74608f0f5ae061a3c0f01d0cf461ec18 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 13 Apr 2020 11:51:10 -0700 Subject: [PATCH] Bindkey fix for delete key. --- dotfiles/zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 1a96e7b..9e6f4ea 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -83,6 +83,8 @@ bindkey '^h' backward-delete-char # ok, a few emacs convenience bindings bindkey '^w' backward-kill-word bindkey '^r' history-incremental-search-backward +# delete really deletes +bindkey "^[[3~" delete-char # Source extras and aliases if interactive if [[ $- == *i* ]] ; then