Fix issue #205, "';' after assignment is highlighted as unknown-token".

This commit is contained in:
Daniel Shahaf
2015-10-27 15:01:37 +02:00
parent 6d6fb8b03e
commit 01d7eeb3c7
2 changed files with 5 additions and 3 deletions

View File

@@ -31,6 +31,6 @@ ZSH_HIGHLIGHT_STYLES[commandseparator]=$unused_highlight
BUFFER='A=1; echo hello world'
expected_region_highlight=(
"4 4 $ZSH_HIGHLIGHT_STYLES[commandseparator] 'issue #205'" # ;
"4 4 $ZSH_HIGHLIGHT_STYLES[commandseparator]" # ;
"6 9 $ZSH_HIGHLIGHT_STYLES[command]" # echo
)