mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
11 lines
162 B
Plaintext
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
|