mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-01 16:53:07 +01:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
typeset -g -A key
|
|
|
|
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
|
|
|
|
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
|
|
|
|
## 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
|
|
|
|
bindkey '^[m' split-man-widget
|
|
fi
|
|
|
|
## gumssh
|
|
if test -x "$(command -v gumssh)"; then
|
|
bindkey -s '^[s' 'gumssh^M'
|
|
fi
|
|
|
|
## yazi
|
|
if test -x "$(command -v yazi)"; then
|
|
bindkey -s '^[f' 'yazi^M'
|
|
fi
|
|
|
|
## history substring search
|
|
bindkey '^[[1;5A' history-substring-search-up
|
|
bindkey '^[[1;5B' history-substring-search-down
|