Skip to content

Commit 1000da3

Browse files
committed
'main': Correctly highlight '&&' and '||' inside '[[ … ]]' conditions.
1 parent b44964c commit 1000da3

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@
6363
- Highlight reserved word after assignments as errors (e.g., `foo=bar (ls;)`)
6464
[#461]
6565

66+
- Correctly highlight `[[ foo && bar || baz ]]`.
67+
6668
# Changes in version 0.7.1
6769

6870
- Remove out-of-date information from the 0.7.0 changelog.

highlighters/main/main-highlighter.zsh

+2-1
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,8 @@ _zsh_highlight_main_highlighter_highlight_list()
790790
fi
791791

792792
# The Great Fork: is this a command word? Is this a non-command word?
793-
if [[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR:#"$arg"} ]]; then
793+
if [[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR:#"$arg"} ]] &&
794+
[[ $braces_stack != *T* || $arg != ('||'|'&&') ]]; then
794795

795796
# First, determine the style of the command separator itself.
796797
if _zsh_highlight_main__stack_pop T || _zsh_highlight_main__stack_pop Q; then
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/usr/bin/env zsh
2+
# -------------------------------------------------------------------------------------------------
3+
# Copyright (c) 2020 zsh-syntax-highlighting contributors
4+
# All rights reserved.
5+
#
6+
# Redistribution and use in source and binary forms, with or without modification, are permitted
7+
# provided that the following conditions are met:
8+
#
9+
# * Redistributions of source code must retain the above copyright notice, this list of conditions
10+
# and the following disclaimer.
11+
# * Redistributions in binary form must reproduce the above copyright notice, this list of
12+
# conditions and the following disclaimer in the documentation and/or other materials provided
13+
# with the distribution.
14+
# * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15+
# may be used to endorse or promote products derived from this software without specific prior
16+
# written permission.
17+
#
18+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19+
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24+
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25+
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26+
# -------------------------------------------------------------------------------------------------
27+
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28+
# vim: ft=zsh sw=2 ts=2 et
29+
# -------------------------------------------------------------------------------------------------
30+
31+
BUFFER=$'[[ foo && bar || baz ]]'
32+
33+
expected_region_highlight=(
34+
'1 2 reserved-word' # [[
35+
'4 6 default' # foo
36+
'8 9 default' # &&
37+
'11 13 default' # bar
38+
'15 16 default' # ||
39+
'18 20 default' # baz
40+
'22 23 reserved-word' # ]]
41+
)

0 commit comments

Comments
 (0)