I want to configure vim to open a file at the same place I left off at.
|
feedback
|
|
From ubuntu's /etc/vim/vimrc file, this example is commented out:
If this doesn't work, a common problem is not havng ownership of your ~/.viminfo file. If this is the case, then run:
where user is your username and group is often the same as your username. | |||||
feedback
|
You can place this in your .vimrc :
the views will be placed in $HOME/.vim/view. You probably need to create these directories. | ||||
|
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. | |||
|
feedback
|
|
If you have viminfo enabled, it is as simple as 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 Have a look at
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 | |||
|
feedback
|