Skip to content

Instantly share code, notes, and snippets.

@redacted
Created April 7, 2015 11:21
Show Gist options
  • Save redacted/605d94dfa7ec98ce9dc7 to your computer and use it in GitHub Desktop.
Save redacted/605d94dfa7ec98ce9dc7 to your computer and use it in GitHub Desktop.
no trailing whitespace
func! DeleteTrailingWS()
exe "normal mz"
%s/\s\+$//ge
exe "normal `z"
endfunc
autocmd BufWrite *.py :call DeleteTrailingWS()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment