diff options
| author | Jeff Carr <[email protected]> | 2025-10-26 10:57:52 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-26 10:57:52 -0500 | 
| commit | 10445f875ee822055376714e2ae90829de8c0d3f (patch) | |
| tree | 7cd68a9789b6a0a1dc8d5973c2a7b1270aedc6cd | |
| parent | 456305122d43bdabf26a1c16f7f550de40cc2a5c (diff) | |
maybe gui again?v0.23.150
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | complete.go | 9 | 
2 files changed, 10 insertions, 1 deletions
@@ -111,7 +111,7 @@ test-build-quick:  	cd ~/go/src/go.wit.com/lib/xgb/ && git checkout go.mod  	cd ~/go/src/go.wit.com/lib/xgb/ && time guireleaser --gui andlabs quick -# time GUIRELEASE_REASON="safe-build" make test-build-new +# time GUIRELEASE_REASON="automated" make test-build  test-build:  	wit build install # NEVER REMOVE LINE DUMBASS  	-rm ~/go/bin/forged diff --git a/complete.go b/complete.go index c82bcde..2b8258a 100644 --- a/complete.go +++ b/complete.go @@ -6,6 +6,7 @@ import (  	"go.wit.com/dev/alexflint/arg"  	"go.wit.com/gui" +	"go.wit.com/lib/fhelp"  	"go.wit.com/lib/protobuf/argvpb"  ) @@ -27,6 +28,14 @@ the repositories in the go.sum file using git clone`  	handles shell autocomplete  */ +func (args) InitGui() error { +	// panic("got here") +	arg.Register(&gui.ArgvGui) +	// me.gui = gui.PreInit() +	me.myGui = fhelp.Gui() +	return nil +} +  func (args) ArgvGui() error {  	// me.myGui = fhelp.Gui() // adds the GUI package argv support  	me.gui = gui.New()  | 
