#compdef command

local ret

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

return ret
