Reputation: 387
I downloaded the MRU.vim file and put it in my /.vim folder (along with my other working plugins).
When I try to use
:MRU
i get
"E492: Not an editor command: MRU"
I'm using VIM v7.0 on Mac OSX Snow.
Any thoughts?
update I installed MacVim which has an option to "Choose a vim script to run". When i load MRU from there MRU starts working.
I've added mru.vim to the autoload folder yet still no joy.
Upvotes: 2
Views: 567
Reputation: 1
probably file is in dos format
you can see this by writing
:set ff?
if result is dos
than try using:
:set ff=unix
Upvotes: 0