It would be nice if this is solved in the future because sometimes you need groups for some regexes to work but don't really need their content.
Meanwhile I found another workaround that needs less typing and results in shorter regexes too: using non-capturing groups with
?:This of course is only valid for groups where the captured value isn't needed (otherwise use named groups).
The documentation example “(?<play>play|put on) a movie by (?<actor>.+)” could be rewritten like this if you only need the actor:
“(?:play|put on) a movie by (?<actor>.+)” and would be correctly handled by AutoVoice.