Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Feature Requests
 Auto format brackets

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
RobertG Posted - May 15 2014 : 03:20:22 AM
Hi,

Using VS 2013 premium with VA 2029

After understanding that this feature is not supported currently, I would like to suggest it as a new feature
http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11853

lets say i have a property:
public List<Process> ProcessList
{
get { return _processList; }
set { _processList = value; }
}

I would like to be able to press enter before the opening bracket of the get/set and get the following:

public List<Process> ProcessList
{
get
{
return _processList;
}
set
{
_processList = value;
}
}

It is very similar to the way VA fixes spacing when closing brackets.

Thanks,
Robert
1   L A T E S T    R E P L I E S    (Newest First)
feline Posted - May 16 2014 : 11:54:26 AM
If you are generating the get and set methods via Encapsulate Field then you can set the formatting that VA will use. For existing code, have you looked at the new code formatting settings that VS2013 has added, in the IDE options dialog, in the C++ text editor settings?

We don't have any current plans to do code formatting, partly due to all of the settings and options this would require to do the job properly. The number of options VS2013 has added for formatting gives a taste of this.

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000