summaryrefslogtreecommitdiff
path: root/usage.go
diff options
context:
space:
mode:
authorbrettlangdon <[email protected]>2015-11-21 18:59:40 -0500
committerbrettlangdon <[email protected]>2015-11-21 18:59:40 -0500
commitd45bd4523c98b9190de5cd7a43ee32087451fe5f (patch)
tree3d006d26c56499758ff7a58091e9a66751c02864 /usage.go
parent5db9c77fa32bd444360f8376ddfa7bc209813b20 (diff)
Display help text for positional arguments
Diffstat (limited to 'usage.go')
-rw-r--r--usage.go15
1 files changed, 14 insertions, 1 deletions
diff --git a/usage.go b/usage.go
index 9404015..2c38fe7 100644
--- a/usage.go
+++ b/usage.go
@@ -68,11 +68,24 @@ func (p *Parser) WriteHelp(w io.Writer) {
p.WriteUsage(w)
+ // the width of the left column
+ const colWidth = 25
+
// write the list of positionals
if len(positionals) > 0 {
fmt.Fprint(w, "\npositional arguments:\n")
for _, spec := range positionals {
- fmt.Fprintf(w, " %s\n", spec.long)
+ left := " " + spec.long
+ fmt.Fprint(w, left)
+ if spec.help != "" {
+ if len(left)+2 < colWidth {
+ fmt.Fprint(w, strings.Repeat(" ", colWidth-len(left)))
+ } else {
+ fmt.Fprint(w, "\n"+strings.Repeat(" ", colWidth))
+ }
+ fmt.Fprint(w, spec.help)
+ }
+ fmt.Fprint(w, "\n")
}
}