Created
April 4, 2013 11:23
-
-
Save tsterker/5309619 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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