Merge pull request #1154 from supbish/luatabs

Add GetTabs Lua function
This commit is contained in:
Zachary Yedidia
2018-08-15 11:56:10 -04:00
committed by GitHub

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))