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