Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add option to highlight tabs #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions plugin/bad-whitespace.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,25 @@
" Maintainer: Bit Connor <[email protected]>
" Version: 0.3

if !exists("g:bad_whitespace_show_tabs")
let g:bad_whitespace_show_tabs = 0
endif

function! s:ShowBadWhitespace(force)
if a:force
let b:bad_whitespace_show = 1
endif
highlight default BadWhitespace ctermbg=red guibg=red
autocmd ColorScheme <buffer> highlight default BadWhitespace ctermbg=red guibg=red
match BadWhitespace /\s\+$/
autocmd InsertLeave <buffer> match BadWhitespace /\s\+$/
autocmd InsertEnter <buffer> match BadWhitespace /\s\+\%#\@<!$/
if g:bad_whitespace_show_tabs
match BadWhitespace /\s\+$\|\t\+/
autocmd InsertLeave <buffer> match BadWhitespace /\s\+$\|\t\+/
autocmd InsertEnter <buffer> match BadWhitespace /\s\+\%#\@<!$\|\t\+/
else
match BadWhitespace /\s\+$/
autocmd InsertLeave <buffer> match BadWhitespace /\s\+$/
autocmd InsertEnter <buffer> match BadWhitespace /\s\+\%#\@<!$/
endif
endfunction

function! s:HideBadWhitespace(force)
Expand Down