Highlight the region on top of syntax highlighting.

Let $zle_highlight[region] override $region_highlight.
This commit is contained in:
Daniel Shahaf 2015-09-08 20:22:22 +00:00
parent 555e142e66
commit 0e31d6e1a2

View file

@ -92,6 +92,22 @@ _zsh_highlight()
done
# Re-apply zle_highlight settings
() {
if (( REGION_ACTIVE )) ; then
# zle_highlight[region] defaults to 'standout' if unspecified
local region="${${zle_highlight[(r)region:*]#region:}:-standout}"
integer start end
if (( MARK > CURSOR )) ; then
start=$CURSOR end=$MARK
else
start=$MARK end=$CURSOR
fi
region_highlight+=("$start $end $region")
fi
}
} always {
_ZSH_HIGHLIGHT_PRIOR_BUFFER=$BUFFER
_ZSH_HIGHLIGHT_PRIOR_CURSOR=$CURSOR