diff options
author | 2012-11-19 00:28:48 -0500 | |
---|---|---|
committer | 2012-11-19 00:28:48 -0500 | |
commit | 9cdaf41a724dd0d739611c698e92f4421a2fbafc (patch) | |
tree | e762a51e4e8e9f9d20ddd2228e81c37bc7e6b920 /core/keys.lua | |
parent | a5181b448b2d3f2d3db6dd40b40c7471602763a9 (diff) | |
download | textadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.tar.gz textadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.zip |
Changed Lua code style for tables.
Diffstat (limited to 'core/keys.lua')
-rw-r--r-- | core/keys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/keys.lua b/core/keys.lua index 6cd81953..ba1df7b4 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -58,7 +58,7 @@ local M = {} -- -- keys['cn'] = new_buffer -- keys['cs'] = buffer.save --- keys['a('] = { _M.textadept.editing.enclose, '(', ')' } +-- keys['a('] = {_M.textadept.editing.enclose, '(', ')'} -- -- Note that [`buffer`][] references are handled properly. -- @@ -75,7 +75,7 @@ local M = {} -- keys['aa'] = { -- a = function1, -- b = function2, --- c = { function3, arg1, arg2 } +-- c = {function3, arg1, arg2} -- } -- @field CLEAR (string) -- The string representing the key sequence that clears the current key chain. |