Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created October 11, 2009 12:24
Show Gist options
  • Save lukaszkorecki/207649 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/207649 to your computer and use it in GitHub Desktop.
" Maximize your (g|mac)vim window
" Put this in your .(g)vimrc
" :w | so %
" :WinMax (can be whatever you like) - just change the alias in the last line (own functions need to start with capital letter)
function! s:MAX()
set lines=999
set columns=999
endfunction
command! -bar -narg=0 WinMax call s:MAX()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment