diff options
| author | Jeff Carr <[email protected]> | 2022-11-06 19:57:20 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2022-11-06 19:57:20 -0600 |
| commit | b410d0fd083ee89eed410cda2123a22cddcd3f44 (patch) | |
| tree | 3f1a637003629a3ec7d383b5db6beb0df9e5a97c /toolkit/gocui/newJ.go | |
| parent | e55fb6675d692e3f44fa67b02b12661e476bd028 (diff) | |
Implement a early AddButton() via a golang pluginv0.4.5
pass a name to gocui.AddButton()
cleaner plugin usage
add the start to golang plugin
plugin stuff in a single file
added a button correctly
andlabs/ui added a button via plugin to gocli
hot diggity!
trying to invoke a gocli plugin function from the andlabs ui
load the plugin
hide more debugging output
turn off all output
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/gocui/newJ.go')
| -rw-r--r-- | toolkit/gocui/newJ.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/gocui/newJ.go b/toolkit/gocui/newJ.go index 47c7439..3e04cd3 100644 --- a/toolkit/gocui/newJ.go +++ b/toolkit/gocui/newJ.go @@ -20,7 +20,7 @@ var bottomY int = 7 func newJ(g *gocui.Gui) error { // maxX, maxY := g.Size() - name := fmt.Sprintf("jcarr %v test ", idxView) + name := fmt.Sprintf("jcarr %v foo ", idxView) v, err := g.SetView(name, topX, topY, bottomX, bottomY, 0) if err == nil { return err |
