fixup! 'main': Fix highlighting of «<->»-style numeric globs.

This commit is contained in:
Daniel Shahaf 2017-12-23 22:46:18 +00:00
parent 35270f7c97
commit a8df386588

View File

@ -28,10 +28,10 @@
# vim: ft=zsh sw=2 ts=2 et # vim: ft=zsh sw=2 ts=2 et
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------
BUFFER=$'print <-> 0<->' BUFFER=$'print <-> x<->'
expected_region_highlight=( expected_region_highlight=(
'1 5 builtin' # print '1 5 builtin' # print
'7 9 globbing' # <-> '7 9 globbing' # <->
'11 14 globbing' # 0<-> '11 14 globbing' # x<->
) )