1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-11 10:41:12 +02:00
zsh/Completion/Zsh/Command/_command
2007-08-19 23:31:30 +00:00

12 lines
143 B
Text

#compdef command
local ret
if [[ CURRENT -ge 3 ]]; then
compset -n 2
_normal && ret=0
else
_path_commands "$@" && ret=0
fi
return ret