Skip to content

Instantly share code, notes, and snippets.

@jodell
Created September 13, 2013 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jodell/6555568 to your computer and use it in GitHub Desktop.
Save jodell/6555568 to your computer and use it in GitHub Desktop.
" Strip trailing whitespace upon write
autocmd BufWritePre *.{m,h,rb,js,coffee,scss,css,yml} call StripTrailingWhiteSpace()
function! StripTrailingWhiteSpace()
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