Skip to content

Instantly share code, notes, and snippets.

@nicomen
Created August 5, 2016 15:03
Show Gist options
  • Save nicomen/e7e7322a32a14c9ef78a5290d4f8ebce to your computer and use it in GitHub Desktop.
Save nicomen/e7e7322a32a14c9ef78a5290d4f8ebce to your computer and use it in GitHub Desktop.
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