summaryrefslogtreecommitdiff
path: root/src/if_lua.c
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.689v7.3.689Bram Moolenaar2012-10-141-1/+2
| | | | | Problem: MzScheme and Lua may use a NULL string. Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
* updated for version 7.3.569v7.3.569Bram Moolenaar2012-06-291-142/+6
| | | | | Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
* updated for version 7.3.494v7.3.494Bram Moolenaar2012-04-061-5/+12
| | | | | Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho)
* updated for version 7.3.490v7.3.490Bram Moolenaar2012-04-051-259/+878
| | | | | Problem: Member confusion in Lua interface. Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho)
* updated for version 7.3.370v7.3.370Bram Moolenaar2011-12-081-2/+1
| | | | | Problem: Compiler warns for unused variable in Lua interface. Solution: Remove the variable.
* updated for version 7.3.317v7.3.317Bram Moolenaar2011-09-211-0/+33
| | | | | Problem: Calling debug.debug() in Lua may cause Vim to hang. Solution: Add a better debug method. (Rob Hoelz, Luis Carvalho)
* updated for version 7.3.101v7.3.101Bram Moolenaar2011-01-171-3/+2
| | | | | | Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
* updated for version 7.3.034v7.3.034Bram Moolenaar2010-10-231-1/+1
| | | | | Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library.
* Fix: Lua interface tried to load the library when closing a buffer or window.Bram Moolenaar2010-08-121-2/+8
|
* Update for Lua interface. (Luis Carvalho)Bram Moolenaar2010-07-281-34/+8
|
* Make it possible to load Lua dynamically on Unix. (Luis Carvalho)Bram Moolenaar2010-07-221-6/+21
|
* Make it easier to build with Lua. Remove compiler warnings.Bram Moolenaar2010-07-181-3/+3
|
* Whitespace cleanup.Bram Moolenaar2010-07-171-371/+542
|
* Added Lua interfae. (Luis Carvalho)Bram Moolenaar2010-07-141-0/+1099