Merge pull request #283 from boombuler/autocompleteplugin

Autocomplete for plugins
This commit is contained in:
Zachary Yedidia
2016-09-05 10:29:51 -04:00
committed by GitHub
5 changed files with 83 additions and 0 deletions

View File

@@ -306,6 +306,7 @@ func main() {
L.SetGlobal("HandleCommand", luar.New(L, HandleCommand))
L.SetGlobal("HandleShellCommand", luar.New(L, HandleShellCommand))
L.SetGlobal("GetLeadingWhitespace", luar.New(L, GetLeadingWhitespace))
L.SetGlobal("MakeCompletion", luar.New(L, MakeCompletion))
// Used for asynchronous jobs
L.SetGlobal("JobStart", luar.New(L, JobStart))