1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 17:31:33 +02:00
zsh/Completion/Core/_complete

142 lines
2.9 KiB
Plaintext
Raw Normal View History

1999-04-15 20:05:38 +02:00
#autoload
# Generate all possible completions. Note that this is not intended as
# a normal completion function, but as one possible value for the
2000-04-01 22:43:43 +02:00
# completer style.
1999-04-15 20:05:38 +02:00
local comp name oldcontext ret=1
2000-04-01 22:43:43 +02:00
typeset -T curcontext="$curcontext" ccarray
oldcontext="$curcontext"
# If we have a user-supplied context name, use only that.
if [[ -n "$compcontext" ]]; then
if [[ "${(t)compcontext}" = *array* ]]; then
local expl
_wanted values expl value compadd -a - compcontext
elif [[ "${(t)compcontext}" = *assoc* ]]; then
local expl tmp i
tmp=()
for i in "${(@k)compcontext[(R)*[^[:blank:]]]}"; do
tmp=( "$tmp[@]" "${i}:${compcontext[$i]}" )
done
tmp=( "$tmp[@]" "${(k@)compcontext[(R)[[:blank:]]#]}" )
_describe -t values value tmp
elif [[ "$compcontext" = *:*:* ]]; then
local tag="${${compcontext%%:*}:-values}"
local descr="${${${compcontext#${tag}:}%%:*}:-value}"
local action="${compcontext#${tag}:${descr}:}" expl ws ret=1
case "$action" in
\ #)
_message "$descr";;
\(\(*\)\))
eval ws\=\( "${action[3,-3]}" \)
_describe -t "$tag" "$descr" ws;;
\(*\))
eval ws\=\( "${action[2,-2]}" \)
_wanted "$tag" expl "$descr" compadd -a - ws;;
\{*\})
_tags "$tag"
while _tags; do
while _next_label "$tag" expl "$descr"; do
eval "$action[2,-2]" && ret=0
done
(( ret )) || break
done;;
\ *)
eval ws\=\( "$action" \)
_tags "$tag"
while _tags; do
while _next_label "$tag" expl "$descr"; do
"$ws[@]"
done
(( ret )) || break
done;;
*)
eval ws\=\( "$action" \)
_tags "$tag"
while _tags; do
while _next_label "$tag" expl "$descr"; do
"$ws[1]" "$expl[@]" "${(@)ws[2,-1]}"
done
(( ret )) || break
done;;
esac
else
ccarray[3]="$compcontext"
comp="$_comps[$compcontext]"
[[ -z "$comp" ]] || "$comp"
fi
2000-04-01 22:43:43 +02:00
return
fi
1999-04-15 20:05:38 +02:00
# An entry for `-first-' is the replacement for `compctl -T'
comp="$_comps[-first-]"
if [[ ! -z "$comp" ]]; then
2000-04-01 22:43:43 +02:00
ccarray[3]=-first-
"$comp" && ret=0
2000-04-01 22:43:43 +02:00
if [[ "$_compskip" = all ]]; then
_compskip=
return ret
1999-04-15 20:05:38 +02:00
fi
fi
# If we are inside `vared' and we don't have a $compcontext, we treat
# this like a parameter assignment. Which it is.
[[ -n $compstate[vared] ]] && compstate[context]=vared
2000-04-01 22:43:43 +02:00
1999-04-15 20:05:38 +02:00
# For arguments and command names we use the `_normal' function.
2000-06-29 10:20:32 +02:00
ret=1
1999-04-15 20:05:38 +02:00
if [[ "$compstate[context]" = command ]]; then
2000-04-01 22:43:43 +02:00
curcontext="$oldcontext"
_normal -s && ret=0
1999-04-15 20:05:38 +02:00
else
# Let's see if we have a special completion definition for the other
# possible contexts.
2000-04-01 22:43:43 +02:00
local cname="-${compstate[context]:s/_/-/}-"
ccarray[3]="$cname"
comp="$_comps[$cname]"
1999-04-15 20:05:38 +02:00
# If not, we use default completion, if any.
2000-04-01 22:43:43 +02:00
if [[ -z "$comp" ]]; then
if [[ "$_compskip" = *default* ]]; then
_compskip=
2000-04-01 22:43:43 +02:00
return 1
fi
comp="$_comps[-default-]"
fi
[[ -z "$comp" ]] || "$comp" && ret=0
1999-04-15 20:05:38 +02:00
fi
_compskip=
2000-04-01 22:43:43 +02:00
return ret