If we write long if
-conditions in objective-c, we do the following (we try to stay below 100 or 120 chars per line):
if ( foo
&& [foo bar]
&& [[foo bar] isKindOfClass:[something class]])
{
[foo something]; ...
}
Meaning: we align all conditions so that the first condition does have two spaces, because of the 'missing' operators. Is it possible to align this in Uncrustify with objective c? I cannot find out how...