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?