Revert changes in help text, add /issues in manpage

This commit is contained in:
David Peter 2022-09-11 21:02:37 +02:00 committed by David Peter
parent cb91a5c848
commit 2569317ee8
2 changed files with 4 additions and 3 deletions

2
doc/fd.1 vendored
View File

@ -456,6 +456,6 @@ $ fd -e py
.RI "Open all search results with vim:"
$ fd pattern -X vim
.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
.BR find (1)

View File

@ -12,8 +12,9 @@ pub fn build_app() -> Command<'static> {
.color(clap_color_choice)
.setting(AppSettings::DeriveDisplayOrder)
.dont_collapse_args_in_usage(true)
.after_help("Bugs can be reported on Github: https://github.com/sharkdp/fd\n\n\
Note: `fd -h` prints a short and concise overview while `fd --help` gives all details.",
.after_help(
"Note: `fd -h` prints a short and concise overview while `fd --help` gives all \
details.",
)
.arg(
Arg::new("hidden")