forked from clipperhouse/gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.go
44 lines (35 loc) · 1.03 KB
/
help.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"os"
"path/filepath"
"strings"
"text/template"
)
func help(c config) error {
cmd := filepath.Base(os.Args[0])
spacer := strings.Repeat(" ", len(cmd))
info := helpInfo{
Name: cmd,
CustomName: c.customName,
Spacer: spacer,
}
if err := helpTmpl.Execute(c.out, info); err != nil {
return err
}
return nil
}
type helpInfo struct {
Name, CustomName, Spacer string
}
var helpTmpl = template.Must(template.New("help").Parse(`
Usage:
{{.Name}} Generate files for types marked with +{{.Name}}.
{{.Name}} list List available typewriters.
{{.Name}} add Add a third-party typewriter to the current package.
{{.Name}} get Download and install imported typewriters.
{{.Spacer}} Optional flags from go get: [-d] [-fix] [-t] [-u].
{{.Name}} watch Watch the current directory for file changes, run {{.Name}}
{{.Spacer}} when detected.
{{.Name}} help Print usage.
Further details are available at http://clipperhouse.github.io/gen
`))