formatting - Change the format/style of existing code in Visual Studio; is it possible? -
i have searched , down this, allthe answers find changing auto formatting options visual studio new code. i'm wonder if possible change format of existing code. example:
if(myboolean) { return 1; } else { return 0; }
becomes:
if(myboolean) { return 1; } else { return 0; }
is there built in feature missing, or perhaps extension can recommend?
for vs2012 tools / options / text editor /all languajes/ tabs , should select (none, block or smart). can choose size of tabs.
https://msdn.microsoft.com/en-us/library/ms165330(v=vs.100).aspx. hope helps.
Comments
Post a Comment