Browse Source

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

pull/232/head
Daniel Shahaf 9 years ago
parent
commit
c216242b46
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      highlighters/main/main-highlighter.zsh

+ 6
- 1
highlighters/main/main-highlighter.zsh 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

Loading…
Cancel
Save