blob: 8e80178178a43ae9cde37a81cffade56062c4adc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#compdef zle
local expl
if [[ "$words[2]" = -N && CURRENT -eq 3 ]]; then
_wanted -C -N functions expl 'widget shell function' &&
compadd "$expl[@]" "$@" - "${(k@)functions}" && ret=0
else
_wanted widgets expl widget && compadd "$expl[@]" - "${(@k)widgets}"
fi
|