diff options
Diffstat (limited to 'modules/cpp/commands.lua')
-rw-r--r-- | modules/cpp/commands.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/cpp/commands.lua b/modules/cpp/commands.lua index 25fa3584..472ca130 100644 --- a/modules/cpp/commands.lua +++ b/modules/cpp/commands.lua @@ -2,12 +2,12 @@ --- -- Commands for the cpp module. -module('modules.cpp.commands', package.seeall) +module('_m.cpp.commands', package.seeall) -- C++-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.cpp = { al = { textadept.io.open, _HOME..'/modules/cpp/init.lua' }, @@ -20,7 +20,7 @@ if type(keys) == 'table' then ['('] = { function() --~ buffer.word_chars = --~ '_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' - m_editing.show_call_tip(modules.cpp.api, true) + m_editing.show_call_tip(_m.cpp.api, true) --~ buffer:set_chars_default() return false end }, |