This commit is contained in:
parent
99b4c930d2
commit
69eb765fa3
@ -153,9 +153,9 @@ _zsh_highlight_main_highlighter_check_assign()
|
|||||||
# Check if the argument is a path.
|
# Check if the argument is a path.
|
||||||
_zsh_highlight_main_highlighter_check_path()
|
_zsh_highlight_main_highlighter_check_path()
|
||||||
{
|
{
|
||||||
[[ -z ${(Q)~arg} ]] && return 1
|
[[ -z "${(Q)~arg}" ]] && return 1
|
||||||
[[ -e ${(Q)~arg} ]] && return 0
|
[[ -e "${(Q)~arg}" ]] && return 0
|
||||||
[[ ! -e ${(Q)~arg:h} ]] && return 1
|
[[ ! -e "${(Q)~arg:h}" ]] && return 1
|
||||||
[[ ${BUFFER[1]} != "-" && ${#BUFFER} == $end_pos && -n $(print "${(Q)~arg}"*(N)) ]] && return 0
|
[[ ${BUFFER[1]} != "-" && ${#BUFFER} == $end_pos && -n $(print "${(Q)~arg}"*(N)) ]] && return 0
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user