1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-29 19:00:57 +02:00
zsh/Completion/Builtins/_command
2000-03-23 04:19:26 +00:00

10 lines
170 B
Text

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