'main': Let AUTO_CD directories be highlighted with their own style.

This commit is contained in:
Daniel Shahaf 2020-01-12 20:17:59 +00:00 committed by Daniel Shahaf
parent 3f930fb0c1
commit 83ac855ceb
5 changed files with 26 additions and 9 deletions

View file

@ -27,6 +27,7 @@ This highlighter defines the following styles:
* `precommand` - precommand modifiers (e.g., `noglob`, `builtin`)
* `commandseparator` - command separation tokens (`;`, `&&`)
* `hashed-command` - hashed commands
* `autodirectory` - a directory name in command position when the `AUTO_CD` option is set
* `path` - existing filenames
* `path_pathseparator` - path separators in filenames (`/`); if unset, `path` is used (default)
* `path_prefix` - prefixes of existing filenames

View file

@ -36,6 +36,7 @@
: ${ZSH_HIGHLIGHT_STYLES[global-alias]:=fg=cyan}
: ${ZSH_HIGHLIGHT_STYLES[precommand]:=fg=green,underline}
: ${ZSH_HIGHLIGHT_STYLES[commandseparator]:=none}
: ${ZSH_HIGHLIGHT_STYLES[autodirectory]:=fg=green,underline}
: ${ZSH_HIGHLIGHT_STYLES[path]:=underline}
: ${ZSH_HIGHLIGHT_STYLES[path_pathseparator]:=}
: ${ZSH_HIGHLIGHT_STYLES[path_prefix_pathseparator]:=}
@ -113,6 +114,7 @@ _zsh_highlight_main_calculate_fallback() {
command arg0
precommand arg0
hashed-command arg0
autodirectory arg0
arg0_\* arg0
# TODO: Maybe these? —
@ -1130,6 +1132,8 @@ _zsh_highlight_main_highlighter_check_path()
fi
if (( in_command_position )); then
# ### Currently, this value is never returned: either it's overwritten
# ### below, or the return code is non-zero
REPLY=arg0
else
REPLY=path
@ -1156,8 +1160,16 @@ _zsh_highlight_main_highlighter_check_path()
done
if (( in_command_position )); then
if [[ -x $expanded_path ]] && { (( autocd )) || [[ ! -d $expanded_path ]] }; then
return 0
if [[ -x $expanded_path ]]; then
if (( autocd )); then
if [[ -d $expanded_path ]]; then
REPLY=autodirectory
fi
return 0
elif [[ ! -d $expanded_path ]]; then
# ### This seems unreachable for the current callers
return 0
fi
fi
else
if [[ -L $expanded_path || -e $expanded_path ]]; then
@ -1170,7 +1182,12 @@ _zsh_highlight_main_highlighter_check_path()
# TODO: When we've dropped support for pre-5.0.6 zsh, use the *(Y1) glob qualifier here.
local cdpath_dir
for cdpath_dir in $cdpath ; do
[[ -d "$cdpath_dir/$expanded_path" && -x "$cdpath_dir/$expanded_path" ]] && return 0
if [[ -d "$cdpath_dir/$expanded_path" && -x "$cdpath_dir/$expanded_path" ]]; then
if (( in_command_position && autocd )); then
REPLY=autodirectory
fi
return 0
fi
done
fi

View file

@ -32,5 +32,5 @@ setopt autocd
BUFFER=$'/'
expected_region_highlight=(
'1 1 arg0' # /
'1 1 autodirectory' # /
)

View file

@ -32,7 +32,7 @@ setopt autocd
BUFFER=$'/bin; /bin'
expected_region_highlight=(
'1 4 arg0' # /bin (in middle)
'1 4 autodirectory' # /bin (in middle)
'5 5 commandseparator' # ;
'7 10 arg0' # /bin (at end)
'7 10 autodirectory' # /bin (at end)
)

View file

@ -29,11 +29,10 @@
# -------------------------------------------------------------------------------------------------
setopt autocd
BUFFER=$'$PWD; ${PWD}'
expected_region_highlight=(
'1 4 arg0' # $PWD
'1 4 autodirectory' # $PWD
'5 5 commandseparator' # ;
'7 12 arg0' # ${PWD}
'7 12 autodirectory' # ${PWD}
)