summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-28 05:09:05 -0500
committerJeff Carr <[email protected]>2025-10-28 05:09:05 -0500
commitd0b5b0842064a38a05a8023734bd7105bb2ab90f (patch)
treeb06a7bd184a37b0a16bf60f8aa52972c71cbff13 /argv.go
parentb339658a81d79a4cfb00797d196d3aace08d2513 (diff)
cleaner argv options. argv/go-args help working again
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 88f3614..9904e52 100644
--- a/argv.go
+++ b/argv.go
@@ -13,7 +13,6 @@ type args struct {
Cache *CacheCmd `arg:"subcommand:cache" help:"chose the cache of repos to work with"`
Clean *EmptyCmd `arg:"subcommand:clean" help:"'git clean' + reset repos to original state"`
Commit *CommitCmd `arg:"subcommand:commit" help:"'git commit'"`
- Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"`
Merge *MergeCmd `arg:"subcommand:merge" help:"merge branches"`
Normal *EmptyCmd `arg:"subcommand:normal" help:"shortcut to 'forge mode normal'"`
@@ -32,6 +31,7 @@ type args struct {
Force bool `arg:"--force" help:"try to strong-arm things"`
Verbose bool `arg:"--verbose" help:"show more output than usual"`
Fix bool `arg:"--fix" help:"try to make repairs"`
+ // Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
}
type EmptyCmd struct {