浏览代码

Merge pull request #799 from plindborg/ruby-plugin-fix

Fixed the rfind command in the  ruby plugin
Robby Russell 13 年之前
父节点
当前提交
35de0e1e63
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/ruby/ruby.plugin.zsh

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

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