Rails.vim is installed, but: Rfind doesnt'work

I installed rails.vim and it seems to be installed correctly since :Rails! returns rails.vim 5.0 .

But if I'm in an existing Rails project and looking for the file :Rfind user , I get E492: Not an editor command: Rfind user .

Any suggestions?

+7
ruby vim ruby-on-rails
source share
1 answer

Use find instead of Rfind , this will work.

On the Rails.vim help page :h Rails

  :Rfind [{file}] Obsolete alias for :find. 
+11
source share

All Articles