I would like to access recent files that I had opened and then closed in GVim. I open and close GVim frequently. I would like to access recent files from previous sessions as well.

Does GVim store recent files somewhere as Word and many other desktop apps store? How to access them?

link|improve this question

74% accept rate
feedback

4 Answers

up vote 15 down vote accepted

There is mru.vim, which adds the :MRU command.

link|improve this answer
Thank you, this was exactly what I was looking for. – Mert Nuhoglu Jul 3 '10 at 16:23
feedback

At least terminal vim stores the previous ten files into ~/.viminfo in the filemarks section. You can use '0, '1, '2, ... '9 to jump among them. (Probably only useful for '0 to get back to the last file you were editing, unless your memory is stronger than mine.) You can also use the :browse old command to get a menu with numbers.

link|improve this answer
1  
+1 My new favorite vim tip! – scraimer Dec 19 '11 at 6:37
feedback

As seen in the comments here (http://stackoverflow.com/questions/571955/undo-close-tab-in-vim), your file is probably still open in a buffer:

:ls " get the buffer number
:tabnew +Nbuf " where N is the buffer number

For example you can reopen the third buffer in a new tab (use :e instead if you don't use tabs):

:tabnew +3buf
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.