We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ba5df commit a22c833Copy full SHA for a22c833
1 file changed
command.go
@@ -19,8 +19,8 @@ import (
19
)
20
21
const (
22
- helpBufferSize = 1024 // helpBufferSize is sufficient to hold most command --help text.
23
- versionBufferSize = 256 // versionBufferSize is sufficient to hold all the --version text.
+ helpBufferSize = 2048 // helpBufferSize is sufficient to hold most command --help text.
+ versionBufferSize = 256 // versionBufferSize is sufficient to hold a full --version text.
24
defaultVersion = "dev" // defaultVersion is the version shown in --version when the user has not provided one.
25
defaultShort = "A placeholder for something cool" // defaultShort is the default value for cli.Short.
26
0 commit comments