mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-17 17:35:16 +01:00
Formatting
This commit is contained in:
parent
985fab16bb
commit
33feb511f0
1 changed files with 4 additions and 2 deletions
|
@ -42,8 +42,10 @@ pub fn build_app() -> App<'static, 'static> {
|
||||||
.usage("fd [FLAGS/OPTIONS] [<pattern>] [<path>...]")
|
.usage("fd [FLAGS/OPTIONS] [<pattern>] [<path>...]")
|
||||||
.setting(AppSettings::ColoredHelp)
|
.setting(AppSettings::ColoredHelp)
|
||||||
.setting(AppSettings::DeriveDisplayOrder)
|
.setting(AppSettings::DeriveDisplayOrder)
|
||||||
.after_help("Note: `fd -h` prints a short and concise overview while `fd --help` \
|
.after_help(
|
||||||
gives all details.")
|
"Note: `fd -h` prints a short and concise overview while `fd --help` \
|
||||||
|
gives all details.",
|
||||||
|
)
|
||||||
.arg(arg("hidden").long("hidden").short("H"))
|
.arg(arg("hidden").long("hidden").short("H"))
|
||||||
.arg(arg("no-ignore").long("no-ignore").short("I"))
|
.arg(arg("no-ignore").long("no-ignore").short("I"))
|
||||||
.arg(arg("no-ignore-vcs").long("no-ignore-vcs"))
|
.arg(arg("no-ignore-vcs").long("no-ignore-vcs"))
|
||||||
|
|
Loading…
Reference in a new issue