154

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?

Mert Nuhoglu
  • 9,695
  • 16
  • 79
  • 117
  • Similar to question: http://stackoverflow.com/questions/309723/view-a-list-of-recent-documents-in-vim – malgca Feb 05 '13 at 19:16

14 Answers14

256

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 oldfiles command to get a menu with numbers.

icc97
  • 11,395
  • 8
  • 76
  • 90
sarnold
  • 102,305
  • 22
  • 181
  • 238
  • 2
    If you want to use `0`-`9` as marks for navigation,do not mark them manually – yuan Feb 01 '13 at 07:22
  • 29
    use `:browse old` get file-list. and enter `q` to choose which file to edit. – songhir Feb 06 '14 at 12:08
  • 7
    `:e #<1` opens last file, see `:h c_#<`. – Hotschke Dec 15 '15 at 16:42
  • :bro ol works.. but you have to type a lot of keys.. first to get a list of files, then to press q, and then to select a number. I believe the MRU plugin mentioned below is much better: https://stackoverflow.com/a/3171323/4752883 you have to press f, then either browse to the file with hjkl or other keys/search for the file name. Then press o, enter, t, or v to quickly open the file under the cursor. – alpha_989 Nov 22 '17 at 15:19
  • I recovered a file i mistakenly delete using `rm` using the aforementioned method. – tandem Jun 22 '20 at 09:41
68

The best way that I use is

:browse oldfiles

Easiest way on vim.

Matthew Strawbridge
  • 19,940
  • 10
  • 72
  • 93
andor kesselman
  • 1,089
  • 2
  • 15
  • 26
  • 1
    Nice! I mapped that expression as "nmap bo :browse oldfiles" (without the quotations) in my ~/.vimrc. Simply typing that mapping (bo) in Normal mode executes that command – Victoria Stuart Feb 06 '17 at 22:02
  • Any way to change the ordering though? As it is right now, I'm spending a lot of times looking through for something I opened 2 files ago – Nephilim Nov 16 '22 at 09:58
46

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

pmr
  • 58,701
  • 10
  • 113
  • 156
22

Very late answer here ... expounding on @sarnolds answer - You can view the file history with the oldfiles command @see :h oldfiles or :h viminfo

:oldfiles 

Furthermore, you can have fine-grained file management with views and sessions ... @see :h mkview and :h mksession for specifics ...

Edward J Beckett
  • 5,061
  • 1
  • 41
  • 41
  • 7
    It's useful to know how to actually open a file after you know it's number from the list of `:oldfiles`. One can do this interactively using `:browse` command, as explained by @sarnold but it's also possible to do this manually by using `:e # – Krzysztof Adamski Apr 14 '14 at 21:08
14

Use :bro ol then press the number that corresponds to the file you want to open.

NelsonGon
  • 13,015
  • 7
  • 27
  • 57
nenchev
  • 1,998
  • 28
  • 16
11

There is an Swiss knife of file switching CtrlP plugin, which is also part of janus distributive. It has :CtrlPMRU command with smart lookup among recently used files.

Note: CtrlP maintains its own list of most recent used files in g:ctrlp_cache_dir."mru/cache.txt". It is not reusing viminfo (set viminfo?) which contains a list of file marks. This is useful if you want to clear this list.

Hotschke
  • 9,402
  • 6
  • 46
  • 53
