mirror of
https://github.com/zsh-users/zsh-syntax-highlighting.git
synced 2025-12-04 21:56:45 +01:00
'main': Don't highlight bare '$foo' as a filename, as it's a parameter expansion.
Fixes #474.
This commit is contained in:
parent
382be9096d
commit
03692831ad
2 changed files with 3 additions and 1 deletions
|
|
@ -823,7 +823,9 @@ _zsh_highlight_main_highlighter_highlight_argument()
|
|||
highlights+=($reply)
|
||||
;;
|
||||
'$')
|
||||
path_eligible=0
|
||||
if [[ $arg[i+1] == "'" ]]; then
|
||||
path_eligible=1
|
||||
_zsh_highlight_main_highlighter_highlight_dollar_quote $i
|
||||
(( i = REPLY ))
|
||||
highlights+=($reply)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue