From df0f44858634c454fbbabc182fc5ffe43b8907b5 Mon Sep 17 00:00:00 2001 From: Matthew Martin Date: Mon, 25 Dec 2017 00:03:51 -0600 Subject: [PATCH] main: Highlight path after globbing checks Closes #468. --- highlighters/main/main-highlighter.zsh | 19 +++++----- highlighters/main/test-data/noglob3.zsh | 36 +++++++++++++++++++ .../test-data/order-path-before-globbing.zsh | 2 +- 3 files changed, 48 insertions(+), 9 deletions(-) create mode 100644 highlighters/main/test-data/noglob3.zsh diff --git a/highlighters/main/main-highlighter.zsh b/highlighters/main/main-highlighter.zsh index 687364f..b8ed6f4 100644 --- a/highlighters/main/main-highlighter.zsh +++ b/highlighters/main/main-highlighter.zsh @@ -695,19 +695,14 @@ _zsh_highlight_highlighter_main_paint() elif (( in_redirection == 2 )); then style=redirection else - if _zsh_highlight_main_highlighter_check_path; then - style=$REPLY - else - _zsh_highlight_main_highlighter_highlight_argument - already_added=1 - fi + _zsh_highlight_main_highlighter_highlight_argument + already_added=1 fi ;; esac fi if ! (( already_added )); then _zsh_highlight_main_add_region_highlight $start_pos $end_pos $style - [[ $style == path || $style == path_prefix ]] && _zsh_highlight_main_highlighter_highlight_path_separators fi if [[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR:#"$arg"} ]]; then if [[ $arg == ';' ]] && $in_array_assignment; then @@ -802,7 +797,8 @@ _zsh_highlight_main_highlighter_check_path() # This command will at least highlight start_pos to end_pos with the default style _zsh_highlight_main_highlighter_highlight_argument() { - local i + local i path_eligible style + path_eligible=1 _zsh_highlight_main_add_region_highlight $start_pos $end_pos default for (( i = 1 ; i <= end_pos - start_pos ; i += 1 )); do @@ -827,11 +823,18 @@ _zsh_highlight_main_highlighter_highlight_argument() [*?]) if $highlight_glob; then _zsh_highlight_main_add_region_highlight $start_pos $end_pos globbing + path_eligible=0 break fi;; *) continue;; esac done + + if (( path_eligible )) && _zsh_highlight_main_highlighter_check_path; then + style=$REPLY + _zsh_highlight_main_add_region_highlight $start_pos $end_pos $style + _zsh_highlight_main_highlighter_highlight_path_separators + fi } # Quote Helper Functions diff --git a/highlighters/main/test-data/noglob3.zsh b/highlighters/main/test-data/noglob3.zsh new file mode 100644 index 0000000..361ea8c --- /dev/null +++ b/highlighters/main/test-data/noglob3.zsh @@ -0,0 +1,36 @@ +# ------------------------------------------------------------------------------------------------- +# Copyright (c) 2018 zsh-syntax-highlighting contributors +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without modification, are permitted +# provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this list of conditions +# and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, this list of +# conditions and the following disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors +# may be used to endorse or promote products derived from this software without specific prior +# written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ------------------------------------------------------------------------------------------------- +# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*- +# vim: ft=zsh sw=2 ts=2 et +# ------------------------------------------------------------------------------------------------- + +touch \* + +BUFFER='noglob echo *' + +expected_region_highlight=( + "13 13 path" # * +) diff --git a/highlighters/main/test-data/order-path-before-globbing.zsh b/highlighters/main/test-data/order-path-before-globbing.zsh index 00e730b..b1695fc 100644 --- a/highlighters/main/test-data/order-path-before-globbing.zsh +++ b/highlighters/main/test-data/order-path-before-globbing.zsh @@ -33,6 +33,6 @@ BUFFER=': * \*' expected_region_highlight=( '1 1 builtin' # : - '3 3 globbing "issue #468"' # * + '3 3 globbing' # * '5 6 path' # \* )