vote up 1 vote down star
1

We all know that deadlines and/or critical bugfixes and make us forget a bit about source formatting guidelines. Or sometimes you need to work with 3rd party source code which seems to have been coded by someone who doesn't know the meaning of whitespace and readability. What is your favorite tool to tabulate your code (or 3rd party code) to your specification?

flag

12 Answers

vote up 0 vote down check

One can also use Uncrustify and the UniversalIndentGUI, also good for mass tagging.

link|flag
vote up 0 vote down

Python itself.... and a vote for Resharper

link|flag
vote up 0 vote down

My favorite tool is indent. It is available off-the shelf in most Unix distributions. It has tens of options to accommodate most C style conventions. On Windows it can be easily installed through Cygwin. Having said that, automated code formatting should be your last resort. No tool can format code as well as a good programmer.

link|flag
vote up 0 vote down

Heard good things about Artistic Style.

link|flag
vote up 0 vote down

HTMLtidy is great for HTML formatting.

link|flag
vote up 1 vote down

Emacs:

C-x h (select all)

C-M-\ (indent region)

link|flag
vote up 0 vote down

I personally use PolyStyle as it supports many, many languages, but I'm curious about alternatives, hence the question.

link|flag
vote up 2 vote down

I like Visual Studio's autoformat feature. It's all mass-market and The Man's Tool, but hey, it works & I can read their formatting.

link|flag
vote up 2 vote down

Resharper's built in tool is pretty awesome.

link|flag
vote up 1 vote down

Perl is the language I use most, and perltidy does a great job.

link|flag
vote up 1 vote down

My IDE, IntelliJ, does this while I check in or with a keystroke.

link|flag
vote up 0 vote down

For Delphi I like Delforexp. Simple and quite fast.

link|flag
I absolutely cannot get this to work in Delphi 2007. I install it and it seems fine until I try to use it. I then spend about 30 minutes trying to close all the exceptions before it finally causes Delphi to close. :( – John Kraft Oct 10 '08 at 21:36
Hm have not tried it on 2007. But if I magage to get it to work I let you know. – Gamecat Oct 10 '08 at 21:43

Your Answer

Get an OpenID
or

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