summaryrefslogtreecommitdiff
path: root/plugin.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-18 03:23:13 -0500
committerJeff Carr <[email protected]>2025-10-18 03:23:13 -0500
commitefd65e7567d2c8440cf1b29af8c374e69f7e08e6 (patch)
tree6a7a9a1058fabd1fa93911d55702b2bc7dd83bc9 /plugin.go
parente2310a4fce5f52fe32537e04aa6652402b5b9b4a (diff)
working towards shell autocomplete support
Diffstat (limited to 'plugin.go')
-rw-r--r--plugin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin.go b/plugin.go
index e4e6810..ae4928f 100644
--- a/plugin.go
+++ b/plugin.go
@@ -171,10 +171,10 @@ func searchPaths(name string) *aplug {
var p *aplug
// try the filename from the command line first
- if argGui.GuiFile != "" {
- p = initToolkit(name, argGui.GuiFile)
+ if ArgvGui.GuiFile != "" {
+ p = initToolkit(name, ArgvGui.GuiFile)
if p != nil {
- log.Log(NOW, "gui.Init() loaded ok!", argGui.GuiFile)
+ log.Log(NOW, "gui.Init() loaded ok!", ArgvGui.GuiFile)
return p
}
}