Does visual assistance insert extra spaces?

I am using a trial version of Visual Assist X on VS2010 Pro.

When I retrieve a method or change the refactoring of a method signature, it gives me the following:

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

However, I would be very grateful if this would give me this:

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

No extra spaces. Is there any way to fix this?

+3
source share
1 answer

The interval is defined in VA fragments, the names of which begin with "Refactor" - see "Editing VA Fragments" in the VA documentation. Similar questions have been raised in the tomato support forum here and here .

+3
source

Source: https://habr.com/ru/post/1744194/


All Articles