views:

18

answers:

1

I'm using Visual Assist X trial on VS2010 Pro.

When I do extract method or modify method signature refactorings it gives me this:

void Solver::Work( Stack &s, Board &b )

However I would really appreciate if it gave me this:

void Solver::Work(Stack &s, Board &b)

No extra spaces. Is there a way to set this?

A: 

The spacing is defined in the VA Snippets whose titles start with "Refactor" - see "Editing VA Snippets" in the VA documentation. Similar questions have been raised on the Whole Tomato support forum here and here.

sean e