From bd0e60240eccf91b4573e1a268d8d12a98741e67 Mon Sep 17 00:00:00 2001 From: Andrew Hlynskyi Date: Thu, 24 Jun 2021 12:03:59 +0300 Subject: [PATCH] fix(cli): Change -h -> -H for the highlight subcommand to don't clash with the help flag --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index af25c2fd..983fd1e4 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -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")), )