1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-02 07:51:09 +02:00
zsh/Completion/Core/_complete
1999-11-24 10:52:20 +00:00

67 lines
1.4 KiB
Text

#autoload
# Generate all possible completions. Note that this is not intended as
# a normal completion function, but as one possible value for the
# completer style.
local comp name curcontext="$curcontext" oldcontext
[[ "$funcstack[2]" = _main_complete ]] && curcontext="${curcontext}:complete"
oldcontext="$curcontext"
# If we have a user-supplied context name, use only that.
if [[ -n "$compcontext" ]]; then
curcontext="${curcontext}:$compcontext"
comp="$_comps[$compcontext]"
[[ -z "$comp" ]] || "$comp"
return
fi
# An entry for `-first-' is the replacement for `compctl -T'
comp="$_comps[-first-]"
if [[ ! -z "$comp" ]]; then
curcontext="${curcontext}:-first-"
"$comp"
if [[ "$_compskip" = all ]]; then
_compskip=''
(( compstate[nmatches] ))
return
fi
fi
# For arguments and command names we use the `_normal' function.
if [[ "$compstate[context]" = command ]]; then
curcontext="$oldcontext"
_normal -s
else
# Let's see if we have a special completion definition for the other
# possible contexts.
local cname="-${compstate[context]:s/_/-/}-"
curcontext="${oldcontext}:$cname"
comp="$_comps[$cname]"
# If not, we use default completion, if any.
if [[ -z "$comp" ]]; then
if [[ "$_compskip" = *default* ]]; then
_compskip=''
return 1
fi
comp="$_comps[-default-]"
fi
[[ -z "$comp" ]] || "$comp"
fi
_compskip=''
(( compstate[nmatches] ))