From 9be6e1c6e4e65e7f99cddf3ef4f257780483b9d9 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Wed, 21 Aug 2024 19:39:01 +0200 Subject: [PATCH] feat: add support for delete-char in zsh --- home/dotfiles/.zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/dotfiles/.zshrc b/home/dotfiles/.zshrc index d89d51d..becb50f 100644 --- a/home/dotfiles/.zshrc +++ b/home/dotfiles/.zshrc @@ -10,8 +10,10 @@ bindkey -M menuselect 'h' vi-backward-char bindkey -M menuselect 'k' vi-up-line-or-history bindkey -M menuselect 'j' vi-down-line-or-history bindkey -M menuselect 'l' vi-forward-char + bindkey "^[[1;5C" forward-word bindkey "^[[1;5D" backward-word +bindkey "\e[3~" delete-char setopt extendedglob _comp_options+=(globdots) -- 2.48.1