Skip to content

Instantly share code, notes, and snippets.

@wlue
Created January 5, 2013 17:56
Show Gist options
  • Save wlue/4462765 to your computer and use it in GitHub Desktop.
Save wlue/4462765 to your computer and use it in GitHub Desktop.
vim script that auto-indents and removes trailing whitespace. I used this to convert Obj-C projects from indents to spaces.
:set ts|retab " retab the whole file with magic
:%s/\v^\ +$// " remove whitespace in newline
:wq!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment