#clap v3 - when no subcommands match, use a default?
3 messages · Page 1 of 1 (latest)
I think to get the parser to do that you want #[clap(allow_external_subcommands)] https://docs.rs/clap/latest/clap/builder/struct.App.html#method.allow_external_subcommands
that won't direct it to a specific subcommand, just become args of the parent, though