Skip to content

Instantly share code, notes, and snippets.

@jmz-b
Created July 1, 2019 01:09
Show Gist options
  • Save jmz-b/42d535208361dfaaea1785a47602c014 to your computer and use it in GitHub Desktop.
Save jmz-b/42d535208361dfaaea1785a47602c014 to your computer and use it in GitHub Desktop.
vim function to trim trailing whitespace
function! TrimWhitespace()
let l:save_cursor = getpos('.')
%s/\s\+$//e
call setpos('.', l:save_cursor)
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment