From 33f385692d9083c27b8354ddfe823d812f78ff97 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Mon, 16 Sep 2019 07:21:19 -0600 Subject: [PATCH] Add `-u` alias to long --help only Fixed sharkdp/fd#92, specifically https://github.com/sharkdp/fd/issues/92#issuecomment-522756754 --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index c0b06e1..30d9237 100644 --- a/src/app.rs +++ b/src/app.rs @@ -53,7 +53,7 @@ pub fn build_app() -> App<'static, 'static> { arg("rg-alias-hidden-ignore") .short("u") .multiple(true) - .hidden(true), + .hidden_short_help(true), ) .arg( arg("case-sensitive")