Created
August 5, 2016 15:03
-
-
Save nicomen/e7e7322a32a14c9ef78a5290d4f8ebce to your computer and use it in GitHub Desktop.
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
autocmd BufWritePre *.{pm,t,pl} call StripTrailingWhite() | |
function! StripTrailingWhite() | |
let l:winview = winsaveview() | |
silent! %s/\s\+$// | |
call winrestview(l:winview) | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment