Depending on my task in Vim I have several tabs open. How can I save different sessions for later use? Thanks!!
|
You want something like
Then later you can source that vim file and you'll have your old session back:
or open vim with the -S option:
|
|||||||||||||||||
|
|
You might want to set these session options in your vimrc. Especially options is annoying when you've changed your vimrc after you've saved the session.
|
||||
|
|
|
Note that :mksession will not save the changes to any files that you've made. I made this mistake of closing vim after saving the session assuming that I'll take up from there. But next time I opened the session, the changes I had made to the files were gone. |
|||
|
|
|
If you use NERDTree as your file explorer/dash, I would recommend xolox/vim-session plugin instead of the built-in :mksession command. For some reason, :mksession fails to restore NERDTree buffers. Your mileage may vary, but thought I'd share my experience. |
|||
|
|

manpage – puk Jan 10 '12 at 0:19