vote up 2 vote down star

On Linux I am used to running indent -kr ... to indent C files. /usr/bin/indent on Mac OS X 10.5 does not support the -kr option. Does anyone have a ~/.indent.pro file that would produce results closest to K&R style? Thanks!

flag

77% accept rate

2 Answers

vote up 4 vote down

You can always just get the original gnu indent program and use -kr option. This is probably best as you will have exact results on both machines. But still, if you want to use OS X, this are the flags that make up the -kr option:

-nbad -bap -bbo -nbc -br -brs -c33 -cd33 -ncdb -ce -ci4 -cli0 -cp33 -cs -d0 -di1 -nfc1 -nfca -hnl -i4 -ip0 -l75 -lp -npcs -nprs -npsl -saf -sai -saw -nsc -nsob -nss

link|flag
All these options are documented in the GNU indent man page and this is the first thing I tried. indent on OS X does not implement most of these options. – sigjuice Aug 29 at 23:07
Well there you go, then you clearly need gnu indent. – daniel Aug 30 at 17:26
vote up 1 vote down

MacPorts and Fink both have GNU indent packages.

link|flag
@Ned: I hope you don't mind. I always feel that two separate "<package manager> has what you need" posts are redundant. – dmckee Aug 29 at 20:43
@dmckee: no problem. Fink certainly can a viable option, too. – Ned Deily Aug 29 at 21:06

Your Answer

Get an OpenID
or

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