16 lines
251 B
Text
16 lines
251 B
Text
|
#compdef gulp
|
||
|
#autoload
|
||
|
|
||
|
#
|
||
|
# Gulp completion, delegating to gulp to do all the completion work.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Indrajit Raychaudhuri <irc@indrajit.com>
|
||
|
#
|
||
|
|
||
|
if (( $+commands[gulp] )); then
|
||
|
eval "$(gulp --completion=zsh)"
|
||
|
|
||
|
_gulp_completion "$@"
|
||
|
fi
|