Accept single and double quotes in Gulp plugin

master
Aleksandar Vidakovic 11 years ago
parent 76a26a2a59
commit 0c0450b303
  1. 4
      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
compdef $$gulp_completion gulp

Loading…
Cancel
Save