Created
October 11, 2009 12:24
-
-
Save lukaszkorecki/207649 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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