question about continuation indent in code style
Hi,
I have a function with a long parameter list. for example,
fprintf(fout, “some text here”, aj, advco, mkt, mkq, eto);
I would like to reformat the above statement
1) line break before opening brace and align the brace with the previous token
2) for parameter list, linebreak after comma and indented
3) closing brace is aligned with opening brace
as follows:
fprintf
(
fout,
“some text here”,
aj,
advco,
mkt,
mkq,
eto
);
I set continuation indent to 0 but it affects all continuation indents including braces as follows:
fprintf
(
fout,
“some text here”,
aj,
advco,
mkt,
mkq,
eto
);
is there any setting for this style?
请先登录再写评论。