As I use vim, it tries to be helpful by highlighting groups of four spaces in yellow, as shown.
My .vimrc
file says, in its entirety, set tabstop=4
.
How can I keep vim from highlighting the indentation in my files?
As I use vim, it tries to be helpful by highlighting groups of four spaces in yellow, as shown.
My .vimrc
file says, in its entirety, set tabstop=4
.
How can I keep vim from highlighting the indentation in my files?
Is this a case of highlighting the last search? If so, try typing ":noh".
If bentsai's answer isn't correct, then there's probably a match pattern in effect. In that case, :call clearmatches()
will remove the highlighting.