Created
August 15, 2011 19:17
-
-
Save skalnik/1147500 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
" Love this for adjusting from laptop to desktop monitor | |
function! Change_size() | |
if !exists('w:wide') | |
let w:wide = 0 | |
endif | |
if w:wide == 1 | |
set columns=140 | |
let w:wide = 0 | |
else | |
set columns=260 | |
let w:wide = 1 | |
endif | |
endfunction | |
map <leader>w :call Change_size()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment