Skip to content

Instantly share code, notes, and snippets.

@alepez
Created December 17, 2015 10:08
Show Gist options
  • Save alepez/27d0699e62815363153f to your computer and use it in GitHub Desktop.
Save alepez/27d0699e62815363153f to your computer and use it in GitHub Desktop.
vim resize cmd height on window resize
function! ResizeCmdHeight()
if &columns < 120
set cmdheight=2
else
set cmdheight=1
endif
endfunction
augroup ResizeCmdOnVimResized
autocmd!
autocmd VimResized * call ResizeCmdHeight()
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment