From 8230c950102eff9cf2c1491e5aa0aa3efb133d70 Mon Sep 17 00:00:00 2001 From: tyru Date: Sun, 10 Jan 2016 10:59:52 +0900 Subject: [PATCH] Add 'default' to :highlight command Same as the command without 'autocmd ColorScheme *', add 'default' to :highlight command. --- plugin/trailing-whitespace.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/trailing-whitespace.vim b/plugin/trailing-whitespace.vim index 158cca5..9b908a6 100644 --- a/plugin/trailing-whitespace.vim +++ b/plugin/trailing-whitespace.vim @@ -14,7 +14,7 @@ endfunction " Highlight EOL whitespace, http://vim.wikia.com/wiki/Highlight_unwanted_spaces highlight default ExtraWhitespace ctermbg=darkred guibg=#382424 -autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red +autocmd ColorScheme * highlight default ExtraWhitespace ctermbg=red guibg=red autocmd BufRead,BufNew * if s:ShouldMatchWhitespace() | match ExtraWhitespace /\s\+$/ | else | match ExtraWhitespace /^^/ | endif " The above flashes annoyingly while typing, be calmer in insert mode