diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/11_Scripting.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/11_Scripting.md b/doc/11_Scripting.md index d2ce5f08..a214fe0f 100644 --- a/doc/11_Scripting.md +++ b/doc/11_Scripting.md @@ -54,6 +54,15 @@ as vanilla Lua with the following exceptions: [Lua 5.2]: http://www.lua.org/manual/5.2/ +### LuaJIT + +Even though Textadept can be run with [LuaJIT][], LuaJIT is based on Lua 5.1 and +is not fully compatible with Lua 5.2. Therefore, modules and scripts should be +written to be compatible with both versions. There is a compatibility layer in +`core/compat.lua`. Please see it for more information. + +[LuaJIT]: http://luajit.org + ## Scintilla The editing component used by Textadept is [Scintilla][]. The [buffer][] part of |