Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Depending on my task in Vim I have several tabs open. How can I save different sessions for later use? Thanks!!

share|improve this question
2  
I sometimes wonder are these question real. I mean, if you go under "help session" in vim, you'll get the answer on the very page you land on. – ldigas Oct 30 '09 at 17:03
2  
@ldigas I think ppl feel more comfortable finding the question here (with the large font, great formatting...) than on an old school forum or a terminal documentation, or, heaven forbid, a man page – puk Jan 10 '12 at 0:19
@puk - There isn't much formatting in it either. And you can change the font in Vim :) – ldigas Jan 10 '12 at 20:44
@ldigas I personally have always been scared away by the man pages b/c they don't sufficiently dumb things down. Much like everything else in linux, it has a steep learning curve. – puk Jan 10 '12 at 22:35
7  
@Idigas - I think you are missing the point that between the collective smarts of us, google, and the stack overflow metaknowledge management - this is simply a better way of getting your answers - what you need, not a long list of esoteric options, also as this page illustrates real world experience of traps, and often really nifty shortcuts to make your life easier. This applies equally to almost any manual I've looked at (except maybe the php online manual). Viva stackoverflow! – ErichBSchulz Dec 31 '12 at 4:19
show 2 more comments

4 Answers

up vote 88 down vote accepted

You want something like

:mksession ~/mysession.vim

Then later you can source that vim file and you'll have your old session back:

:source ~/mysession.vim

or open vim with the -S option:

$ vim -S ~/mysession.vim
share|improve this answer
10  
Ooo, and I almost forgot you can load it back by typing: gvim -S ~/mysession.vim – Benj Oct 29 '09 at 10:01
Thanks @Benj. I'm new in vim. How can I 'source' in the command line? – Jogusa Oct 29 '09 at 10:17
Hi Jogusa, That's pretty much what the above comment was about. vim -S – Benj Oct 29 '09 at 10:31
1  
Ooops! Sorry Benj, I meant command mode. I have already found it: ``:source ~/mysession.vim´´. – Jogusa Oct 29 '09 at 10:43
3  
Short is :so ~/file. If you happen to want to source the current file a simple :so % will do the work for you. – Daniel Baulig Apr 27 '11 at 22:53
show 2 more comments

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.

set ssop-=options    " do not store global and local values in a session
set ssop-=folds      " do not store folds
share|improve this answer
Great! I had exactly this problem yesterday. Thanks a lot! – Jogusa Oct 31 '09 at 16:56

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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