File tree 5 files changed +15
-6
lines changed
5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -2047,7 +2047,7 @@ func TestApp_Run_CommandSubcommandHelpName(t *testing.T) {
2047
2047
t .Errorf ("expected %q in output: %q" , expected , output )
2048
2048
}
2049
2049
2050
- expected = "base foo command [command options] [arguments...]"
2050
+ expected = "base foo [command options] [arguments...]"
2051
2051
if ! strings .Contains (output , expected ) {
2052
2052
t .Errorf ("expected %q in output: %q" , expected , output )
2053
2053
}
Original file line number Diff line number Diff line change @@ -136,7 +136,10 @@ var SubcommandHelpTemplate = `NAME:
136
136
{{template "helpNameTemplate" .}}
137
137
138
138
USAGE:
139
- {{if .UsageText}}{{wrap .UsageText 3}}{{else}}{{.HelpName}} {{if .VisibleFlags}}command [command options]{{end}}{{if .ArgsUsage}} {{.ArgsUsage}}{{else}}{{if .Args}} [arguments...]{{end}}{{end}}{{end}}{{if .Description}}
139
+ {{template "usageTemplate" .}}{{if .Category}}
140
+
141
+ CATEGORY:
142
+ {{.Category}}{{end}}{{if .Description}}
140
143
141
144
DESCRIPTION:
142
145
{{template "descriptionTemplate" .}}{{end}}{{if .VisibleCommands}}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ var helpCommand = &Command{
54
54
cCtx = cCtx .parentContext
55
55
}
56
56
57
- // Case 4. $ app hello foo
57
+ // Case 4. $ app help foo
58
58
// foo is the command for which help needs to be shown
59
59
if argsPresent {
60
60
return ShowCommandHelp (cCtx , firstArg )
Original file line number Diff line number Diff line change @@ -83,7 +83,10 @@ var SubcommandHelpTemplate = `NAME:
83
83
{{template "helpNameTemplate" .}}
84
84
85
85
USAGE:
86
- {{if .UsageText}}{{wrap .UsageText 3}}{{else}}{{.HelpName}} {{if .VisibleFlags}}command [command options]{{end}}{{if .ArgsUsage}} {{.ArgsUsage}}{{else}}{{if .Args}} [arguments...]{{end}}{{end}}{{end}}{{if .Description}}
86
+ {{template "usageTemplate" .}}{{if .Category}}
87
+
88
+ CATEGORY:
89
+ {{.Category}}{{end}}{{if .Description}}
87
90
88
91
DESCRIPTION:
89
92
{{template "descriptionTemplate" .}}{{end}}{{if .VisibleCommands}}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ var AppHelpTemplate = `NAME:
35
35
{{template "helpNameTemplate" .}}
36
36
37
37
USAGE:
38
- {{if .UsageText}}{{wrap .UsageText 3}}{{else}}{{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}{{if .Args}}[arguments...]{{end}}{{end}}{{end}}{{if .Version}}{{if not .HideVersion}}
38
+ {{if .UsageText}}{{wrap .UsageText 3}}{{else}}{{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}}{{if .ArgsUsage}} {{.ArgsUsage}}{{else}}{{if .Args}} [arguments...]{{end}}{{end}}{{end}}{{if .Version}}{{if not .HideVersion}}
39
39
40
40
VERSION:
41
41
{{.Version}}{{end}}{{end}}{{if .Description}}
@@ -136,7 +136,10 @@ var SubcommandHelpTemplate = `NAME:
136
136
{{template "helpNameTemplate" .}}
137
137
138
138
USAGE:
139
- {{if .UsageText}}{{wrap .UsageText 3}}{{else}}{{.HelpName}} {{if .VisibleFlags}}command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}{{if .Args}}[arguments...]{{end}}{{end}}{{end}}{{if .Description}}
139
+ {{template "usageTemplate" .}}{{if .Category}}
140
+
141
+ CATEGORY:
142
+ {{.Category}}{{end}}{{if .Description}}
140
143
141
144
DESCRIPTION:
142
145
{{template "descriptionTemplate" .}}{{end}}{{if .VisibleCommands}}
You can’t perform that action at this time.
0 commit comments