command word: Highlight more reserved words. Part of issue #207.

This commit is contained in:
Daniel Shahaf 2015-10-28 20:44:49 +02:00
parent 2218e26bf8
commit c216242b46

View file

@ -99,13 +99,18 @@ _zsh_highlight_main_highlighter()
) )
# Tokens that, at (naively-determined) "command position", are followed by # Tokens that, at (naively-determined) "command position", are followed by
# a de jure command position. # a de jure command position. All of these are reserved words.
ZSH_HIGHLIGHT_TOKENS_CONTROL_FLOW=( ZSH_HIGHLIGHT_TOKENS_CONTROL_FLOW=(
'while' 'while'
'until'
'if' 'if'
'then' 'then'
'elif'
'else' 'else'
'do' 'do'
'time'
'coproc'
'!' # reserved word; unrelated to $histchars[1]
) )
# State machine # State machine