Dear sharp developers,
I am using Sharp Develop 3.0, and some of the behaviour of the smart indenter is annoying me a little bit. Specifically, the behaviour it displays when I split statements over multiple lines. For example:
Console.WriteLine("{0}{1}{2}{3}", "This ",
"is ", "an ", "example.");
It automatically begins the next line wherever the first parameter was entered. This may seem quite clever at first, but it isn't. I would prefer Visual Studio-like behaviour, where second and subsequent lines are indented once in relation to the first line. For example:
Console.WriteLine("{0}{1}{2}{3}", "This ",
"is ", "an ", "example.");
Is there a way I can change the behaviour of the smart indenter?