Skip to content

Instantly share code, notes, and snippets.

@bernd
Created April 22, 2010 08:07
Show Gist options
  • Save bernd/374950 to your computer and use it in GitHub Desktop.
Save bernd/374950 to your computer and use it in GitHub Desktop.
" http://vim.wikia.com/wiki/Remove_unwanted_spaces
"
" Removes trailing spaces
function TrimWhiteSpace()
%s/\s*$//
''
:endfunction
au FileWritePre * :call TrimWhiteSpace()
au FileAppendPre * :call TrimWhiteSpace()
au FilterWritePre * :call TrimWhiteSpace()
au BufWritePre * :call TrimWhiteSpace()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment