diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ import ( "path/filepath" "github.com/google/uuid" - "go.wit.com/lib/gui/prep" + "go.wit.com/lib/protobuf/argvpb" "go.wit.com/lib/protobuf/virtpb" "go.wit.com/log" ) @@ -25,7 +25,7 @@ var resources embed.FS func main() { me = new(virtigoT) - me.auto = prep.Bash3(&argv) // add support for bash autocomplete with go-arg + me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args if os.Getenv("VIRTIGO_HOME") == "" { homeDir, _ := os.UserHomeDir() |
