From 820a0b02e8bc3e8c54d6cb530365ca281a0a7f95 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sun, 3 Nov 2019 12:19:18 +0200 Subject: [PATCH] Fixed delete in normal mode Signed-off-by: Marko Korhonen --- home/.config/zsh/04-keybinds.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/.config/zsh/04-keybinds.zsh b/home/.config/zsh/04-keybinds.zsh index 83310a9..7f0c95d 100644 --- a/home/.config/zsh/04-keybinds.zsh +++ b/home/.config/zsh/04-keybinds.zsh @@ -41,3 +41,6 @@ fi # use e to open command in editor autoload edit-command-line; zle -N edit-command-line bindkey -M vicmd e edit-command-line + +# bind delete in normal mode +bindkey -M vicmd '^[[3~' delete-char