Created
September 14, 2012 21:03
-
-
Save jeffrafter/3724808 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Functions | |
function! <SID>StripTrailingWhitespaces() | |
" Preparation: save last search, and cursor position. | |
let _s=@/ | |
let l = line(".") | |
let c = col(".") | |
" Do the business: | |
%s/\s\+$//e | |
" Clean up: restore previous search history, and cursor position | |
let @/=_s | |
call cursor(l, c) | |
endfunction | |
" autocommands | |
if has('autocmd') | |
autocmd BufWritePre * :call <SID>StripTrailingWhitespaces() | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment