diff options
author | 2009-01-10 17:31:21 -0500 | |
---|---|---|
committer | 2009-01-10 17:31:21 -0500 | |
commit | ac698c5ea71d26e56289a18e664c6f8be1aa56c5 (patch) | |
tree | e683366e29ff29e8c0ebff54731ff505c201a6ff /themes/light/buffer.lua | |
parent | 0194a626fcb17bcb037341fc6c2f586f54d26035 (diff) | |
download | textadept-ac698c5ea71d26e56289a18e664c6f8be1aa56c5.tar.gz textadept-ac698c5ea71d26e56289a18e664c6f8be1aa56c5.zip |
Various improvements to speed and readability of Lua code.
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.
Diffstat (limited to 'themes/light/buffer.lua')
-rw-r--r-- | themes/light/buffer.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/light/buffer.lua b/themes/light/buffer.lua index 9d62eb38..f31d8d3d 100644 --- a/themes/light/buffer.lua +++ b/themes/light/buffer.lua @@ -1,7 +1,8 @@ -- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE. -- Light editor theme for Textadept. -local textadept, buffer = textadept, buffer +local textadept = _G.textadept +local buffer = buffer -- folding buffer.property['fold'] = '1' |