diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 13:12:33 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 13:12:33 -0500 |
| commit | a9af6f2ed2263f11bb13d2220df11402e269cef9 (patch) | |
| tree | 9cdd9a625e26169405547281addcff33d2a91e1c /argv.custom.go | |
| parent | a18f8af684565106917207df22e8da06585e45d2 (diff) | |
isolate Save() to a single place
Diffstat (limited to 'argv.custom.go')
| -rw-r--r-- | argv.custom.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.custom.go b/argv.custom.go index 93ca5ec..63080d1 100644 --- a/argv.custom.go +++ b/argv.custom.go @@ -85,7 +85,7 @@ func (c CleanCmd) Match(partial string) []string { func (a args) SendCompletionStrings(pb *argvpb.Argv) { if pb.Cmd == "" { // these are base autocomplete strings - matches := []string{"clean", "commit", "merge", "patch", "normal", "pull", "rebuild", "generate"} + matches := []string{"clean", "commit", "merge", "patch", "normal", "pull", "rebuild", "generate", "config"} matches = append(matches, "show", "add", "fixer", "dev", "verify", "mode", "gui", "whatchanged") matches = append(matches, "--version", "--force", "--all") pb.SendStrings(matches) |
