Does any one know of a way to control how Visual Studio handles curly braces in Html view?
Type…
<% if (true) { %>
Then
<% { %>
And visual studio will auto format it as such.
<% if (true) { %> <% } %>
Not a major issue but nest a few of these using foreach and it gets messy.
Well its not really a sollution, but what i do is that i hit Ctrl+x to undo, and it will undo the formatting – there is not another way that i know off, other that changed it in all C# documents.