mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-04 22:51:42 +02:00
10 lines
162 B
Text
10 lines
162 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
|