mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
moved to Completion/Base/Utility/_contexts
This commit is contained in:
parent
f0506139f8
commit
2f1832c5e1
@ -1,17 +0,0 @@
|
|||||||
#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 ret=1 service
|
|
||||||
|
|
||||||
for i; do
|
|
||||||
tmp="$_comps[$i]"
|
|
||||||
[[ -z "$tmp" ]] || service="${_services[$i]:-$i}" && "$tmp" && ret=0
|
|
||||||
done
|
|
||||||
|
|
||||||
return ret
|
|
Loading…
Reference in New Issue
Block a user