mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 00:41:11 +00:00
16 lines
251 B
Plaintext
16 lines
251 B
Plaintext
|
#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
|