I've been using VAX for almost 6 years at this point and I recently developed a need for this.
For instance in C# if I have an enum as such:
enum Colors
{
Red,
Green,
Blue
}
and a function that I'm starting to write
void DoStuff(Color c) { ... }
And I start writing the following:
switch(c)
{
I'd like there to be a way to auto populate all the cases as such:
switch(c)
{
case Color.Red:
case Color.Green:
case Color.Blue:
default:
}
Maybe have an option for adding a break or a throw in the auto generated cases.
Thanks!