Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 VA Snippet: $ParameterList$

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
azur Posted - Jul 14 2011 : 05:26:16 AM
Can I configure $ParameterList$?

I prefer following declaration:

bool Test
         ( int i_nFirst       // 1. 
         , int i_nSecond      // 2. 
         , int i_nThird       // 3. 
         );                   // [all the same]


The Result from "Refactor/Create Implementation" is:

bool Test( int i_nFirst /* 1. */ , int i_nSecond /* 2. */ , int i_nThird /* 3. */ )
{
...
}

At first - there is a additional space between the parameter and the comma. This is independently from parameter-comments.

At second - I wish the the implementation like this:

bool Test
   ( int i_nFirst       // 1.
   , int i_nSecond      // 2.
   , int i_nThird       // 3.
   )                    // [all the same]
{
...
} 


How can I do this?
1   L A T E S T    R E P L I E S    (Newest First)
accord Posted - Jul 14 2011 : 2:01:12 PM
Unfortunately, this is a known problem and will be improved at some point:

case=1631

Regarding parameter list, you cannot configure it, but case 1631 is to preserve multi-line declarations and comments.

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