| DIR:/proc/self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
| Current File : //proc/self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/_functions |
#compdef unfunction
local expl ffilt
zstyle -t ":completion:${curcontext}:functions" prefix-needed && \
[[ $PREFIX != [_.]* ]] && \
ffilt='[(I)[^_.]*]'
_wanted functions expl 'shell function' compadd -k "$@" - "functions$ffilt"
|