mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
Accept single and double quotes in Gulp plugin
This commit is contained in:
parent
76a26a2a59
commit
0c0450b303
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue