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