Skip to content

Instantly share code, notes, and snippets.

@redacted
Created February 26, 2015 11:54
Show Gist options
  • Save redacted/34de4ea384f87cfffbb2 to your computer and use it in GitHub Desktop.
Save redacted/34de4ea384f87cfffbb2 to your computer and use it in GitHub Desktop.
PEP8 trailing whitespace: automatic nuking
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