How to format invocation arguments without indenting before parentheses
I would like the parentheses and indenting for invocation arguments, when chopped, to format the same as my braces layout "At next line (BSD style)" but instead I am getting the parentheses formatted like "At next line indented (Whitesmiths style)"
For example, invocations are being formatted like this:
return MethodOne
(
argOne,
MethodTwoReturnsArgumentForMethodOne
(
argTwo,
argThree,
argFour
)
);
But, I would like them formatted like this:
return MethodOne
(
argOne,
MethodTwoReturnsArgumentForMethodOne
(
argTwo,
argThree,
argFour
)
);
How can this be achieved?
Please sign in to leave a comment.
I deleted all R# settings, set my tab settings in VS-options, configured R#.
Now behaves as expected!!!
seems to be conflict with tab settings in VS-options.