1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00

moved from Completion/Builtins/_command

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:26:50 +00:00
parent 8638ff684b
commit d9ba273ed7

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