diff options
author | 2007-08-09 14:26:34 -0400 | |
---|---|---|
committer | 2007-08-09 14:26:34 -0400 | |
commit | 5da76d004a633de15830ca3ca1e694a91110cc73 (patch) | |
tree | 6a36d0f4b886ab4870807aa11b33801f34a19ec9 /modules/lua/commands.lua | |
parent | 91407194760539859d5f3a88d142c4f893c111d3 (diff) | |
download | textadept-5da76d004a633de15830ca3ca1e694a91110cc73.tar.gz textadept-5da76d004a633de15830ca3ca1e694a91110cc73.zip |
Renamed modules global to _m.
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 1f6d25a5..f3dbe333 100644 --- a/modules/lua/commands.lua +++ b/modules/lua/commands.lua @@ -2,7 +2,7 @@ --- -- Commands for the lua module. -module('modules.lua.commands', package.seeall) +module('_m.lua.commands', package.seeall) --- -- Patterns for auto 'end' completion for control structures. @@ -70,7 +70,7 @@ end -- Lua-specific key commands. local keys = _G.keys if type(keys) == 'table' then - local m_editing = modules.textadept.editing + local m_editing = _m.textadept.editing local m_handlers = textadept.handlers keys.lua = { al = { textadept.io.open, _HOME..'/modules/lua/init.lua' }, @@ -83,7 +83,7 @@ if type(keys) == 'table' then ['('] = { function() buffer.word_chars = '_.:abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' - m_editing.show_call_tip(modules.lua.api, true) + m_editing.show_call_tip(_m.lua.api, true) buffer:set_chars_default() return false end }, |