fix bindkeys
this fixes the ctrl+arrowkey binds, as well as the binds for Home and End.
This commit is contained in:
parent
be99dc0971
commit
641ade3fbd
1 changed files with 23 additions and 2 deletions
|
@ -13,8 +13,8 @@ zmodload zsh/terminfo
|
||||||
typeset -gA key_info
|
typeset -gA key_info
|
||||||
key_info=(
|
key_info=(
|
||||||
'Control' '\C-'
|
'Control' '\C-'
|
||||||
'ControlLeft' '\e[1;5D \e[5D \e\e[D \eOd'
|
'ControlLeft' '\e[1;5D \e[5D \e\e[D \eOd \eOD'
|
||||||
'ControlRight' '\e[1;5C \e[5C \e\e[C \eOc'
|
'ControlRight' '\e[1;5C \e[5C \e\e[C \eOc \eOC'
|
||||||
'Escape' '\e'
|
'Escape' '\e'
|
||||||
'Meta' '\M-'
|
'Meta' '\M-'
|
||||||
'Backspace' "^?"
|
'Backspace' "^?"
|
||||||
|
@ -44,6 +44,13 @@ key_info=(
|
||||||
)
|
)
|
||||||
|
|
||||||
# Bind the keys
|
# Bind the keys
|
||||||
|
for key in "${(s: :)key_info[ControlLeft]}"; do
|
||||||
|
bindkey ${key} backward-word
|
||||||
|
done
|
||||||
|
for key in "${(s: :)key_info[ControlRight]}"; do
|
||||||
|
bindkey ${key} forward-word
|
||||||
|
done
|
||||||
|
|
||||||
bindkey "${key_info[Home]}" beginning-of-line
|
bindkey "${key_info[Home]}" beginning-of-line
|
||||||
bindkey "${key_info[End]}" end-of-line
|
bindkey "${key_info[End]}" end-of-line
|
||||||
|
|
||||||
|
@ -62,3 +69,17 @@ bindkey "${key_info[Control]}L" clear-screen
|
||||||
|
|
||||||
# Bind Shift + Tab to go to the previous menu item.
|
# Bind Shift + Tab to go to the previous menu item.
|
||||||
bindkey "${key_info[BackTab]}" reverse-menu-complete
|
bindkey "${key_info[BackTab]}" reverse-menu-complete
|
||||||
|
|
||||||
|
# Put into application mode and validate ${terminfo}
|
||||||
|
zle-line-init() {
|
||||||
|
if (( ${+terminfo[smkx]} )); then
|
||||||
|
echoti smkx
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
zle-line-finish() {
|
||||||
|
if (( ${+terminfo[rmkx]} )); then
|
||||||
|
echoti rmkx
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
zle -N zle-line-init
|
||||||
|
zle -N zle-line-finish
|
||||||
|
|
Loading…
Reference in a new issue