mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
(15283)
This commit is contained in:
parent
f486329a16
commit
f2040baa9b
@ -1,3 +1,8 @@
|
||||
2001-07-06 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 15283: Completion/Unix/Type/_path_files: when looking for
|
||||
parameter expansions, ignore `$'s with a backslash before them
|
||||
|
||||
2001-07-06 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 15277: Src/glob.c: *real* bug with ${(S)...%%...}: the indices
|
||||
|
@ -190,7 +190,7 @@ eorig="$orig"
|
||||
|
||||
# Now let's have a closer look at the string to complete.
|
||||
|
||||
if [[ "$pre" = [^][*?#^\|\<\>]#(\`[^\`]#\`|\$)*/* && "$compstate[quote]" != \' ]]; then
|
||||
if [[ "$pre" = [^][*?#^\|\<\>\\]#(\`[^\`]#\`|\$)*/* && "$compstate[quote]" != \' ]]; then
|
||||
|
||||
# If there is a parameter expansion in the word from the line, we try
|
||||
# to complete the beast by expanding the prefix and completing anything
|
||||
|
Loading…
Reference in New Issue
Block a user