Skip to content

Instantly share code, notes, and snippets.

@dylanz
Created October 27, 2011 08:10
Show Gist options
  • Save dylanz/1319031 to your computer and use it in GitHub Desktop.
Save dylanz/1319031 to your computer and use it in GitHub Desktop.
"" Strip all trailing whitespace in file
"" http://vim.wikia.com/wiki/Remove_unwanted_spaces
function! StripWhitespace ()
exec ':%s/ \+$//gc'
endfunction
map ,s :call StripWhitespace ()<CR>
autocmd BufWritePre * :%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment