aboutsummaryrefslogtreecommitdiff
path: root/core/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-11-19 00:28:48 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2012-11-19 00:28:48 -0500
commit9cdaf41a724dd0d739611c698e92f4421a2fbafc (patch)
treee762a51e4e8e9f9d20ddd2228e81c37bc7e6b920 /core/keys.lua
parenta5181b448b2d3f2d3db6dd40b40c7471602763a9 (diff)
downloadtextadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.tar.gz
textadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.zip
Changed Lua code style for tables.
Diffstat (limited to 'core/keys.lua')
-rw-r--r--core/keys.lua4
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.