views:

21

answers:

0

Hi everyone, It would be nice if we would have the feature 'align named parameters' for method calls? Eg. I have a method:

void myMethod(int arg1, int argWithLongerName) 
{ 
    //do something 
}

and I call:

myMethod(
  arg1:1, 
  argWithLongerName:2);

I want it to be formatted automatically as below:

myMethod(
  arg1:              1, 
  argWithLongerName: 2);

This is similar to the feature 'Align assignment' which is done nicely already by Productivity Power Tools!

If you know ones that has this, please share!