On Thursday 01 of January 2015 11:02:13 Timothy Pearson wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512
On 01/01/2015 04:27 AM, Timothy Pearson wrote:
On 2014/12/31 02:13 PM, Timothy Pearson wrote:
> Yes, we can wait a few days for your input. :-) > > The vast majority of this file was written in the style I prefer: > https://git.trinitydesktop.org/cgit/tdelibs/tree/tdecore/tdehw/tdeha >rdwaredevices.cpp?id=f27e71dcb162e37234ea98570379f60f8afdd8ea
I noticed on quick glance that at least one alternate styles snuck in
> over time, so the revision ID specified in that link is an older > version without many of the changes that > introduced those alternate styles. > > I find it very easy to read on mutiple screens, on the Web and in > Kate, from small laptops up to my main > workstation. Comments are of course welcome!
If my vote still counts, I have only one request: please do not use 8 spaces for tabs. I prefer only 2 spaces, but 4 is acceptable.
Darrell
I prefer hard tabs, this way each developer can set the space the way they want to see it.
Tim
Tim, just wondering. What tool do you use to reformat existing code? Cheers Michele
AStyle. In fact I was working on this in late 2012: https://git.trinitydesktop.org/cgit/scripts/tree/astyle
Tim
Hi Tim, well, first of all Happy New Year.
I had a closed look at astyle and played around with it quite a while. I have attached an alternative option file, which generates code closer to my favorite style. These are just my preferences, it doesn't mean we need to use it exactly as it is. In particular the most important points are:
- style: I prefer broken parenthesis instead of attached ones
- hard tabs: ok with that. But use the force-tab option
- no indent-cases blocks, too much indentations.
- indent preprocessor defines on multiple lines
- the "--break-blocks" is somehow optional. I have included it, but even
without it will do. 6) --pad-oper, --pad-header, --unpad-paren: I prefer something like if (a == b) rather than if( a==b ) 7) "--delete-empty-lines" ok if "--break-blocks" is used
Everything else is quite minor.
I have also attached the outputs created using the script currently in GIT and mine. Don't bother about the code itself, it was just made up for testing.
Cheers Michele
Just one quick comment; I still need to carefully review your other suggestions and comment on them later:
Detached braces are a big problem for me, severely reducing code legibility. Is this something you are flexible on or is code like this:
void foo() { // Do stuff }
hard for you to read?
Thanks!
Tim
In this respect, my sympathy are for the Michele proposal.
For me parentheses at the end of the line are "invisible". For me, the better when I see both brackets incised in the same column than when losing at end of a line. When I need to quickly see the beginning of the block, easier to see clear bracket than "some" text as if, else, while, for, function name,... just something ambiguous.
Just my two cents.