Skip to content

Instantly share code, notes, and snippets.

@gmurphey
Created November 26, 2013 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmurphey/7660632 to your computer and use it in GitHub Desktop.
Save gmurphey/7660632 to your computer and use it in GitHub Desktop.
Remove trailing whitespace for everything but markdown.
let whitespace_blacklist = ['markdown']
autocmd BufWritePre * if index(whitespace_blacklist, &ft) < 0 | :%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment