'main': Fix the $CDPATH from the previous commit.

This commit is contained in:
Daniel Shahaf 2020-01-12 19:37:53 +00:00
parent 6629a1f432
commit 08edf8db7f
2 changed files with 7 additions and 5 deletions

View file

@ -986,10 +986,12 @@ _zsh_highlight_main_highlighter_check_path()
[[ -e $expanded_path ]] && return 0
# Search the path in CDPATH
local cdpath_dir
for cdpath_dir in $cdpath ; do
[[ -e "$cdpath_dir/$expanded_path" ]] && return 0
done
if [[ $expanded_path != /* ]]; then
local cdpath_dir
for cdpath_dir in $cdpath ; do
[[ -e "$cdpath_dir/$expanded_path" ]] && return 0
done
fi
# If dirname($1) doesn't exist, neither does $1.
[[ ! -d ${expanded_path:h} ]] && return 1

View file

@ -34,5 +34,5 @@ mkdir foo foo/bar
BUFFER="/foo"
expected_region_highlight=(
'1 4 unknown-token "fixed in the next commit"' # x (/)
'1 4 unknown-token' # x (/)
)