summaryrefslogtreecommitdiff
path: root/complete.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-27 10:44:40 -0500
committerJeff Carr <[email protected]>2025-10-27 10:44:40 -0500
commitcd68efa780820e0f5c5705f95336b82daaaf8e57 (patch)
tree2ffb6df39a23b3cff28b5e8859731e3ef00cec89 /complete.go
parentbb5afb8cc5f2b117fefde6c332c423e9c3335a1f (diff)
hopefully this doesn't break anythingv0.5.35
Diffstat (limited to 'complete.go')
-rw-r--r--complete.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/complete.go b/complete.go
index abc293e..b16d7a5 100644
--- a/complete.go
+++ b/complete.go
@@ -46,7 +46,7 @@ func (args) MatchClean() string {
// sends the strings to bash or zsh that will be your options
func (a args) DoAutoComplete() error {
if argvpb.PB.GetCmd() == "" {
- base := []string{"--bash", "--proto", "--regret", "--debug", "--renumber", "--reformat", "--delete", "--dry-run"}
+ base := []string{"--bash", "--proto", "--regret", "--debug", "--renumber", "--reformat", "--delete", "--dry-run", "clean"}
fmt.Fprintf(argvpb.Stdout, " %s", strings.Join(base, " "))
return nil
}