Reputation: 5552
I have installed YADR for vim, https://github.com/skwp/dotfiles, and it messed up my Visual Block highlighting color. I have a black background, and my highlighting color is dark grey and I can't see what I am highlighting. Any help how to change the highlighting color? I want to keep the background black.
Upvotes: 1
Views: 1043
Reputation: 42258
You should run :
:verbose highlight
to see every highlight that has been modified and where.
You might refine it to :verbose highlight Visual
to see the specific modifications for the visual selection.
Then try to comment out where it has been modified last and see what comes up when you retype the command.
You can either enforce a new default in your .vimrc
or remove the plugin that is modifying it.
Upvotes: 4