summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-25 09:26:18 -0500
committerJeff Carr <[email protected]>2025-10-25 09:26:18 -0500
commit22fcb080548bc57847c2405d724e9f40364fa621 (patch)
tree114dc2941073ba90b5e1a7379fe9d5b280709f5a /structs.go
parent221839190ba296268926589dd50416c3e7cac24a (diff)
still not working
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index 1c42be8..3a0544e 100644
--- a/structs.go
+++ b/structs.go
@@ -8,7 +8,6 @@ type AutoArgs struct {
pb *Argv // the protobuf for the current process
all *Argvs // the history of argv
last *Argv // the pb from the last time the user tried autocomplete
- flags []string // notsure
Err error // store any errors from argv
debug bool // is dubugging on?
setupAuto bool // do shell autocomplete setup
@@ -28,4 +27,5 @@ type AutoArgs struct {
buildtime func() (string, string) // some examples
autoFunc func(*Argv) // also a function for autocomplete
guiFunc func() error // enables Gui functions
+ // flags []string // notsure
}