Alexey
  • 9,197
  • 5
  • 64
  • 76
  • 1
    CtrlP interface is non intuitive for vim users? Not worth the trouble learning the complicated interface to do simple thing as to find the MRU file =~ /regexp/ (easily done with perl/grep regexp ~/_viminfo). – mosh Dec 30 '16 at 16:10
  • Yeah.. I have been trying to understand how to use Ctrlp, but MRU seems to be much easier to use, if you have a simple set of files (https://stackoverflow.com/a/3171323/4752883). In MRU you can also do VIM regexp search to find the file you need... – alpha_989 Nov 22 '17 at 15:20
8

Adding my 2 cents here because fzf was was not mentioned in earlier answers, which is such a wonderful tool:
fzf.vim has a :History command that lets you search the most recent used files in a fuzzy and search while you type manner.
I customize the (default) behavior of this command by not letting fzf reorder the search results list to the best match: I want the order of all matching filenames to keep being the order in which these files were last used.
To accomplish this customization, I added the following in my .vimrc to override the default History command defined by the fzf.vim plugin:

    command! -bang -nargs=* History
      \ call fzf#vim#history({'options': '--no-sort'})

EDIT:
Currently I'm using a neovim only plugin telescope.nvim which is very similar to fzf.vim, it has the command :Telescope old_files. And it can use the fzf algorithm as a sorting algorithm in the backend (which is currently recommended over the default sorter).
It looks a bit nicer, but can be a bit slower depending on the context. It is not as mature as fzf, but to me easier to customize, it is all lua script.
If you are a neovim only user, definitely worth checking out imho.

Emile Vrijdags
  • 1,550
  • 2
  • 15
  • 24
5

The CtrlP plugin lets you search through your recently used files as well as files in the current directory with this command:

nnoremap <c-p> :CtrlPMixed<cr>

This saves you the hassle of having to deal with built in Vim commands and the MRU plugin, neither of which let you do fuzzy file searching, which is critical when working on larger projects.

Andy Ray
  • 30,372
  • 14
  • 101
  • 138
  • 1
    For those that are resistant about re-maping Ctrl-P's default functionally: You could open Ctrl-P normally and use Ctrl-F or Ctrl-B to switch between modes (MRU being one of them) – Gustavo Matias Mar 12 '15 at 15:05
5

MRU has lot of features as explained here: http://www.thegeekstuff.com/2009/08/vim-editor-how-to-setup-most-recently-used-documents-features-using-mru-plugin/

thegeek
  • 2,388
  • 2
  • 13
  • 10
3

You might be able to access the list from the command line with:

grep '^>' ~/.viminfo|cut -c3-|sed 's,~,'"$HOME"','

Explanation:

grep '^>' ~/.viminfo  #find the list of recent files
cut -c3-              #remove the first 2 characters
sed 's,~,'"$HOME"','  #replace ~ with absolute path

You could have a bash alias if you use this regularly

alias vim_mru="grep '^>' ~/.viminfo|cut -c3-|sed 's,~,'\"$HOME\"','"
Alexx Roche
  • 3,151
  • 1
  • 33
  • 39
2

:ls to list recent files with buffer number on left-hand column.

Then do :b{buffer-number} to jump there.

Example: :ls shows list of files. I want to jump to third-last file I visited. :b3 will take me there.

For faster searching, map :ls to something, e.g. <Leader>. in your .vimrc file.

2

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
user886333
  • 29
  • 1
  • 1
    Yes, this works. But surely an editor's job is to make things easy? If you have to issue a command, visually identify something, remember an Id, then issue another command that's a real waste of user time. Your answer is correct, and I don't mean offence, but it doesn't make for one of Vim's killer features! – artfulrobot Feb 19 '13 at 10:50
  • I had the same problem. have you tried buffexplorer? It combines ls and :tabnew +Nbuf. Now you can open the list of buffers, and open it in a new tab etc.. with one keystroke (o, t, v) etcc. – alpha_989 Nov 22 '17 at 15:00
  • Another option would be: `nnoremap b :buffers:b` – SergioAraujo Nov 06 '21 at 11:26
1

One more plugin that let's you choose file from the list of last modified ones is staritfy. It replaces your start screen with a list of most recently modified files. You can always open this page later using :Startify command.

Krzysztof Adamski
  • 2,039
  • 11
  • 14
  • 1
    Couldn't even get startify to install - need more docs on basic install and usage. Using MRU, because it was easy to install and use. – mosh Jan 04 '17 at 15:34
1

Also you can go back with ctrl+O.

IvanDi
  • 147
  • 2
  • 8