Add autoclose plugin to handle autoclose for brackets, quotes etc...

The plugin adds an option `autoclose` to configure whether or not you
would like quotes, brackets etc... to be automatically closed. The
option is enabled by default.

Closes #176
This commit is contained in:
Zachary Yedidia
2016-06-22 13:54:42 -04:00
parent 47efea6501
commit 6665834cca
5 changed files with 113 additions and 4 deletions

View File

@@ -248,6 +248,7 @@ func main() {
L.SetGlobal("BindKey", luar.New(L, BindKey))
L.SetGlobal("MakeCommand", luar.New(L, MakeCommand))
L.SetGlobal("CurView", luar.New(L, CurView))
L.SetGlobal("IsWordChar", luar.New(L, IsWordChar))
L.SetGlobal("JobStart", luar.New(L, JobStart))
L.SetGlobal("JobSend", luar.New(L, JobSend))