Skip to content

Instantly share code, notes, and snippets.

@patrickgombert
Created December 18, 2014 17:56
Show Gist options
  • Save patrickgombert/bc6bf7e4dfc702b888a4 to your computer and use it in GitHub Desktop.
Save patrickgombert/bc6bf7e4dfc702b888a4 to your computer and use it in GitHub Desktop.
Trim trailing whitespace
" 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