Skip to content

Instantly share code, notes, and snippets.

@ishmaelahmed
Created October 25, 2011 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ishmaelahmed/1313013 to your computer and use it in GitHub Desktop.
Save ishmaelahmed/1313013 to your computer and use it in GitHub Desktop.
Removes trailing spaces in vim file and return to your starting position
" Removes trailing spaces
function! TrimWhiteSpace()
let line = line('.')
let colum = col('.') %s/+$//e
call cursor(line,colum)
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment