Commit 0c0450b3 authored by Aleksandar Vidakovic's avatar Aleksandar Vidakovic
Browse files

Accept single and double quotes in Gulp plugin

parent 76a26a2a
...@@ -20,10 +20,10 @@ ...@@ -20,10 +20,10 @@
# in the current directory. # in the current directory.
# #
function $$gulp_completion() { 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}) completions=(${=compls})
compadd -- $completions compadd -- $completions
} }
compdef $$gulp_completion gulp compdef $$gulp_completion gulp
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment