Skip to content

Instantly share code, notes, and snippets.

View wikitopian's full-sized avatar

wikitopian wikitopian

View GitHub Profile
@wikitopian
wikitopian / wspace.vim
Created August 2, 2012 15:45
Automatically detect trailing whitespace
augroup wspace
autocmd!
" Visual warning about trailing whitespace
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()
augroup END