diff options
| author | Jeff Carr <[email protected]> | 2025-09-25 01:09:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-25 01:09:19 -0500 |
| commit | 4cd015b017904b25c764b64b86197e4fbbd57790 (patch) | |
| tree | 06d3ba1ad27514dd0f711bcb0a32cc32c5011557 /argv.go | |
| parent | a478df2dccc3a429b5b4db6f45fb07b9e00bcea5 (diff) | |
rearrange
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -168,10 +168,6 @@ forge -- a tool to manage lots of git repos. forge includes a GUI and TUI. ` } -func (args) Appname() string { - return ARGNAME -} - func ifBlank(arg string) bool { if arg == "''" { // if empty, the user has not typed something @@ -180,6 +176,10 @@ func ifBlank(arg string) bool { return false } +func (args) Appname() string { + return ARGNAME +} + func (a args) DoAutoComplete(pb *prep.Auto) { if pb.Cmd == "" { pb.Autocomplete3([]string{"checkout", "clean", "commit", "config", "gui", "merge", "normal", "patch", "pull", "show"}) |
