Skip to content

Instantly share code, notes, and snippets.

@tsterker
Created April 4, 2013 11:23
Show Gist options
  • Save tsterker/5309619 to your computer and use it in GitHub Desktop.
Save tsterker/5309619 to your computer and use it in GitHub Desktop.
1) tabs to spaces
:set tabstop=4 shiftwidth=4 expandtab
:retab
2) Whitespace found at end of line
:%s/^M\+$//g
:%s/\s\+$//g
NOTE: ^M must be inserted using CTRL-v RETURN
3) Line indented incorrectly
gg=G
(and everything that is still wrong needs to be fixed by hand)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment