mirror of
https://github.com/bronson/vim-trailing-whitespace.git
synced 2025-11-08 11:33:54 -05:00
Merge pull request #25 from superjamie/no-terminal
Don't highlight in terminal buffers
This commit is contained in:
@@ -9,13 +9,14 @@ function! ShouldMatchWhitespace()
|
||||
for ft in g:extra_whitespace_ignored_filetypes
|
||||
if ft ==# &filetype | return 0 | endif
|
||||
endfor
|
||||
if &buftype ==# 'terminal' | return 0 | endif
|
||||
return 1
|
||||
endfunction
|
||||
|
||||
" Highlight EOL whitespace, http://vim.wikia.com/wiki/Highlight_unwanted_spaces
|
||||
highlight default ExtraWhitespace ctermbg=darkred guibg=darkred
|
||||
autocmd ColorScheme * highlight default ExtraWhitespace ctermbg=darkred guibg=darkred
|
||||
autocmd BufRead,BufNew,FileType * if ShouldMatchWhitespace() | match ExtraWhitespace /\\\@<![\u3000[:space:]]\+$/ | else | match ExtraWhitespace /^^/ | endif
|
||||
autocmd BufRead,BufNew,FileType,TermOpen * if ShouldMatchWhitespace() | match ExtraWhitespace /\\\@<![\u3000[:space:]]\+$/ | else | match ExtraWhitespace /^^/ | endif
|
||||
|
||||
" The above flashes annoyingly while typing, be calmer in insert mode
|
||||
autocmd InsertLeave * if ShouldMatchWhitespace() | match ExtraWhitespace /\\\@<![\u3000[:space:]]\+$/ | endif
|
||||
|
||||
Reference in New Issue
Block a user