aboutsummaryrefslogtreecommitdiff
path: root/modules/cpp/commands.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 16:36:19 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 16:36:19 -0400
commitcc8bc0b210d5716d970717e86216a6b059eecf05 (patch)
treece5674f4695da038208517f13920246bd9e9372d /modules/cpp/commands.lua
parentf332c1ccccc666e908eea56592b139ef685a99fd (diff)
downloadtextadept-cc8bc0b210d5716d970717e86216a6b059eecf05.tar.gz
textadept-cc8bc0b210d5716d970717e86216a6b059eecf05.zip
Renamed handlers module to events, updated everything to reflect changes.
Diffstat (limited to 'modules/cpp/commands.lua')
-rw-r--r--modules/cpp/commands.lua4
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 },
}