blob: d2c749bc3f900d92fa1c99f56a5b8c3f1d682987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
0=${(%):-%N}
source ${0:A:h}/history-substring-search.zsh
# Bind terminal-specific up and down keys
if [[ -n "$terminfo[kcuu1]" ]]; then
bindkey -M emacs "$terminfo[kcuu1]" history-substring-search-up
bindkey -M viins "$terminfo[kcuu1]" history-substring-search-up
fi
if [[ -n "$terminfo[kcud1]" ]]; then
bindkey -M emacs "$terminfo[kcud1]" history-substring-search-down
bindkey -M viins "$terminfo[kcud1]" history-substring-search-down
fi
|