浏览代码

Merge pull request #4759 from swrobel/patch-1

chruby plugin locals moved inside function
Marc Cornellà 8 年之前
父节点
当前提交
078cd4ae2b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      plugins/chruby/chruby.plugin.zsh

+ 3 - 3
plugins/chruby/chruby.plugin.zsh

@@ -16,9 +16,6 @@
 # rvm and rbenv plugins also provide this alias
 alias rubies='chruby'
 
-local _chruby_path
-local _chruby_auto
-
 _homebrew-installed() {
     whence brew &> /dev/null
 }
@@ -42,6 +39,9 @@ if _ruby-build_installed; then
 fi
 
 _source_from_omz_settings() {
+    local _chruby_path
+    local _chruby_auto
+    
     zstyle -s :omz:plugins:chruby path _chruby_path
     zstyle -s :omz:plugins:chruby auto _chruby_auto