Bharat
Bharat

Reputation: 297

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

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

suggest any solution. thanks in advance. this also occurs in terminal.

Upvotes: 4

Views: 3370

Answers (2)

egon12
egon12

Reputation: 810

I found this trouble when using

:tabnew

I read from https://wiki.archlinux.org/index.php/Vim, it caused by window Manager that ignore window size hints. Set this in ~/.vimrc

:set guiheadroom=0

But sometimes cause the last line missing. So the best approach maybe set the right fontsize and don't use "e" in guioptions. In other word set in ~/.vimrc

:set guioptions-=e

Upvotes: 0

Jens
Jens

Reputation: 72717

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

Upvotes: 1

Related Questions