adarsh003
adarsh003

Reputation: 178

Vim shows file name as title

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

Answers (2)

error27
error27

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

Kent
Kent

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

Related Questions