I have this code:
bool something;
int foo;
someClass obj;
I do this:
struct State
{
bool something;
int foo;
someClass obj;
};
State state;
I now want have to go do a VA rename for all uses of the members, renaming them like:
before: something
after: state.something
I have to do this for each field individually. It would be nice to have a bulk rename that could perform operations like this automatically.
When you rename, perhaps the wildcard operator could be used to signify where in the rename the original symbol is placed.