dotfiles/.zshrc.d/zshbindings

22 lines
719 B
Plaintext
Raw Normal View History

2022-07-17 04:25:55 +02:00
typeset -g -A key
2022-08-12 14:52:48 +02:00
2022-07-17 04:25:55 +02:00
key[Home]="${terminfo[khome]}"
key[End]="${terminfo[kend]}"
[[ -n "${key[Home]}" ]] && bindkey -- "${key[Home]}" beginning-of-line
[[ -n "${key[End]}" ]] && bindkey -- "${key[End]}" end-of-line
2022-08-12 14:52:48 +02:00
if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then
autoload -Uz add-zle-hook-widget
function zle_application_mode_start { echoti smkx }
function zle_application_mode_stop { echoti rmkx }
add-zle-hook-widget -Uz zle-line-init zle_application_mode_start
add-zle-hook-widget -Uz zle-line-finish zle_application_mode_stop
fi
2022-07-17 04:25:55 +02:00
## history substring search
bindkey '^[[1;5A' history-substring-search-up
bindkey '^[[1;5B' history-substring-search-down
2022-08-12 14:52:48 +02:00
# vim:set ft=zsh ai et sw=4 ts=4: