mirror of
https://github.com/bronson/vim-trailing-whitespace.git
synced 2025-11-08 11:33:54 -05:00
Merge pull request #18 from liuqiang1357/master
Fix inconsistent highlight color
This commit is contained in:
@@ -13,8 +13,8 @@ function! ShouldMatchWhitespace()
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Highlight EOL whitespace, http://vim.wikia.com/wiki/Highlight_unwanted_spaces
|
" Highlight EOL whitespace, http://vim.wikia.com/wiki/Highlight_unwanted_spaces
|
||||||
highlight default ExtraWhitespace ctermbg=darkred guibg=#382424
|
highlight default ExtraWhitespace ctermbg=darkred guibg=darkred
|
||||||
autocmd ColorScheme * highlight default ExtraWhitespace ctermbg=red guibg=red
|
autocmd ColorScheme * highlight default ExtraWhitespace ctermbg=darkred guibg=darkred
|
||||||
autocmd BufRead,BufNew * if ShouldMatchWhitespace() | match ExtraWhitespace /\\\@<![\u3000[:space:]]\+$/ | else | match ExtraWhitespace /^^/ | endif
|
autocmd BufRead,BufNew * if ShouldMatchWhitespace() | match ExtraWhitespace /\\\@<![\u3000[:space:]]\+$/ | else | match ExtraWhitespace /^^/ | endif
|
||||||
|
|
||||||
" The above flashes annoyingly while typing, be calmer in insert mode
|
" The above flashes annoyingly while typing, be calmer in insert mode
|
||||||
|
|||||||
Reference in New Issue
Block a user