aboutsummaryrefslogtreecommitdiff
path: root/core/events.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/events.lua')
-rw-r--r--core/events.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/events.lua b/core/events.lua
index bcd468eb..9ea46bbe 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -115,30 +115,6 @@ module('textadept.events', package.seeall)
-- Called when a menu item is selected.
-- - menu\_id: the numeric ID of the menu item set in
-- [`textadept.gtkmenu()`][textadept_gtkmenu].
--- * **pm\_contents\_request** (full\_path, expanding)<br />
--- Called when the [PM][PM] requests data to display.
--- - full\_path: a numerically indexed table of treeview item parents. The
--- first index contains the text of the PM entry. Subsequent indices
--- contain the ID's of parents of the child (if any).
--- - expanding: indicates if the contents of a parent are being requested.
--- * **pm\_item\_selected** (selected\_item)<br />
--- Called when an item in the [PM][PM] is double-clicked or activated.
--- - selected\_item: identical to `full_path` in the `pm_contents_request`
--- event.
--- * **pm\_context\_menu\_request** (selected\_item, gdkevent)<br />
--- Called when the context menu for an item in the [PM][PM] is requested.
--- - selected\_item: identical to `full_path` in the `pm_contents_request`
--- event.
--- - gdkevent: the GDK event associated with the request. It must be
--- passed to [`textadept.pm.show_context_menu()`][pm_show_menu].
--- * **pm\_menu\_clicked** (menu\_id, selected\_item)<br />
--- Called when a [PM][PM] context menu item is selected.
--- - menu\_id: the numeric ID of the context menu item set in
--- [`textadept.gtkmenu()`][textadept_gtkmenu].
--- - selected\_item: identical to `full_path` in the `pm_contents_request`
--- event.
--- * **pm\_view\_filled** ()<br />
--- Called when the [PM][PM] view is filled with data.
-- * **find** (text, next)<br />
-- Called when attempting to finding text via the Find dialog box.
-- - text: the text to search for.
@@ -158,8 +134,6 @@ module('textadept.events', package.seeall)
-- [view]: ../modules/view.html
-- [textadept_reset]: ../modules/textadept.html#reset
-- [textadept_gtkmenu]: ../modules/textadept.html#gtkmenu
--- [PM]: ../modules/textadept.pm.html
--- [pm_show_menu]: ../modules/textadept.pm.html#show_context_menu
--
-- ## Example
--