2015-12-15 00:12:17 -05:00
|
|
|
#
|
|
|
|
# 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
|
2015-12-19 09:48:29 -05:00
|
|
|
bindkey "${terminfo[kcuu1]}" history-substring-search-up
|
|
|
|
bindkey "${terminfo[kcud1]}" history-substring-search-down
|
2015-12-15 00:12:17 -05:00
|
|
|
|
|
|
|
# bind UP and DOWN arrow keys (compatibility fallback)
|
|
|
|
bindkey '^[[A' history-substring-search-up
|
|
|
|
bindkey '^[[B' history-substring-search-down
|