1999-04-15 20:05:38 +02:00
|
|
|
#autoload
|
|
|
|
|
2000-05-15 15:19:26 +02:00
|
|
|
# This searches $* in the array for normal completions and calls the result.
|
1999-04-15 20:05:38 +02:00
|
|
|
# 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
|
2000-05-15 15:19:26 +02:00
|
|
|
# `_compalso -math-' to get the completions that would be generated for a
|
|
|
|
# mathematical context.
|
1999-04-15 20:05:38 +02:00
|
|
|
|
2000-05-15 15:19:26 +02:00
|
|
|
local i tmp ret=1
|
1999-04-15 20:05:38 +02:00
|
|
|
|
2000-05-15 15:19:26 +02:00
|
|
|
for i; do
|
|
|
|
tmp="$_comps[$1]"
|
|
|
|
[[ -z "$tmp" ]] || "$tmp" && ret=0
|
|
|
|
done
|
|
|
|
|
|
|
|
return ret
|