vote up 10 vote down star
6

There are lots of source-code formatting tools out there. Which ones work best for C++?

I'm interested in command-line tools or other things that can be automatically run when checking code in/out, preferably without needing to launch an editor or IDE.

(If you see the one you like already listed as an answer, vote it up. If it's not there, add it. Thanks.)

flag

5 Answers

vote up 10 vote down check

AStyle, hands down.

It can be customized in great detail for C++ and Java (and others too)

Edit: This is a source code formatting tool... are you looking for a way to make it look good on screen, or to format the code?

link|flag
Nice. I hadn't heard of this tool until now. Works great! – Runcible May 8 at 18:21
neat tool. added to favorites collection. – Johannes Schaub - litb May 8 at 18:22
I'm interested in formatting the code, preferably without needing to run an editor. AStyle is the kind of thing I'm looking for. – Kristopher Johnson May 8 at 18:26
I've used it too - it's pretty good – naumcho May 8 at 18:42
vote up 4 vote down

Look at the project UniversalIndentGUI. You can experiment with several indenters using it: AStyle, Uncrustify, GreatCode, ... and select the best for you. Any of them can be run later from a command line.

link|flag
vote up 1 vote down

I write beautiful code to begin with - I've never had use for such a tool.

(J/K of course, but not so far from the truth.)

link|flag
There's a lot to be said for it, though. I used one style guide that expressed certain things in terms of astyle options, but didn't actually run astyle, so that if there was a reason to break the rules you could. Mostly-consistent formatting is much easier to work with than everyone doing their own thing according to taste and the weather, and only slightly harder to work with than precisely regularly formatted code. – Steve 'onebyone' Jessop May 8 at 19:10
vote up 0 vote down

gvim with good settings... I can send u mine if you want...

link|flag
vote up 0 vote down

Uncrustify has a lot of configurable options. You'll probably need Universal Indent GUI (in Konstantin's reply) as well to configure it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.