mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
fd534eb979
Updates OMZ's copy to commit 0f80b8eb3368b46e5e573c1d91ae69eb095db3fb from zsh-users/zsh-history-substring-search
15 lines
456 B
Bash
15 lines
456 B
Bash
0=${(%):-%N}
|
|
source ${0:A:h}/zsh-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
|
|
|