main: Fix function definition highlighting

Fixes #223 #237
This commit is contained in:
Matthew Martin 2018-10-21 14:47:51 -05:00
commit 64b13f5c5b
21 changed files with 661 additions and 23 deletions

View file

@ -31,9 +31,9 @@
BUFFER='f g h () pwd'
expected_region_highlight=(
'1 1 TBD "issue #223"' # f
'3 3 TBD "issue #223"' # g
'5 5 TBD "issue #223"' # h
'1 1 function-definition' # f
'3 3 function-definition' # g
'5 5 function-definition' # h
'7 8 reserved-word' # ()
'10 12 builtin' # pwd
)