diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 20:26:04 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 20:26:04 -0500 |
| commit | fe20a82a0af45285d551fdacde53d3ed053d4022 (patch) | |
| tree | bde6c10338fad3b2da4072025ea97d923775e8a7 /complete.go | |
| parent | b9b425d5a329827b480f10c21eb8131e9ac12bb6 (diff) | |
cleanup on aisle 9v0.25.105
Diffstat (limited to 'complete.go')
| -rw-r--r-- | complete.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/complete.go b/complete.go index 6189b1c..1f171bc 100644 --- a/complete.go +++ b/complete.go @@ -43,7 +43,7 @@ func (args) Exit() { } func (args) MustParse() error { - me.pp = arg.MustParse(&argv) + me.pp = arg.MustParseArgv(&argv) return nil } @@ -111,7 +111,7 @@ func (args) Match() bool { if argvpb.PB.GetCmd() == "" { // these are base autocomplete strings matches := []string{"clean", "commit", "merge", "patch", "normal", "pull", "rebuild", "generate", "config", "cache"} - matches = append(matches, "show", "add", "fixer", "dev", "verify", "mode", "gui", "whatchanged") + matches = append(matches, "show", "add", "dev", "verify", "mode", "gui", "whatchanged") matches = append(matches, "--version", "--force", "--all", "--verbose", "--help") fmt.Fprintf(argvpb.Stdout, "%s", strings.Join(matches, " ")) return true |
