aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/ext/pm/ctags_browser.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 16:36:19 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 16:36:19 -0400
commitcc8bc0b210d5716d970717e86216a6b059eecf05 (patch)
treece5674f4695da038208517f13920246bd9e9372d /core/ext/pm/ctags_browser.lua
parentf332c1ccccc666e908eea56592b139ef685a99fd (diff)
Renamed handlers module to events, updated everything to reflect changes.
Diffstat (limited to 'core/ext/pm/ctags_browser.lua')
-rw-r--r--core/ext/pm/ctags_browser.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/ext/pm/ctags_browser.lua b/core/ext/pm/ctags_browser.lua
index 842dce9e..5166b423 100644
--- a/core/ext/pm/ctags_browser.lua
+++ b/core/ext/pm/ctags_browser.lua
@@ -230,7 +230,7 @@ function perform_menu_action(menu_item, selected_item)
end
-local add_handler_function = textadept.handlers.add_handler_function
+local add_handler = textadept.events.add_handler
local function update_view()
if matches(textadept.pm.entry_text) then
if buffer.filename then
@@ -240,7 +240,7 @@ local function update_view()
end
end
end
-add_handler_function('file_opened', update_view)
-add_handler_function('buffer_deleted', update_view)
-add_handler_function('buffer_switch', update_view)
-add_handler_function('save_point_reached', update_view)
+add_handler('file_opened', update_view)
+add_handler('buffer_deleted', update_view)
+add_handler('buffer_switch', update_view)
+add_handler('save_point_reached', update_view)