浏览代码

Fixed the rfind command in the ruby plugin

Patrick Lindborg 12 年之前
父节点
当前提交
a49fcea9f5
共有 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'
 
 # Find ruby file
-alias rfind='find . -name *.rb | xargs grep -n'
+alias rfind='find . -name "*.rb" | xargs grep -n'