mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-16 08:58:26 +01:00
Revert changes in help text, add /issues in manpage
This commit is contained in:
parent
cb91a5c848
commit
2569317ee8
2 changed files with 4 additions and 3 deletions
2
doc/fd.1
vendored
2
doc/fd.1
vendored
|
@ -456,6 +456,6 @@ $ fd -e py
|
||||||
.RI "Open all search results with vim:"
|
.RI "Open all search results with vim:"
|
||||||
$ fd pattern -X vim
|
$ fd pattern -X vim
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Bugs can be reported on Github: https://github.com/sharkdp/fd
|
Bugs can be reported on GitHub: https://github.com/sharkdp/fd/issues
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR find (1)
|
.BR find (1)
|
||||||
|
|
|
@ -12,8 +12,9 @@ pub fn build_app() -> Command<'static> {
|
||||||
.color(clap_color_choice)
|
.color(clap_color_choice)
|
||||||
.setting(AppSettings::DeriveDisplayOrder)
|
.setting(AppSettings::DeriveDisplayOrder)
|
||||||
.dont_collapse_args_in_usage(true)
|
.dont_collapse_args_in_usage(true)
|
||||||
.after_help("Bugs can be reported on Github: https://github.com/sharkdp/fd\n\n\
|
.after_help(
|
||||||
Note: `fd -h` prints a short and concise overview while `fd --help` gives all details.",
|
"Note: `fd -h` prints a short and concise overview while `fd --help` gives all \
|
||||||
|
details.",
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("hidden")
|
Arg::new("hidden")
|
||||||
|
|
Loading…
Reference in a new issue