diff options
| author | Jeff Carr <[email protected]> | 2025-09-10 17:31:25 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-10 17:31:25 -0500 |
| commit | 94bd4728ba260bbda7643e51f1beb9629b6b90d5 (patch) | |
| tree | 6b982dac41a9ee6a9bbaa72eb166b3c2fc7ef4df /argv.go | |
| parent | c3f5588365c1c68a1d87e5a6415eac18876dfce9 (diff) | |
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,6 +19,7 @@ type args struct { Save *EmptyCmd `arg:"subcommand:save" help:"save current window geometries to the your config file"` DumpX *EmptyCmd `arg:"subcommand:dumpx" help:"show your current window geometries"` Dump *EmptyCmd `arg:"subcommand:dump" help:"show your current window geometries"` + List *EmptyCmd `arg:"subcommand:list" help:"list entries in your config file"` Force bool `arg:"--force" help:"try to strong arm things"` Verbose bool `arg:"--verbose" help:"show more output"` Bash bool `arg:"--bash" help:"generate bash completion"` @@ -48,7 +49,7 @@ func (a args) DoAutoComplete(argv []string) { default: if argv[0] == ARGNAME { // list the subcommands here - fmt.Println("--restore save dump dumpx") + fmt.Println("--restore save dump dumpx list") } } os.Exit(0) |
