1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 12:50:27 +00:00

Retain search query highlight on cursor move

@guidovansteen discovered inconsistent behaviour when
zsh-syntax-highlighting is not sourced prior to
zsh-history-substring-search.

https://github.com/zsh-users/zsh-history-substring-search/issues/9

@sunaku wrote this patch.
This commit is contained in:
Sorin Ionescu 2012-03-13 17:08:45 -04:00
parent 11d5792243
commit 04c3df512a

View File

@ -89,11 +89,14 @@ zmodload -F zsh/parameter
#
if [[ $+functions[_zsh_highlight] -eq 0 ]]; then
#
# Dummy implementation of _zsh_highlight()
# that simply removes existing highlights
# Dummy implementation of _zsh_highlight() that
# simply removes any existing highlights when the
# user inserts printable characters into $BUFFER.
#
function _zsh_highlight() {
region_highlight=()
if [[ $KEYS == [[:print:]] ]]; then
region_highlight=()
fi
}
#