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/_parameters | 24 +++++++++++++++++------- Completion/Core/_path_files | 16 ++++++++++++++++ 2 files changed, 33 insertions(+), 7 deletions(-) (limited to 'Completion') diff --git a/Completion/Core/_parameters b/Completion/Core/_parameters index a6336424c..0fd6585a2 100644 --- a/Completion/Core/_parameters +++ b/Completion/Core/_parameters @@ -27,18 +27,21 @@ fi _description expl parameter -if zmodload -e parameter; then - setopt localoptions extendedglob - pars=( ${(k)parameters[(R)^*local*]} ) -else - pars=( ${${${(f)"$(typeset +)"}:#*local *}##* } ) -fi - if [[ -n "$slash" && -o autoparamslash ]]; then local i dirs nodirs ret=1 dirs=() nodirs=() + + if zmodload -e parameter; then + setopt localoptions extendedglob + nodirs=( ${(k)parameters[(R)undefined]} ) + pars=( ${(k)parameters[(R)^*(local|undefined)*]} ) + else + nodirs=( ${${(M)${(f)"$(typeset +)"}:#undefined *}##* } ) + pars=( ${${${(f)"$(typeset +)"}:#*(local|undefined) *}##* } ) + fi + for i in $pars; do if [[ -d "${(P)i}" ]]; then dirs=( $dirs $i ) @@ -57,6 +60,13 @@ if [[ -n "$slash" && -o autoparamslash ]]; then return ret else + if zmodload -e parameter; then + setopt localoptions extendedglob + pars=( ${(k)parameters[(R)^*local*]} ) + else + pars=( ${${${(f)"$(typeset +)"}:#*local *}##* } ) + fi + if [[ "$slash" = normal ]]; then compadd -S "$suf" -r ' [:' "$expl[@]" "$@" - $pars elif [[ "$slash" = brace ]]; then 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