mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
9 lines
214 B
Text
9 lines
214 B
Text
#function zmodload
|
|
|
|
if [[ -mword 1 -*(a*u|u*a)* || -mword 1 -*a* && -position 3 -1 ]]; then
|
|
complist -B
|
|
elif [[ -mword 1 -*u* ]]; then
|
|
complist -s '$(zmodload)'
|
|
else
|
|
complist -s '${^module_path}/*(N:t:r)'
|
|
fi
|