How do you control comment reformatting for comments on array initialisers?
The reformatter screws up comments like this:
char[] entityValues = {
34
/* " */, 38
/* & */, 60
/* < */, 62
It should look like:
char[] entityValues = {
34 /* " */,
38 /* & */,
60 /* < */,
I have been unsuccessful at configuring the reformatter to get the effect I want. Is it possible? Is there a workaround? Is there a way to protect just a part of a file from reformatting?
请先登录再写评论。