about summary refs log tree commit diff
path: root/Completion/Builtins/_zmodload
blob: 7e893c86067282b14b4d79ef44055a28f3205ca2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#compdef zmodload

local fl="$words[2]" expl

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
  _wanted files expl 'module file' _files -W module_path -/g '*.s[ol](:r)'
fi