Skip to content

Instantly share code, notes, and snippets.

@olof
Created January 15, 2013 08:07
Show Gist options
  • Save olof/4537120 to your computer and use it in GitHub Desktop.
Save olof/4537120 to your computer and use it in GitHub Desktop.
Vim highlighting trailing whitespace
" hilight trailing whitespace
highlight wsEOL ctermbg=red guibg=red
match wsEOL /\v\s+$/
au InsertLeave * match wsEOL /\v\s+$/
au InsertEnter * match wsEOL /\v\s+\%#\@<!$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment