Skip to content

Instantly share code, notes, and snippets.

@allspiritseve
Last active December 15, 2015 09:29
Show Gist options
  • Save allspiritseve/5238696 to your computer and use it in GitHub Desktop.
Save allspiritseve/5238696 to your computer and use it in GitHub Desktop.
Highlight invalid white space at the end of a line
autocmd InsertEnter * syn clear EOLWS | syn match EOLWS excludenl /\s\+\%#\@!$/
autocmd InsertLeave * syn clear EOLWS | syn match EOLWS excludenl /\s\+$/
highlight EOLWS ctermbg=red guibg=red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment