Created
February 26, 2015 11:54
-
-
Save redacted/34de4ea384f87cfffbb2 to your computer and use it in GitHub Desktop.
PEP8 trailing whitespace: automatic nuking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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