Add GetTabs Lua function

This commit is contained in:
supbish 2018-08-15 11:18:27 -04:00
parent 1ab493de59
commit e03fab8daa

View file

@ -398,6 +398,9 @@ func main() {
// We give plugins access to a bunch of variables here which could be useful to them
L.SetGlobal("OS", luar.New(L, runtime.GOOS))
L.SetGlobal("tabs", luar.New(L, tabs))
L.SetGlobal("GetTabs", luar.New(L, func() []*Tab {
return tabs
}))
L.SetGlobal("curTab", luar.New(L, curTab))
L.SetGlobal("messenger", luar.New(L, messenger))
L.SetGlobal("GetOption", luar.New(L, GetOption))