20 lines
631 B
Bash
20 lines
631 B
Bash
#
|
|
# enables searching history with substrings
|
|
#
|
|
|
|
# source script
|
|
source ${0:h}/external/zsh-history-substring-search.zsh || return 1
|
|
|
|
# set options
|
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold'
|
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold'
|
|
HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i'
|
|
|
|
# bind UP and DOWN keys
|
|
zmodload zsh/terminfo
|
|
bindkey "$terminfo[kcuu1]" history-substring-search-up
|
|
bindkey "$terminfo[kcud1]" history-substring-search-down
|
|
|
|
# bind UP and DOWN arrow keys (compatibility fallback)
|
|
bindkey '^[[A' history-substring-search-up
|
|
bindkey '^[[B' history-substring-search-down
|