I have this in a clap Parser struct:
#[derive(Parser, Debug)]
pub struct Config {
/// Languages to count [default: all known]
#[arg(short, long)]
language: Option<Vec<String>>,
...
This means that on the command line for multiple values I must do this:
app -l a -l b -l c file1.dat
But is it possible to do this with clap (which matches Python's argparse's behavior):
app -l a b c -- file1.dat
?