Skip to content

Instantly share code, notes, and snippets.

@pcreux
Created September 16, 2011 15:15
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 pcreux/1222339 to your computer and use it in GitHub Desktop.
Save pcreux/1222339 to your computer and use it in GitHub Desktop.
Vim command to delete trailing spaces
" Press F5 to delete trailing spaces
map <silent> <F5> :let _s=@/<Bar>:%s/\(\S\)\s\+$/\1/e<Bar>:let @/=_s<Bar>:nohl<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment