Browse Source

[plugin/chruby] Add "system" to completion list

Detect system Ruby in default PATH, and provide "system" completion if
Ruby is found.
Franklin Yu 8 years ago
parent
commit
36808ff61e
1 changed files with 7 additions and 1 deletions
  1. 7 1
      plugins/chruby/chruby.plugin.zsh

+ 7 - 1
plugins/chruby/chruby.plugin.zsh

@@ -95,5 +95,11 @@ function chruby_prompt_info() {
 }
 
 # complete on installed rubies
-_chruby() { compadd $(chruby | tr -d '* ') }
+_chruby() {
+    compadd $(chruby | tr -d '* ')
+    local default_path='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'
+    if PATH=${default_path} type ruby &> /dev/null; then
+        compadd system
+    fi
+}
 compdef _chruby chruby