aboutsummaryrefslogtreecommitdiff
path: root/core/events.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-02-15 01:07:49 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2009-02-15 01:07:49 -0500
commit86ef9ed4b1b74970c85c0fd319ba0dc8eb0b2b8d (patch)
treebd1de960b8b2a93d61004e3a8dbdf6b0854ee52d /core/events.lua
parent66c019be32ef2f66f73821f93083760018caa2a2 (diff)
downloadtextadept-86ef9ed4b1b74970c85c0fd319ba0dc8eb0b2b8d.tar.gz
textadept-86ef9ed4b1b74970c85c0fd319ba0dc8eb0b2b8d.zip
PM browser cursors are saved and restored when switching between browsers.
Diffstat (limited to 'core/events.lua')
-rw-r--r--core/events.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/events.lua b/core/events.lua
index a1e32dc8..f0d629cc 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -68,6 +68,7 @@ module('textadept.events', package.seeall)
-- alt: flag indicating whether or not alt is pressed.
-- menu_clicked(menu_id)
-- menu_id: the numeric ID of the menu item.
+-- pm_view_filled()
local events = textadept.events
@@ -141,6 +142,9 @@ end
function menu_clicked(menu_id_str)
return handle('menu_clicked', tonumber(menu_id_str))
end
+function pm_view_filled()
+ return handle('pm_view_filled')
+end
-- Scintilla notifications.
function char_added(n)