_grunt 257 B

12345678910111213141516
  1. #compdef grunt
  2. #autoload
  3. #
  4. # Grunt completion, delegating to grunt to do all the completion work.
  5. #
  6. # Authors:
  7. # Indrajit Raychaudhuri <irc@indrajit.com>
  8. #
  9. if (( $+commands[grunt] )); then
  10. eval "$(grunt --completion=zsh)"
  11. _grunt_completion "$@"
  12. fi