2020-03-24 08:54:00 +00:00
|
|
|
0=${(%):-%N}
|
2020-03-24 11:32:52 +00:00
|
|
|
source ${0:A:h}/history-substring-search.zsh
|
2015-07-07 20:48:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Bind terminal-specific up and down keys
|
2020-03-24 08:54:00 +00:00
|
|
|
|
2015-07-07 20:48:05 +00:00
|
|
|
if [[ -n "$terminfo[kcuu1]" ]]; then
|
2015-07-28 01:01:21 +00:00
|
|
|
bindkey -M emacs "$terminfo[kcuu1]" history-substring-search-up
|
|
|
|
bindkey -M viins "$terminfo[kcuu1]" history-substring-search-up
|
2015-07-07 20:48:05 +00:00
|
|
|
fi
|
|
|
|
if [[ -n "$terminfo[kcud1]" ]]; then
|
2015-07-28 01:01:21 +00:00
|
|
|
bindkey -M emacs "$terminfo[kcud1]" history-substring-search-down
|
|
|
|
bindkey -M viins "$terminfo[kcud1]" history-substring-search-down
|
2015-07-07 20:48:05 +00:00
|
|
|
fi
|
|
|
|
|