ZSH Config: add up & down key mapping for history search

This commit is contained in:
Aroy-Art 2025-03-09 23:10:52 +01:00
parent 437ce81d3d
commit b78abdb5b5
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -146,4 +146,13 @@ if [ -r "$HOME/.zprofile" ] ; then
fi
###################################################################################
###################################################################################
# bind UP and DOWN arrow keys to history substring search
zmodload zsh/terminfo
bindkey "$terminfo[kcuu1]" history-substring-search-up
bindkey "$terminfo[kcud1]" history-substring-search-down
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
###################################################################################
####################################################################################################################################################