Age | Commit message (Collapse) | Author |
|
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc.
Added more locals to core/ext/keys.lua for speed improvement.
Reformatted some Lua modules to the earlier standard committed.
|
|
|
|
|
|
|
|
|
|
All Textadept messages are in core/locale.lua which provides the new
'textadept.locale' module.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ignores SciTE IDM_* constants automatically and changes SC_MASK_FOLDERS from
0xFE000000 to -33554432 due to lua_checklong() issues. (0xFE000000 has a value
of 4261412864, but lua_checklong() gives it as -2147483648 due to overflow I
suspect. Either way -2147483648 & (1 << SC_MARKNUM_FOLDEROPEN) behaves as
expected, but -2147483648 & (1 << SC_MARKNUM_FOLDER) does not.
|
|
|
|
|
|
|
|
|
|
|
|
|