diff options
author | 2008-12-14 14:16:59 -0500 | |
---|---|---|
committer | 2008-12-14 14:16:59 -0500 | |
commit | f30c20212df39d1a9d2cb2e3ecfcd18cc1720807 (patch) | |
tree | ac36e4e38bcb5f64f5b966e633661c890b7c24e4 /modules/lua/commands.lua | |
parent | 74cb7d56350d4f83dde53be269673b9af7336c1b (diff) | |
download | textadept-f30c20212df39d1a9d2cb2e3ecfcd18cc1720807.tar.gz textadept-f30c20212df39d1a9d2cb2e3ecfcd18cc1720807.zip |
Changed language module main command key chain root from Alt+C to Alt+L.
Diffstat (limited to 'modules/lua/commands.lua')
-rw-r--r-- | modules/lua/commands.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/lua/commands.lua b/modules/lua/commands.lua index 1b4ff90e..24d0ef8d 100644 --- a/modules/lua/commands.lua +++ b/modules/lua/commands.lua @@ -74,9 +74,9 @@ local keys = _G.keys if type(keys) == 'table' then local m_editing = _m.textadept.editing keys.lua = { - al = { textadept.io.open, _HOME..'/modules/lua/init.lua' }, - ac = { - g = { goto_required } + al = { + m = { textadept.io.open, _HOME..'/modules/lua/init.lua' }, + g = { goto_required }, }, ['s\n'] = { try_to_autocomplete_end }, cg = { run }, |