This change also comma-separated identifiers inside parentheses as a
possible function declaration.
When using the always break after return type setting:
Before:
SomeType funcdecl(SomeType);
SomeType funcdecl(SomeType, OtherType);
After:
SomeType
funcdecl(SomeType);
SomeType
funcdecl(SomeType, OtherType);
Depends on D87007 (to apply cleanly)
how hard would it be to do the TODO?