From e626b978e768dabbdfc1f10d22cf6009015ef31d 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 950ec1ef6..55d30c6e2 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")