Reputation: 2081
I've confirmed that I've installed the plugin, and commands such as :StripWhitespace work fine. For some reason, I just can't get trailing whitespace highlighted.
All my vim files, including the git submodule for vim-better-whitespace, are in a public repo here: https://github.com/AnselAtoms/dev_env
Upvotes: 0
Views: 806
Reputation: 45107
There could be a few issues:
:ToggleWhitespace
hi ExtraWhitespace guibg=#990000 ctermbg=red
. See :h :hi
for more highlight information.The vim-better-whitespace homepage for more information on how to setup and use the plugin. You can also use :h better-whitespace
.
Upvotes: 2