1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/Zsh/Command/_command
2001-04-02 11:26:50 +00:00

11 lines
162 B
Plaintext

#compdef command
if [[ CURRENT -ge 3 ]]; then
compset -n 2
_normal
else
local expl
_wanted commands expl 'external command' compadd "$@" -k commands
fi