From 586aaeb0861cce12a22af5bb3288c4e84b1c0bb4 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 2 Sep 1999 09:42:05 +0000 Subject: zsh-workers/7628 --- Completion/Core/_path_files | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Completion/Core/_path_files') diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index 9aebc89d0..b017d78e5 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -173,6 +173,22 @@ if [[ "$pre[1]" = \~ ]]; then orig="${orig#*/}" donepath='' prepaths=( '' ) +elif [[ "$pre" = *\$*/* ]]; 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 + # after the first slash after the parameter expansion. + # This fails for things like `f/$foo/b/' where the first `f' is + # meant as a partial path. + + linepath="${(M)pre##*\$[^/]##/}" + realpath=${(e)~linepath} + [[ "$realpath" = "$linepath" ]] && return 1 + pre="${pre#${linepath}}" + i="${#linepath//[^\\/]}" + orig="${orig[1,(in:i:)/][1,-2]}" + donepath='' + prepaths=( '' ) else # If the string does not start with a `~' we don't remove a prefix from the # string. -- cgit 1.4.1