diff options
| author | Jeff Carr <[email protected]> | 2025-10-18 03:23:13 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-18 03:23:13 -0500 |
| commit | efd65e7567d2c8440cf1b29af8c374e69f7e08e6 (patch) | |
| tree | 6a7a9a1058fabd1fa93911d55702b2bc7dd83bc9 /plugin.go | |
| parent | e2310a4fce5f52fe32537e04aa6652402b5b9b4a (diff) | |
working towards shell autocomplete support
Diffstat (limited to 'plugin.go')
| -rw-r--r-- | plugin.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 } } |
