You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See _zsh_highlight for the magic version number. (The use of 5.8.0.2
# rather than 5.8.0.3 as in the _zsh_highlight is deliberate.)
if is-at-least 5.8.0.2 $ZSH_VERSION.0.0 && _zsh_highlight__function_callable_p add-zle-hook-widget
were written when zsh-5.8 was the current release. zsh-5.8.1 has just been released as zsh-5.8 plus a handful of patches (none of which affect us). Those two conditions should be updated so they return false on zsh-5.8.1.
The text was updated successfully, but these errors were encountered:
# Legacy codepath. Not very interoperable with other plugins (issue #418).
region_highlight=()
fi
However, as the comment above the first condition explains, that condition is likely to only be evaluated at all during test suite runs, so this is less of a priority.
The second condition would enable the redrawhook codepath even though the memo feature isn't available. Per the comments above that condition, I assume this would reintroduce #579 and #735 for users of 5.8.1 until we fix this condition again.
The following two checks:
zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Lines 159 to 166 in c10808a
zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Lines 416 to 418 in c10808a
were written when zsh-5.8 was the current release. zsh-5.8.1 has just been released as zsh-5.8 plus a handful of patches (none of which affect us). Those two conditions should be updated so they return false on zsh-5.8.1.
The text was updated successfully, but these errors were encountered: