Tabs and spaces conversion - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:46:23Z http://stackoverflow.com/feeds/question/100388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/100388/tabs-and-spaces-conversion 4 Tabs and spaces conversion Robse 2008-09-19T08:05:18Z 2008-09-19T08:29:21Z <p>I would like to automatically convert between tabs and spaces for indentation when I commit/update code to/from our repository. I have found the AnyEdit plugin for eclipse, which can convert directories of files. Not bad for a start, but does anybody have more expierience on how to handle this? Or maybe know of an Ant script or something else?</p> http://stackoverflow.com/questions/100388/tabs-and-spaces-conversion/100414#100414 6 Answer by Sietse for Tabs and spaces conversion Sietse 2008-09-19T08:10:13Z 2008-09-19T08:10:13Z <p>Why not just use the code formatter and/or cleanup function? It has settings that take care of that stuff for you. You can even have it run automatically on save.</p> http://stackoverflow.com/questions/100388/tabs-and-spaces-conversion/100427#100427 3 Answer by Chris Charabaruk for Tabs and spaces conversion Chris Charabaruk 2008-09-19T08:12:06Z 2008-09-19T08:12:06Z <p>A bit overkill, and only something to attempt with certain repository products that can handle it, but a hook script to call indent or <a href="http://astyle.sf.net" rel="nofollow">astyle</a> could do the trick. It'll format everyone's code the same way for every file, depending how you write the hook script, and it'd have to be pre-commit of course.</p> http://stackoverflow.com/questions/100388/tabs-and-spaces-conversion/100492#100492 2 Answer by rjray for Tabs and spaces conversion rjray 2008-09-19T08:29:21Z 2008-09-19T08:29:21Z <p>I use the AnyEdit plugin to auto-convert tabs to spaces on the save of a file. I also configure the base text editor (from which pretty much all the others derive) to insert spaces instead of tabs. This sounds redundant, but what it does is ensure that I don't insert any tabs, and any file that I edit that already has tabs will be converted as soon as I save it.</p> <p>Tabs have no place in source code. If someone else looks at the file with their tab-stops set to a different value, they lose most alignment/formatting anyway.</p> <p>(Of course, if you have Makefiles that you edit directly, you'll want to make sure their tabs are retained. But in my projects, if make is used at all the Makefile is derived from a different source, such as a Makefile.PL in Perl.)</p>