Fix highlighting on new line with same buffer
This commit is contained in:
parent
a765f76656
commit
f78e444451
|
@ -101,7 +101,7 @@ _zsh_highlight-string() {
|
||||||
# Recolorize the current ZLE buffer.
|
# Recolorize the current ZLE buffer.
|
||||||
_zsh_highlight-zle-buffer() {
|
_zsh_highlight-zle-buffer() {
|
||||||
# Avoid doing the same work over and over
|
# Avoid doing the same work over and over
|
||||||
[[ ${ZSH_PRIOR_HIGHLIGHTED_BUFFER:-} == $BUFFER ]] && return
|
[[ ${ZSH_PRIOR_HIGHLIGHTED_BUFFER:-} == $BUFFER ]] && [[ ${#region_highlight} -gt 0 ]] && return
|
||||||
ZSH_PRIOR_HIGHLIGHTED_BUFFER=$BUFFER
|
ZSH_PRIOR_HIGHLIGHTED_BUFFER=$BUFFER
|
||||||
|
|
||||||
setopt localoptions extendedglob bareglobqual
|
setopt localoptions extendedglob bareglobqual
|
||||||
|
|
Loading…
Reference in New Issue