I want to be able to change the case used by the Encapsulate Field refactor snippet. For example, if I encapsulate the following member variable:
int baud_rate_;
I will get the following:
int Baud_rate() const { return baud_rate_; }
void Baud_rate(int val) { baud_rate_ = val; }
I want to be able to change the case, so the methods start with a lower-case character, e.g.:
int baud_rate() const { return baud_rate_; }
void baud_rate(int val) { baud_rate_ = val; }
How about making this simple - using the 'Edit Snippets' option you could simply change $GeneratedPropertyName$ to $generatedPropertyName$ (note the lower-case 'g' at the start). This would 'tell' VA-X to start the method name with a lower-case character.
Some support for modifying the case used by VA-X refactoring snippets would save me a LOT of time.