#212 : added -p as an alias for --style=plain

pull/227/head
ms2300 6 years ago committed by David Peter
parent 627181bcb6
commit 81771432fb

@ -170,6 +170,16 @@ impl App {
components to display (e.g. 'numbers,changes,grid') or a \
pre-defined style ('full')",
),
).arg(
Arg::with_name("plain")
.overrides_with("plain")
.short("p")
.conflicts_with("style")
.help("Show plain style (alias for '--style=plain').")
.long_help(
"Only show plain style, no decorations. This is an alias for \
'--style=plain'",
),
).arg(
Arg::with_name("number")
.long("number")
@ -384,6 +394,8 @@ impl App {
HashSet::new()
} else if matches.is_present("number") {
[OutputComponent::Numbers].iter().cloned().collect()
} else if matches.is_present("plain") {
[OutputComponent::Plain].iter().cloned().collect()
} else {
values_t!(matches.values_of("style"), OutputComponent)?
.into_iter()

Loading…
Cancel
Save