Skip to content

Instantly share code, notes, and snippets.

@scottymeyers
Created November 13, 2018 18:04
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 scottymeyers/5e34b02db643362eece3ffede3a10f80 to your computer and use it in GitHub Desktop.
Save scottymeyers/5e34b02db643362eece3ffede3a10f80 to your computer and use it in GitHub Desktop.
Useful VIM
// convert 4 spaces to 2
:%s;^\(\s\+\);\=repeat(' ', len(submatch(0))/2);g
// convert tab to 2 spaces
:%s/\t/ /g
// delete trailing whitespace
:%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment