main: Expand paths before removing quoting
Fixes highlighting of `ls \~`. Closes #328.
This commit is contained in:
parent
6a6d40208c
commit
2411195c20
|
@ -923,7 +923,7 @@ _zsh_highlight_main_highlighter_expand_path()
|
||||||
# The $~1 syntax normally performs filename generation, but not when it's on the right-hand side of ${x:=y}.
|
# The $~1 syntax normally performs filename generation, but not when it's on the right-hand side of ${x:=y}.
|
||||||
setopt localoptions nonomatch
|
setopt localoptions nonomatch
|
||||||
unset REPLY
|
unset REPLY
|
||||||
: ${REPLY:=${(Q)~1}}
|
: ${REPLY:=${(Q)${~1}}}
|
||||||
}
|
}
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue