浏览代码

Update gulp.plugin.zsh

Remove `local` stuff that cause an error in shell
Giordano Vicari 8 年之前
父节点
当前提交
015437cab8
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/gulp/gulp.plugin.zsh

+ 2 - 2
plugins/gulp/gulp.plugin.zsh

@@ -20,9 +20,9 @@
 # in the current directory.
 #
 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
 }