Created
October 8, 2011 21:19
-
-
Save carlosgaldino/1272896 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
set fuoptions=maxvert | |
function ToggleFullScreen() | |
if exists("s:old_columns") | |
set columns=s:old_columns | |
set nofu | |
unlet s:old_columns | |
else | |
let s:old_columns=&columns | |
set columns=84 fu | |
endif | |
endfunction | |
map <Leader>fu :call ToggleFullScreen()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment