1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-17 15:01:40 +02:00
zsh/Completion/Core/_compalso
1999-04-15 18:25:40 +00:00

17 lines
478 B
Text

#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
# `_compalso -math-' to get the completions that would be generated for a
# mathematical context.
local i tmp
for i; do
tmp="$_comps[$1]"
[[ -z "$tmp" ]] || "$tmp" && return 0
done
return 1