molokai
molokai copied to clipboard
highlighting extra whitespace fails with molokai
In my ~/.vimrc there is a setting to highlight extra whitespace in the line ends. It fails to highlight with the molokai scheme but shows the spaces fine in other themes.
My settings:
" Make trailing whitespace annoyingly highlighted. highlight ExtraWhitespace ctermbg=red guibg=red match ExtraWhitespace /\s+$/ autocmd BufWinEnter * match ExtraWhitespace /\s+$/ autocmd InsertEnter * match ExtraWhitespace /\s+%#@<!$/ autocmd InsertLeave * match ExtraWhitespace /\s+$/ autocmd BufWinLeave * call clearmatches()