1
0
mirror of https://github.com/o2sh/onefetch synced 2024-07-07 19:29:18 +00:00

Shorter CLI flags

--no-merge-commits to --no-merges
--no-color-palette to --no-palette
This commit is contained in:
o2sh 2021-06-18 20:57:31 +02:00
parent fadf5158bb
commit aa80dc96cd

View File

@ -199,13 +199,13 @@ impl Cli {
.help("Turns off bold formatting."),
)
.arg(
Arg::with_name("no-color-palette")
.long("no-color-palette")
Arg::with_name("no-palette")
.long("no-palette")
.help("Hides the color palette."),
)
.arg(
Arg::with_name("no-merge-commits")
.long("no-merge-commits")
Arg::with_name("no-merges")
.long("no-merges")
.help("Ignores merge commits."),
)
.arg(
@ -262,8 +262,8 @@ impl Cli {
_ => unreachable!(),
};
let no_bold = matches.is_present("no-bold");
let no_merges = matches.is_present("no-merge-commits");
let no_color_palette = matches.is_present("no-color-palette");
let no_merges = matches.is_present("no-merges");
let no_color_palette = matches.is_present("no-palette");
let print_languages = matches.is_present("languages");
let print_package_managers = matches.is_present("package-managers");
let iso_time = matches.is_present("isotime");