Technology
 

Maximize or set initial window size

From Vim Tips Wiki

Tip 88 Previous Next created 2001 · complexity basic · author Leif Wickland · version 6.0


Contents

[edit] To set the initial size of the Vim window

Place the following in your vimrc to control the initial size of the Vim or gvim window (change the numbers to what you need):

set lines=50 columns=100

Here is a more sophisticated version:

if has("gui_running")
  " GUI is running or is about to start.
  " Maximize gvim window.
  set lines=99999 columns=99999
else
  " This is console Vim.
  if exists("+lines")
    set lines=50
  endif
  if exists("+columns")
    set columns=100
  endif
endif

[edit] To maximize the initial Vim window under Windows

Put the following in your vimrc to maximize Vim on startup (from :help win16-maximized):

au GUIEnter * simalt ~x

There is also a plugin with a DLL to maximize/restore the Vim window: maximize.dll : Maximizing plugin for Win32 gVim.

[edit] To maximize the initial Vim window under Sawfish

You can configure Sawfish to automatically maximize gvim on startup:

  • Run "sawfish-ui".
  • Select "matched windows", "Add...".
  • In "macthers" select "Class".
  • "Grab..." and click the Gvim window.
  • Select the "Maximized" checkbox and click "OK".

[edit] Comments

TODO Following are related tips. Should merge some of these.


In Windows, you can change the Properties of the shortcut to start Vim, for example:

cmd /c start /max "C:\Program Files\vim\vim71\gvim.exe"

There is a :winsize command, but it is deprecated (see :help winsize).