diff options
Diffstat (limited to 'modules/cpp/commands.lua')
-rw-r--r-- | modules/cpp/commands.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/cpp/commands.lua b/modules/cpp/commands.lua index 472ca130..62c06be2 100644 --- a/modules/cpp/commands.lua +++ b/modules/cpp/commands.lua @@ -8,7 +8,6 @@ module('_m.cpp.commands', package.seeall) local keys = _G.keys if type(keys) == 'table' then local m_editing = _m.textadept.editing - local m_handlers = textadept.handlers keys.cpp = { al = { textadept.io.open, _HOME..'/modules/cpp/init.lua' }, ['s\n'] = { function() @@ -18,10 +17,7 @@ if type(keys) == 'table' then end }, cq = { m_editing.block_comment, '//~' }, ['('] = { function() ---~ buffer.word_chars = ---~ '_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' m_editing.show_call_tip(_m.cpp.api, true) ---~ buffer:set_chars_default() return false end }, } |