Reputation: 178
My vim window shows filename on the top of the terminal window. I can't seem to find configuration related to that in my vimrc file to disable it. Any help on which variable need to be reset for removing this?
Upvotes: 1
Views: 3180
Reputation: 11
I ran into this issue as well and had to grovel through the source code to find the answer.
For some reason you need to set both notitle
and noicon
. It turns out the help text mentions this, but it's not intuitive.
Add these two lines to your .vimrc:
set notitle
set noicon
Upvotes: 1
Reputation: 195209
yes, you can set title
option.
add this into your vimrc to disable the default title:
set notitle
for detailed info: :h 'title'
Upvotes: 6