GH-9: retain search query highlight on cursor move

This commit is contained in:
Suraj N. Kurapati 2012-03-13 10:32:59 -07:00
parent 0943070a9d
commit 527f95fee9

View file

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