diff options
| author | Jeff Carr <[email protected]> | 2025-10-18 10:23:24 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-18 10:23:24 -0500 |
| commit | 317ee925ef78d5eac752232dd78bd24385141bf6 (patch) | |
| tree | 475ad026ad4c19c1290f504c464a6db96b719848 /argv.custom.go | |
| parent | c5b9bef5ed74c4180da6e6425d1bfd79f3a57f5c (diff) | |
lots more is working
Diffstat (limited to 'argv.custom.go')
| -rw-r--r-- | argv.custom.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/argv.custom.go b/argv.custom.go index 066d80a..1e8abac 100644 --- a/argv.custom.go +++ b/argv.custom.go @@ -1,5 +1,11 @@ package main +import ( + "os" + + "go.wit.com/lib/protobuf/argvpb" +) + // this is where to customize argv for your application var APPNAME string = "basicwindow" @@ -13,3 +19,16 @@ func (a args) Description() string { This basicwindow example demonstrates multiple windows ` } + +// sends the strings to bash or zsh that will be your options +func (a args) SendCompletionStrings(pb *argvpb.Argv) { + if pb.Cmd == "" { + // these are base autocomplete strings + matches := []string{"--bash", "--version", "demo", "gui"} + pb.SendStrings(matches) + } else { + // autogenerate the strings for the subcommand using github.com/alexflint/go-arg + pb.GenerateSubCommandStrings(pb.Goargs...) + } + os.Exit(0) +} |
