I want to configure vim to open a file at the same place I left off at.

link|improve this question
feedback

4 Answers

From ubuntu's /etc/vim/vimrc file, this example is commented out:

" Uncomment the following to have Vim jump to the last position when                                                       
" reopening a file
if has("autocmd")
  au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
    \| exe "normal! g'\"" | endif
endif

If this doesn't work, a common problem is not havng ownership of your ~/.viminfo file. If this is the case, then run:

sudo chown user:group ~/.viminfo

where user is your username and group is often the same as your username.

link|improve this answer
2  
The autocmd comes straight out of the vim doc. See :help last-position-jump – user55400 Apr 23 '09 at 8:08
feedback
  :h views-sessions

You can place this in your .vimrc :

  au BufWinLeave * mkview
  au BufWinEnter * silent loadview

the views will be placed in $HOME/.vim/view. You probably need to create these directories.

link|improve this answer
feedback

If you don't mind trading automation for simplicity, just press the keystroke '" (apostrophe, followed by double quotes) on opening a file, you'll jump to where you were. This is essentially what @marcog's answer is doing.

link|improve this answer
feedback

If you have viminfo enabled, it is as simple as `0 to go to the last edited file position. You'll notice that this is just a 'go to mark' command;

Indeed, you can later do '3 to go to the third previous edited location (perhaps in another file), and then return to the last one with `0 again

Have a look at

 :marks

to see remembered locations. Note also that viminfo stores all kinds of other stuff (like the contents of registers, marks per file, command and search history). Most people have this enabled for obvious reasons

link|improve this answer
feedback

Your Answer

 
or
required, but never shown