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

This commit is contained in:
Daniel Shahaf 2017-12-23 22:47:28 +00:00
parent a8df386588
commit 7e10a47a1d

View File

@ -28,10 +28,13 @@
# vim: ft=zsh sw=2 ts=2 et
# -------------------------------------------------------------------------------------------------
BUFFER=$'print <-> x<->'
BUFFER=$'print <-> x<-> <foo2-3>'
expected_region_highlight=(
'1 5 builtin' # print
'7 9 globbing' # <->
'11 14 globbing' # x<->
'16 16 redirection' # <
'17 22 default' # foo2-3 (the filename)
'23 23 redirection' # >
)