diff options
author | Aleksandar Vidakovic <cheetah@monkeysintown.com> | 2015-09-24 11:51:15 +0100 |
---|---|---|
committer | Aleksandar Vidakovic <cheetah@monkeysintown.com> | 2015-09-24 11:51:15 +0100 |
commit | 0c0450b3035cd4e9fd3f2c07469b933a4d1aa78f (patch) | |
tree | 66de5075203b6d6484986a0d9ce5e677682a1675 /plugins/gulp | |
parent | 76a26a2a59d8c6d0f65a4426cdb93920e255aea7 (diff) | |
download | zsh-0c0450b3035cd4e9fd3f2c07469b933a4d1aa78f.tar.gz zsh-0c0450b3035cd4e9fd3f2c07469b933a4d1aa78f.tar.bz2 zsh-0c0450b3035cd4e9fd3f2c07469b933a4d1aa78f.zip |
Accept single and double quotes in Gulp plugin
Diffstat (limited to 'plugins/gulp')
-rw-r--r-- | plugins/gulp/gulp.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gulp/gulp.plugin.zsh b/plugins/gulp/gulp.plugin.zsh index 6017c7b60..8e11a444f 100644 --- a/plugins/gulp/gulp.plugin.zsh +++ b/plugins/gulp/gulp.plugin.zsh @@ -20,10 +20,10 @@ # 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) + 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 } -compdef $$gulp_completion gulp
\ No newline at end of file +compdef $$gulp_completion gulp |