Update gulp.plugin.zsh

Remove `local` stuff that cause an error in shell
This commit is contained in:
Giordano Vicari 2015-12-15 12:14:41 +01:00
parent 4f314e2a32
commit 015437cab8
1 changed files with 2 additions and 2 deletions

View File

@ -20,9 +20,9 @@
# in the current directory. # in the current directory.
# #
function $$gulp_completion { function $$gulp_completion {
local compls=$(gulp --tasks-simple 2>/dev/null) compls=$(gulp --tasks-simple 2>/dev/null)
local completions=(${=compls}) completions=(${=compls})
compadd -- $completions compadd -- $completions
} }