From 6d5979803b4c61fbc16bc0bdaecb20cc104cb990 Mon Sep 17 00:00:00 2001 From: Ward Truyen Date: Mon, 8 Dec 2025 22:03:43 +0100 Subject: [PATCH] feat: Home- End- Delete- key fix for zsh --- .zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zshrc b/.zshrc index 4ee5001..1f4055c 100644 --- a/.zshrc +++ b/.zshrc @@ -10,6 +10,7 @@ HISTFILE=~/.histfile HISTSIZE=1000 SAVEHIST=1000 bindkey -e + # End of lines configured by zsh-newuser-install # The following lines were added by compinstall zstyle :compinstall filename '/home/ward/.zshrc' @@ -18,6 +19,11 @@ autoload -Uz compinit compinit # End of lines added by compinstall +# Fixing some keys inside zsh +bindkey "^[[H" beginning-of-line #Home-key +bindkey "^[[F" end-of-line #End-key +bindkey "^[[3~" delete-char #Delete-key + # personal aliases alias ls='ls --color=auto' alias la='ls -a'