_gulp 251 B

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