check KEYS_QUEUED_COUNT and PENDING to skip parsing when pasting

This commit is contained in:
Daniel Kuettel 2021-09-25 11:21:23 +02:00
parent 6e0e950154
commit 1913518b62

View File

@ -219,7 +219,8 @@ _zsh_highlight()
[[ -n ${ZSH_HIGHLIGHT_MAXLENGTH:-} ]] && [[ $#BUFFER -gt $ZSH_HIGHLIGHT_MAXLENGTH ]] && return $ret
# Do not highlight if there are pending inputs (copy/paste).
[[ $PENDING -gt 0 ]] && return $ret
(( KEYS_QUEUED_COUNT > 0 )) && return $ret
(( PENDING > 0 )) && return $ret
{
local cache_place