mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
Merge #2058
2058: Add blank line between items in long help r=pksunkara a=mkantor Co-authored-by: Matt Kantor <the.matt.kantor@gmail.com>
This commit is contained in:
commit
9185366420
3 changed files with 43 additions and 13 deletions
|
@ -599,10 +599,10 @@ impl<'help> Arg<'help> {
|
|||
/// The above example displays
|
||||
///
|
||||
/// ```text
|
||||
/// helptest
|
||||
/// prog
|
||||
///
|
||||
/// USAGE:
|
||||
/// helptest [FLAGS]
|
||||
/// prog [FLAGS]
|
||||
///
|
||||
/// FLAGS:
|
||||
/// --config
|
||||
|
@ -616,7 +616,7 @@ impl<'help> Arg<'help> {
|
|||
///
|
||||
/// -V, --version
|
||||
/// Prints version information
|
||||
///
|
||||
/// ```
|
||||
/// [`Arg::about`]: ./struct.Arg.html#method.about
|
||||
#[inline]
|
||||
pub fn long_about(mut self, h: &'help str) -> Self {
|
||||
|
|
|
@ -454,7 +454,7 @@ impl<'help, 'app, 'parser, 'writer> Help<'help, 'app, 'parser, 'writer> {
|
|||
}
|
||||
self.none(part)?;
|
||||
}
|
||||
if !prevent_nlh && !help.contains('\n') && (nlh || self.force_next_line) {
|
||||
if !prevent_nlh && (nlh || self.force_next_line) {
|
||||
self.none("\n")?;
|
||||
}
|
||||
Ok(())
|
||||
|
|
|
@ -269,6 +269,7 @@ FLAGS:
|
|||
-h, --help
|
||||
Prints help
|
||||
information
|
||||
|
||||
-V, --version
|
||||
Prints
|
||||
version
|
||||
|
@ -354,6 +355,24 @@ FLAGS:
|
|||
Prints version
|
||||
information";
|
||||
|
||||
static ISSUE_1642: &str = "prog
|
||||
|
||||
USAGE:
|
||||
prog [FLAGS]
|
||||
|
||||
FLAGS:
|
||||
--config
|
||||
The config file used by the myprog must be in JSON format
|
||||
with only valid keys and may not contain other nonsense
|
||||
that cannot be read by this program. Obviously I'm going on
|
||||
and on, so I'll stop now.
|
||||
|
||||
-h, --help
|
||||
Prints help information
|
||||
|
||||
-V, --version
|
||||
Prints version information";
|
||||
|
||||
static CUSTOM_VERSION_AND_HELP: &str = "customize 0.1
|
||||
Nobody <odysseus@example.com>
|
||||
You can customize the version and help text
|
||||
|
@ -1766,3 +1785,14 @@ fn help_required_and_no_args() {
|
|||
.setting(AppSettings::HelpRequired)
|
||||
.get_matches();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn issue_1642_long_help_spacing() {
|
||||
let app = App::new("prog").arg(Arg::new("cfg").long("config").long_about(
|
||||
"The config file used by the myprog must be in JSON format
|
||||
with only valid keys and may not contain other nonsense
|
||||
that cannot be read by this program. Obviously I'm going on
|
||||
and on, so I'll stop now.",
|
||||
));
|
||||
assert!(utils::compare_output(app, "prog --help", ISSUE_1642, false));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue