Skip to content

Instantly share code, notes, and snippets.

@yefim
Last active October 26, 2016 01:15
Show Gist options
  • Save yefim/284ebecaad1447e8cf4f to your computer and use it in GitHub Desktop.
Save yefim/284ebecaad1447e8cf4f to your computer and use it in GitHub Desktop.
Reindent and retab any and all files from the command line
gg=G
:retab
ZZ

Reindent and retab file(s)

For a single file

  $ vim /path/to/file.js -s /path/to/format.vim

For multiple files

  $ find . -name '*.js' -exec vim {} -s /path/to/format.vim \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment