Skip to content

Instantly share code, notes, and snippets.

@codeprimate
Created April 11, 2014 18:01
Show Gist options
  • Save codeprimate/10488394 to your computer and use it in GitHub Desktop.
Save codeprimate/10488394 to your computer and use it in GitHub Desktop.
Vim: Highlight trailing white space
" Highlight 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()
function! TrimWhiteSpace()
%s/\s\+$//e
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment