Revert "Some plugin helpers"

This reverts commit 75f9d7d9122f5b475c4ff323cca7cc068ea4e411.
This commit is contained in:
Zachary Yedidia 2019-06-15 14:04:53 -04:00
parent d45f8b4d23
commit 74ee256260

View file

@ -66,22 +66,11 @@ func Import(pkg string) *lua.LTable {
return importErrors()
case "time":
return importTime()
case "micro/plugin":
return importMicroPlugin()
default:
return nil
}
}
func importMicroPlugin() *lua.LTable {
pkg := L.NewTable()
L.SetField(pkg, "RegisterCallback", luar.New(L, (*Plugin).RegisterCallback))
L.SetField(pkg, "GetPlugin", luar.New(L, GetPlugin))
return pkg
}
func importFmt() *lua.LTable {
pkg := L.NewTable()