summaryrefslogtreecommitdiff
path: root/plugins/gulp
diff options
context:
space:
mode:
authorJoseph Post <jp@jsphpst.com>2015-09-28 10:50:35 -0500
committerJoseph Post <jp@jsphpst.com>2015-09-28 10:50:35 -0500
commit5af52fbc75a07f03f2f796846184e0c2d6ca87b2 (patch)
tree86a42b5f5c7c4596af9e683f72ac1294ff357d21 /plugins/gulp
parent52e2aaee068814aadc989ac904bb055349240869 (diff)
downloadzsh-5af52fbc75a07f03f2f796846184e0c2d6ca87b2.tar.gz
zsh-5af52fbc75a07f03f2f796846184e0c2d6ca87b2.tar.bz2
zsh-5af52fbc75a07f03f2f796846184e0c2d6ca87b2.zip
gulp plugin: missing opening double quote & had unneeded parens on function
Diffstat (limited to 'plugins/gulp')
-rw-r--r--plugins/gulp/gulp.plugin.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gulp/gulp.plugin.zsh b/plugins/gulp/gulp.plugin.zsh
index 8e11a444f..f7eaefa85 100644
--- a/plugins/gulp/gulp.plugin.zsh
+++ b/plugins/gulp/gulp.plugin.zsh
@@ -19,8 +19,8 @@
# Grabs all available tasks from the `gulpfile.js`
# in the current directory.
#
-function $$gulp_completion() {
- compls=$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)"
+function $$gulp_completion {
+ compls="$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)"
completions=(${=compls})
compadd -- $completions