summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-03 13:37:03 -0600
committerJeff Carr <[email protected]>2024-01-03 13:37:03 -0600
commita08bbaf04ff536e8fae3ab5396dc54c290945301 (patch)
tree79e0cd54b6d67ded948e6ce9caba68ab7aae5444 /args.go
parentd8f1107387af688e9b161a0c01dd70241741edba (diff)
all debug stuff moved to 'go.wit.com/gui/debugger'v0.9.9
I finally was able to clean out all the debugging code and make a clean, new GO debugger. It's quite nice I think. Well, it's useful to me at any rate. 2024 New Years wish: someone contributes code to improve it Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/args.go b/args.go
index d6a6ad6..a9c43cb 100644
--- a/args.go
+++ b/args.go
@@ -10,7 +10,6 @@ var argGui ArgsGui
// This struct can be used with the go-arg package
type ArgsGui struct {
- GuiDebug bool `arg:"--gui-debug" help:"open the GUI debugger"`
GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui]"`
GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
@@ -29,8 +28,3 @@ func init() {
func ArgToolkit() string {
return argGui.GuiPlugin
}
-
-// returns true if --gui-debug was passed from the command line
-func ArgDebug() bool {
- return argGui.GuiDebug
-}