From 26136be9037e246b1d2cc5503c760e6e2ebb1491 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 6 Jan 2021 22:25:23 +0100 Subject: [PATCH] Add --diagnostics alias --- src/bin/bat/clap_app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/bat/clap_app.rs b/src/bin/bat/clap_app.rs index b2ebb6f7..87cb2a65 100644 --- a/src/bin/bat/clap_app.rs +++ b/src/bin/bat/clap_app.rs @@ -480,6 +480,7 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { .arg( Arg::with_name("diagnostic") .long("diagnostic") + .alias("diagnostics") .hidden_short_help(true) .help("Show diagnostic information for bug reports.") )