ZSH Config: setup home & end keys for line navigation

This commit is contained in:
Aroy-Art 2025-01-14 23:04:05 +01:00
parent 29e7f7f691
commit 8aa168f367
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -27,6 +27,23 @@ WORDCHARS=${WORDCHARS//\/[&.;]} # Don't consider
####################################################################################################################################################
####################################################################################################################################################
# Keybindings section
####################################################################################################################################################
bindkey -e #
bindkey '^[[7~' beginning-of-line # Home key
bindkey '^[[H' beginning-of-line # Home key
if [[ "${terminfo[khome]}" != "" ]]; then
bindkey "${terminfo[khome]}" beginning-of-line # [Home] - Go to beginning of line
fi
bindkey '^[[8~' end-of-line # End key
bindkey '^[[F' end-of-line # End key
if [[ "${terminfo[kend]}" != "" ]]; then
bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line
fi
####################################################################################################################################################
####################################################################################################################################################
# Theming section
####################################################################################################################################################