1 2 3 4 5 6 7 8 9 10 11 12 13 14
#compdef command local ret # indicate if this is a precommand modifier [[ $service = command ]] && precommands+=(command) if [[ CURRENT -ge 3 ]]; then compset -n 2 _normal && ret=0 else _path_commands "$@" && ret=0 fi return ret