dotfiles/zsh/.zshrc.d/bindings.zsh

33 lines
977 B
Bash
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-11-24 07:10:34 +01:00
## keybinding for convenient viewing of man pages
if test -x "${HOME}/bin/split_man"; then
split_man-widget() { "${HOME}/bin/split_man"}
zle -N split_man-widget
2022-11-24 07:10:34 +01:00
bindkey '^[m' split_man-widget
2022-11-24 07:10:34 +01:00
fi
## gumosh
if test -x "${HOME}/bin/gumosh"; then
bindkey -s '^[s' 'gumosh^M'
2022-12-15 06:01:13 +01:00
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