tests: Quote style in expected_region_highlight

This commit is contained in:
Matthew Martin
2016-01-20 00:12:55 -06:00
parent bb8d325c0c
commit 31ac2b36a9
67 changed files with 239 additions and 239 deletions

View File

@@ -31,9 +31,9 @@ ZSH_HIGHLIGHT_STYLES[redirection]=$unused_highlight
BUFFER='exec {foo}>&/tmp ls'
expected_region_highlight=(
"1 4 $ZSH_HIGHLIGHT_STYLES[precommand]" # exec
# TODO: "6 10 $ZSH_HIGHLIGHT_STYLES[redirection] 'issue #238'" # {foo}
"11 12 $ZSH_HIGHLIGHT_STYLES[redirection]" # >&
"13 16 $ZSH_HIGHLIGHT_STYLES[path]" # /tmp
"18 19 $ZSH_HIGHLIGHT_STYLES[command] 'issue #238'" # ls
"1 4 ${(q-)ZSH_HIGHLIGHT_STYLES[precommand]}" # exec
# TODO: "6 10 ${(q-)ZSH_HIGHLIGHT_STYLES[redirection]} 'issue #238'" # {foo}
"11 12 ${(q-)ZSH_HIGHLIGHT_STYLES[redirection]}" # >&
"13 16 ${(q-)ZSH_HIGHLIGHT_STYLES[path]}" # /tmp
"18 19 ${(q-)ZSH_HIGHLIGHT_STYLES[command]} 'issue #238'" # ls
)