'main': Highlight escaped reserved words properly. Fixes #701.

This commit is contained in:
Daniel Shahaf 2020-03-17 02:12:00 +00:00 committed by Daniel Shahaf
commit 39977391de
2 changed files with 9 additions and 4 deletions

View file

@ -31,5 +31,7 @@
BUFFER=$'\\local a=( * )'
expected_region_highlight=(
'1 6 builtin "issue #701"' # \\local
'1 6 builtin' # \\local
'8 14 default' # a=( * )
'12 12 globbing' # *
)