Remove "show" argument, as the short key "s" was duplicated

This commit is contained in:
Matthias Beyer 2016-04-09 14:46:46 +02:00
parent 1fc7b64171
commit 93f5453c5c

View file

@ -80,12 +80,6 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.required(false) .required(false)
.help("List external link")) .help("List external link"))
.arg(Arg::with_name("show")
.long("show")
.short("s")
.takes_value(false)
.required(false)
.help("List external link (alias for --list)"))
) )
} }