Skip to content

Instantly share code, notes, and snippets.

@jlfwong
Last active December 19, 2015 22:59
Show Gist options
  • Save jlfwong/6031820 to your computer and use it in GitHub Desktop.
Save jlfwong/6031820 to your computer and use it in GitHub Desktop.
Changing soft tab size in vim

Changing 4 space indentation into 2 space indentation

:set ts=4 noexpandtab | retab! | set ts=2 expandtab | retab!

Changing 4 space indentation in every CoffeeScript file in your current directory

:args ./**/*.coffee | argdo execute "set ts=4 noexpandtab | retab! | set ts=2 expandtab | retab!" | update

Thanks to bamford on #vim for the :retab! trick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment