Vim Tips Wiki
No edit summary
(Undo revision 34798 by 83.11.124.68 (talk) Please create an account so we can talk to you.)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  +
{{ScriptComments|session: extended Vim session management}}
If you are having problems and want the completely automated session management add this to your .vimrc
 
   
  +
==Comments==
 
If you are having problems and want completely automated session management add this to your [[vimrc]]:
  +
<pre>
 
let g:session_autosave='yes'
 
let g:session_autosave='yes'
 
 
let g:session_autoload='yes'
 
let g:session_autoload='yes'
 
 
au VimLeave * :SaveSession! default
 
au VimLeave * :SaveSession! default
  +
</pre>

Latest revision as of 10:40, 24 July 2012

Use this page to discuss script 3150 session: extended Vim session management

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Comments[]

If you are having problems and want completely automated session management add this to your vimrc:

let g:session_autosave='yes'
let g:session_autoload='yes'
au VimLeave * :SaveSession! default