Skip to content

Commit e19469f

Browse files
authored
Merge pull request #5615 from epage/wrap
fix(help): Properly wrap subcommand about
2 parents e1f6320 + 360bb3b commit e19469f

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

clap_builder/src/output/help_template.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ impl<'cmd, 'writer> HelpTemplate<'cmd, 'writer> {
650650

651651
let spaces = if next_line_help {
652652
TAB.len() + NEXT_LINE_INDENT.len()
653-
} else if let Some(true) = arg.map(|a| a.is_positional()) {
653+
} else if arg.map(|a| a.is_positional()).unwrap_or(true) {
654654
longest + TAB_WIDTH * 2
655655
} else {
656656
longest + TAB_WIDTH * 2 + 4 // See `fn short` for the 4

tests/builder/help.rs

+20-2
Original file line numberDiff line numberDiff line change
@@ -566,10 +566,19 @@ fn wrapped_help() {
566566
.long("no-git-push")
567567
.action(ArgAction::SetTrue)
568568
.help("Do not push generated commit and tags to git remote"),
569+
)
570+
.subcommand(
571+
Command::new("sub1")
572+
.about("One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen")
569573
);
570574

571575
let expected = str![[r#"
572-
Usage: test [OPTIONS]
576+
Usage: test [OPTIONS] [COMMAND]
577+
578+
Commands:
579+
sub1 One two three four five six seven eight nine ten eleven
580+
twelve thirteen fourteen fifteen
581+
help Print this message or the help of the given subcommand(s)
573582
574583
Options:
575584
-a, --all Also do versioning for private crates (will
@@ -614,10 +623,19 @@ fn unwrapped_help() {
614623
.long("no-git-push")
615624
.action(ArgAction::SetTrue)
616625
.help("Do not push generated commit and tags to git remote"),
626+
)
627+
.subcommand(
628+
Command::new("sub1")
629+
.about("One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen")
617630
);
618631

619632
let expected = str![[r#"
620-
Usage: test [OPTIONS]
633+
Usage: test [OPTIONS] [COMMAND]
634+
635+
Commands:
636+
sub1 One two three four five six seven eight nine ten eleven
637+
twelve thirteen fourteen fifteen
638+
help Print this message or the help of the given subcommand(s)
621639
622640
Options:
623641
-a, --all Also do versioning for private crates (will

0 commit comments

Comments
 (0)