mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 01:41:12 +00:00
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
|
#compdef grunt
|
||
|
#autoload
|
||
|
|
||
|
#
|
||
|
# Grunt completion, delegating to grunt to do all the completion work.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Indrajit Raychaudhuri <irc@indrajit.com>
|
||
|
#
|
||
|
|
||
|
if (( $+commands[grunt] )); then
|
||
|
eval "$(grunt --completion=zsh)"
|
||
|
|
||
|
_grunt_completion "$@"
|
||
|
fi
|