Created
August 9, 2012 09:26
-
-
Save johntyree/3302642 to your computer and use it in GitHub Desktop.
Remove trailing whitespace in Vim.
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
| " Remove trailing whitespace | |
| command! StripTrailingWhitespaces call <SID>StripTrailingWhitespaces() | |
| nmap ,ws :StripTrailingWhitespaces<CR> | |
| " Strip whitespace | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment