diff options
| author | Jeff Carr <[email protected]> | 2024-11-13 21:03:50 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-13 21:03:50 -0600 |
| commit | 2ace17294c0a20f889bb1e800a1c35e3cbd995df (patch) | |
| tree | e61a7d4bef14cc08cf9e7cfb8d1f20ee1c9ea56b /showStdout.go | |
| parent | 6d3dded68b5c15daeb0021bd629ba2ac4dd9e07f (diff) | |
try to use the stdout view
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'showStdout.go')
| -rw-r--r-- | showStdout.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/showStdout.go b/showStdout.go index 22e6d8e..7201d27 100644 --- a/showStdout.go +++ b/showStdout.go @@ -38,7 +38,9 @@ func showMsg(g *gocui.Gui, v *gocui.View) error { l = "" } - makeOutputWidget(g, l) + outv := makeOutputWidget(g, l) + outv.Write([]byte("test out2")) + log.Info("test out2") return nil } |
