vote up 8 vote down star
2

I know how to set the initial window size in gVim, but how do I get it to automatically restore the window dimensions from last session? Is this even possible?

flag

3 Answers

vote up 9 vote down check

Edit: Corrected my answer. The mentioned winsize sessionoption only refers to the vim internal window layout, not the external dimensions.


If you use

:mksession

and load the session on vim startup with

gvim -S Session.vim

you can include the window position and size into the session by including winpos and resize in the sessionoptions, see

:help  'sessionoptions

With autocommands you could even automate the saving and restoring of the session on Vim entry and exit.

link|flag
Thanks for the answer! I'm still quite new to Vim, so I'm not terribly experienced with autocommands. How would I get them to fire on entry and exit? – Charles Roper Feb 27 at 14:38
See :help autocommand, especially the GUIEnter, VIMEnter, VIMLeave events look promising. – blixtor Feb 27 at 14:42
vote up 1 vote down

I had the same question, and to expand on the above answer, you can simply add the following to your .vimrc to get the behaviour you want:

set sessionoptions+=resize,winpos

link|flag
vote up 0 vote down
gvim -geom 85x55

as in, putting this in your .bashrc:

alias G='gvim -geom 85x55'
link|flag

Your Answer

Get an OpenID
or

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