Created
December 18, 2014 17:56
-
-
Save patrickgombert/bc6bf7e4dfc702b888a4 to your computer and use it in GitHub Desktop.
Trim trailing whitespace
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
" Trip trailing whitespace | |
function! Trim() | |
exe "normal mz" | |
%s/\s*$// | |
exe "normal `z" | |
exe "normal zz" | |
endfunction | |
command! -nargs=0 Trim :call Trim() | |
nnoremap <silent> <Leader>tw :Trim<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment