Gvim - How to remove the bottom big white gvim bar?

I have a big white bar at the bottom of gvim which is very annoying. can someone please explain how to remove the white bar at the bottom. If you observe the white bar at bottom

suggest any solution. thank you in advance. this also happens in the terminal.

+3


source to share


2 answers


If only in full screen, it's just a remainder that's too small to fit another line. Try increasing or decreasing the font size and see if there are sizes where the line goes off (or gets bigger). If so, then the reason.



+1


source


I found this problem when using

:tabnew

      

I read from https://wiki.archlinux.org/index.php/Vim called by a window manager that ignores window size hints. Install this to ~ / .vimrc



:set guiheadroom=0

      

But sometimes cause the last line to be missing. So the best approach is probably setting the correct font and not using the "e" in guioptions. In another word set in ~ / .vimrc

:set guioptions-=e

      

0


source







All Articles