summaryrefslogtreecommitdiff
path: root/Completion
diff options
context:
space:
mode:
authorMarlon Richert <marlon.richert@gmail.com>2021-04-12 23:17:23 +0300
committerOliver Kiddle <opk@zsh.org>2021-04-16 23:36:03 +0200
commit587cced35d925b95a8df41f13880a30a8fc66274 (patch)
tree29d41e6a6c5117ec5c2e8789233a7ece0b537e06 /Completion
parent28cf6bd1110a426ac41fdc7ea62c3aee199c039a (diff)
downloadzsh-587cced35d925b95a8df41f13880a30a8fc66274.tar.gz
zsh-587cced35d925b95a8df41f13880a30a8fc66274.zip
48513: Let extra-verbose completion show parameter values
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Zsh/Type/_parameters44
1 files changed, 30 insertions, 14 deletions
diff --git a/Completion/Zsh/Type/_parameters b/Completion/Zsh/Type/_parameters
index 207e5cf78..00c181e11 100644
--- a/Completion/Zsh/Type/_parameters
+++ b/Completion/Zsh/Type/_parameters
@@ -6,18 +6,39 @@
# If you specify a -g option with a pattern, the pattern will be used to
# restrict the type of parameters matched.
-local expl pattern fakes faked tmp i pfilt
-
if compset -P '*:'; then
_history_modifiers p
return
fi
-pattern=(-g \*)
+local MATCH i pfilt
+local -i MBEGIN MEND nm=$compstate[nmatches]
+local -a expl pattern=(-g \*) normal described verbose faked fakes tmp
+
+zstyle -t ":completion:${curcontext}:parameters" prefix-needed &&
+ [[ $PREFIX != [_.]* ]] &&
+ pfilt='[^_.]'
+_description parameters expl parameter
zparseopts -D -K -E g:=pattern
-fakes=()
-faked=()
+if zstyle -t ":completion:${curcontext}:parameters" extra-verbose; then
+ described=(
+ "${(@M)${(@k)parameters[(R)$~pattern[2]~*(hideval|local|special)*]}:#$~pfilt*}"
+ )
+ compadd "$@" "$expl[@]" -D described -a - described
+ if (( $#described )); then
+ verbose=(
+ ${described[@]:/(#m)*/"${MATCH}:${(@q+)${(Pkv@q+)MATCH}//\\/\\\\}"} )
+ _describe -t parameters parameter verbose "$@" "$expl[@]"
+ fi
+
+ normal=(
+ "${(@M)${(@k)parameters[(R)$~pattern[2]~^(*(hideval|special)*)~*local*]}:#$~pfilt*}"
+ )
+else
+ normal=( "${(@M)${(@k)parameters[(R)$~pattern[2]~*local*]}:#$~pfilt*}" )
+fi
+
if zstyle -a ":completion:${curcontext}:" fake-parameters tmp; then
for i in "$tmp[@]"; do
if [[ "$i" = *:* ]]; then
@@ -27,13 +48,8 @@ if zstyle -a ":completion:${curcontext}:" fake-parameters tmp; then
fi
done
fi
+compadd "$@" "$expl[@]" - "$normal[@]" "${(@)fakes:|described}" \
+ "${(@)${(@)${(@M)faked:#${~pattern[2]}}%%:*}:|described}"
-zstyle -t ":completion:${curcontext}:parameters" prefix-needed && \
- [[ $PREFIX != [_.]* ]] && \
- pfilt='[^_.]'
-
-_wanted parameters expl parameter \
- compadd "$@" -Q - \
- "${(@M)${(@k)parameters[(R)${pattern[2]}~*local*]}:#${~pfilt}*}" \
- "$fakes[@]" \
- "${(@)${(@M)faked:#${~pattern[2]}}%%:*}"
+(( compstate[nmatches] > nm ))
+return 0