Running any tview project with Termite gives a "terminal entry not found" error.
I ran the box example:
import "github.com/rivo/tview"
func main() {
box := tview.NewBox().
SetBorder(true).
SetTitle("Box Demo")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}
This is the output in Termite:
panic: terminal entry not found
goroutine 1 [running]:
main.main()
/home/shift/dev/go/2proj/main.go:12 +0x22d
exit status 2
The project runs fine in other Terminals like XTerm.
Running any tview project with Termite gives a "terminal entry not found" error.
I ran the box example:
This is the output in Termite:
The project runs fine in other Terminals like XTerm.