2019-01-12 15:47:23 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
#
|
|
|
|
# gulp-autocompletion-zsh
|
|
|
|
#
|
|
|
|
# Autocompletion for your gulp.js tasks
|
|
|
|
#
|
|
|
|
# Copyright(c) 2014 André König <andre.koenig@posteo.de>
|
|
|
|
# MIT Licensed
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# André König
|
2019-10-24 19:09:05 +00:00
|
|
|
# GitHub: https://github.com/akoenig
|
2019-01-12 15:47:23 +00:00
|
|
|
# Twitter: https://twitter.com/caiifr
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Grabs all available tasks from the `gulpfile.js`
|
|
|
|
# in the current directory.
|
|
|
|
#
|
2019-10-24 19:09:05 +00:00
|
|
|
function _gulp_completion {
|
2019-01-12 15:47:23 +00:00
|
|
|
compls=$(gulp --tasks-simple 2>/dev/null)
|
|
|
|
|
|
|
|
completions=(${=compls})
|
|
|
|
compadd -- $completions
|
|
|
|
}
|
|
|
|
|
2019-10-24 19:09:05 +00:00
|
|
|
compdef _gulp_completion gulp
|