diff options
author | 2013-11-10 15:13:24 -0500 | |
---|---|---|
committer | 2013-11-10 15:13:24 -0500 | |
commit | 016a8056f01221faa5ccee3581e488bd98650401 (patch) | |
tree | c28b7ca024cd236347f948b004a7a376728fec71 /core/events.lua | |
parent | 4c01bce7d482d1f509f89e5b8304564007947a24 (diff) | |
download | textadept-016a8056f01221faa5ccee3581e488bd98650401.tar.gz textadept-016a8056f01221faa5ccee3581e488bd98650401.zip |
Updated LuaDoc.
Diffstat (limited to 'core/events.lua')
-rw-r--r-- | core/events.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/events.lua b/core/events.lua index 796c027d..babc9f0d 100644 --- a/core/events.lua +++ b/core/events.lua @@ -71,7 +71,7 @@ local M = {} -- -- * _`byte`_: The text character's byte. -- @field COMMAND_ENTRY_KEYPRESS (string) --- Emitted when pressing a key in the Command Entry. +-- Emitted when pressing a key in the command entry. -- If any handler returns `true`, the key is not inserted into the entry. -- Arguments: -- @@ -141,8 +141,8 @@ local M = {} -- `buffer.MOD_CTRL`, the "Control" modifier is reported as *both* "Control" -- and "Alt" due to a Scintilla limitation with GTK+. -- @field HOTSPOT_RELEASE_CLICK (string) --- Emitted after releasing the mouse after clicking on text that was in a --- style with the hotspot attribute set. +-- Emitted when releasing the mouse after clicking on text that is in a style +-- with the hotspot attribute set. -- Arguments: -- -- * _`position`_: The clicked text's position. @@ -199,13 +199,13 @@ local M = {} -- Emitted to replace selected (found) text. -- Arguments: -- --- * _`text`_: The text to replace the selected text with. +-- * _`text`_: The replacement text. -- @field REPLACE_ALL (string) -- Emitted to replace all occurrences of found text. -- Arguments: -- -- * _`find_text`_: The text to search for. --- * _`repl_text`_: The text to replace found text with. +-- * _`repl_text`_: The replacement text. -- @field RESET_AFTER (string) -- Emitted after resetting the Lua state. -- Emitted by [`reset()`][]. @@ -220,12 +220,12 @@ local M = {} -- Emitted when buffer content, styling, selection, or scroll position -- changes. -- @field URI_DROPPED (string) --- Emitted after dragging and dropping a URI into the view. +-- Emitted after dragging and dropping a URI into a view. -- Arguments: -- -- * _`text`_: The UTF-8-encoded URI dropped. -- @field USER_LIST_SELECTION (string) --- Emitted after selecting an item in a user list. +-- Emitted after selecting an item in the user list. -- Arguments: -- -- * _`list_type`_: The *list_type* from [`buffer:user_list_show()`][]. |