fix(cli): Change -h -> -H for the highlight subcommand to don't clash with the help flag

This commit is contained in:
Andrew Hlynskyi 2021-06-24 12:03:59 +03:00
parent 650ee94800
commit bd0e60240e

View file

@ -154,7 +154,7 @@ fn run() -> Result<()> {
.required(false),
)
.arg(Arg::with_name("scope").long("scope").takes_value(true))
.arg(Arg::with_name("html").long("html").short("h"))
.arg(Arg::with_name("html").long("html").short("H"))
.arg(Arg::with_name("time").long("time").short("t"))
.arg(Arg::with_name("quiet").long("quiet").short("q")),
)