after months of tweaking my vimrc file and installing plugins, I have this little bug which is very painful:
When I'm closing a split (looks like this only appears on vertical ones) the remaining buffer often needs a redraw, because the text is completly screwed up (lines are gone, remaining text from the closed buffer etc)
This can easily been fixed by pressing CTRL-L, but it's really annoying to press CTRL-L each time when I open and close my nerdtree explorer.
Does anyone ran into same/similar problems and/or knows a solution? I was not able to burn down this behaviour to a single line in my vimrc nor to a particular plugin...
Thanks in advance!
I had a similar problem in the past.
I used guioptions-=r
and guioptions-=l
which remove the left and right scroll bars ant this works just fine, but there are two more options for splits: guioptions-=L
and guioptions-=R
.
Those remove the scroll bars from split views, too. If you just set lr
but not LR
, vim will always append the left (or right) scroll bar when using NERDTree and other splits and this causes vim to display screwed up text...
Hope that helps!