summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 11:44:39 -0500
committerJeff Carr <[email protected]>2025-10-17 11:44:39 -0500
commit923ab262f624bd50c543062c4f3f2db9e577d5fb (patch)
tree0a028b65e2800a291e44ec7c1c945aa30f111897 /main.go
parent0be9867c3193033977951e853445464fb9e4596a (diff)
Finally renamed prep to argvpb
I think this will be the final resting palce for this part of the shell autocomplete. At least I hope so.
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index e386101..c94b7f3 100644
--- a/main.go
+++ b/main.go
@@ -19,8 +19,8 @@ import (
"strings"
"go.wit.com/lib/fhelp"
- "go.wit.com/lib/gui/prep"
"go.wit.com/lib/gui/shell"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/log"
)
@@ -32,7 +32,7 @@ var ARGNAME string = "autogenpb"
func main() {
me = new(mainType)
- me.sh = prep.Autocomplete(&argv) // adds shell auto complete to go-args
+ me.sh = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
me.pb = new(Files)
var s string
var err error