Skip to content

Instantly share code, notes, and snippets.

@graywh
Created November 12, 2009 22:32
Show Gist options
  • Save graywh/233373 to your computer and use it in GitHub Desktop.
Save graywh/233373 to your computer and use it in GitHub Desktop.
function RemoveTrailingSpace()
if expand('%') =~? '\.patch$'
return
endif
try
%s/\s\+$//
norm! ``
catch /E486/
endtry
endfunction
autocmd BufWritePre * call RemoveTrailingSpace()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment