1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-20 14:04:03 +01:00
zsh/Completion/Builtins/_command

11 lines
162 B
Plaintext
Raw Normal View History

2000-05-31 11:38:25 +02:00
#compdef command
1999-04-15 20:05:38 +02:00
2000-05-31 11:38:25 +02:00
if [[ CURRENT -ge 3 ]]; then
compset -n 2
_normal
1999-04-15 20:05:38 +02:00
else
2000-05-31 11:38:25 +02:00
local expl
_wanted commands expl 'external command' compadd "$@" -k commands
1999-04-15 20:05:38 +02:00
fi