Auto-saving sessions in Vim 3
Back when I used Textmate, I liked that you could save projects to a file so that you could quit Textmate and come back later, load the project file up, and have all the files and tabs set up and open the way you had them. Since switching to Vim, I've gotten the same functionality (and more!) using the :mksession command. One thing that's missing in Vim, however, is the ability to auto-save a session. There are a few add-ons that do this, but add a bunch of other functionality that I find unnecessary. Below is a little script I wrote that adds auto-saving sessions to Vim:
function! AutosaveSessionOn(session_file_path)
augroup AutosaveSession
au!
exec "au VimLeave * mks! " . a:session_file_path
augroup end
let g:AutosaveSessionFilePath = a:session_file_path
echo "Auto-saving sessions to \"" . a:session_file_path . "\""
endfunction
function! AutosaveSessionOff()
if exists("g:AutosaveSessionFilePath")
unlet g:AutosaveSessionFilePath
endif
augroup AutosaveSession
au!
augroup end
augroup! AutosaveSession
echo "Auto-saving sessions is off"
endfunction
command! -complete=file -nargs=1 AutosaveSessionOn call AutosaveSessionOn(<f-args>)
command! AutosaveSessionOff call AutosaveSessionOff()
augroup AutosaveSession
au!
au SessionLoadPost * if exists("g:AutosaveSessionFilePath") != 0|call AutosaveSessionOn(g:AutosaveSessionFilePath)|endif
augroup end
To begin auto-saving sessions, simply run:
:AutosaveSessionOn <session filename>
Your session will then be automatically saved to the given session filename when Vim exits. Also, if you have globals in your sessionoptions list, when you load the auto-saved session, auto-saving will continue to occur to that session file. To turn auto-saving to the session file off, run:
:AutosaveSessionOff
For the latest and greatest version, refer to my vimrc.

Thanks for sharing this. This is great and very helpful.
"I do not care,"the 43-year-old shoemaker said,"I still love my job as before."“In Paris,I live in the original office,I still droved the Vespa motorcycle jimmy choo shoes.If you like to spend each day,you can see any change." Perhaps he failed to note that,since its first store in Paris,opened in 1992,outside interests.He did not christian louboutin,he is not also the magazine amateur.In fact he claimed that his design does not always seek inspiration from the fashion.
it needs a bokmark so i can come back to it later ,nice stuff