1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00
zsh/Completion/Base/Utility/_contexts
2001-04-02 11:10:27 +00:00

18 lines
525 B
Plaintext

#autoload
# This searches $* in the array for normal completions and calls the result.
# It is used to include completions for another command or special context
# into the list generated by the calling function.
# For example the function for `-subscript-' could call this as in
# `_contexts -math-' to get the completions that would be generated for a
# mathematical context.
local i tmp ret=1 service
for i; do
tmp="$_comps[$i]"
[[ -z "$tmp" ]] || service="${_services[$i]:-$i}" && "$tmp" && ret=0
done
return ret