blob: 4fa2183a622308a22d7ba57db3a4d3f11fe6cbb0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#compdef zmodload
local fl="$words[2]" expl ret=1
if [[ "$fl" = -*(a*u|u*a)* || "$fl" = -*a* && CURRENT -ge 4 ]]; then
_wanted builtins expl 'builtin command' compadd "$@" -k builtins
elif [[ "$fl" = -*u* ]]; then
_wanted modules expl module compadd -k modules
else
_tags files aliases
while _tags; do
_requested files expl 'module file' \
_files -W module_path -/g '*.s[ol](:r)' && ret=0
_requested aliases expl 'module alias' \
compadd -- ${${(f)"$(zmodload -A)"}%% *} && ret=0
(( ret )) || break
done
fi
|