Browse Source

Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh into cloud_parameter

Mark Drago 13 years ago
parent
commit
95971a287b
3 changed files with 3 additions and 3 deletions
  1. 1 1
      lib/completion.zsh
  2. 1 1
      plugins/bundler/bundler.plugin.zsh
  3. 1 1
      plugins/ruby/ruby.plugin.zsh

+ 1 - 1
lib/completion.zsh

@@ -39,7 +39,7 @@ hosts=(
   "$_global_ssh_hosts[@]"
   "$_ssh_hosts[@]"
   "$_etc_hosts[@]"
-  `hostname`
+  "$HOST"
   localhost
 )
 zstyle ':completion:*:hosts' hosts $hosts

+ 1 - 1
plugins/bundler/bundler.plugin.zsh

@@ -10,7 +10,7 @@ alias bu="bundle update"
 
 # The following is based on https://github.com/gma/bundler-exec
 
-bundled_commands=(cap capify cucumber foreman guard heroku nanoc rackup rails rainbows rake rspec ruby shotgun spec spork thin unicorn unicorn_rails)
+bundled_commands=(cap capify cucumber foreman guard heroku nanoc rackup rainbows rake rspec ruby shotgun spec spork thin unicorn unicorn_rails)
 
 ## Functions
 

+ 1 - 1
plugins/ruby/ruby.plugin.zsh

@@ -3,4 +3,4 @@
 alias sgem='sudo gem'
 
 # Find ruby file
-alias rfind='find . -name *.rb | xargs grep -n'
+alias rfind='find . -name "*.rb" | xargs grep -n'