diff options
author | 2020-10-11 22:43:59 -0400 | |
---|---|---|
committer | 2020-10-11 22:43:59 -0400 | |
commit | ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01 (patch) | |
tree | 2457467679904d4be7d1322e0bfcfc416368d080 /core/events.lua | |
parent | 4f49182b3f4359829449aca2b3b8ca9b6a73180f (diff) | |
download | textadept-ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01.tar.gz textadept-ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01.zip |
Updated LuaDoc.
Diffstat (limited to 'core/events.lua')
-rw-r--r-- | core/events.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/events.lua b/core/events.lua index 4a1a6334..7282172d 100644 --- a/core/events.lua +++ b/core/events.lua @@ -95,8 +95,8 @@ local M = {} -- -- * _`position`_: The position double-clicked. -- * _`line`_: The line number of the position double-clicked. --- * _`modifiers`_: A bit-mask of any modifier keys used: `view.MOD_CTRL`, --- `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. +-- * _`modifiers`_: A bit-mask of any modifier keys held down: +-- `view.MOD_CTRL`, `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. -- On macOS, the Command modifier key is reported as `view.MOD_CTRL` and -- Ctrl is `view.MOD_META`. -- Note: If you set `view.rectangular_selection_modifier` to @@ -150,8 +150,8 @@ local M = {} -- Arguments: -- -- * _`position`_: The clicked text's position. --- * _`modifiers`_: A bit-mask of any modifier keys used: `view.MOD_CTRL`, --- `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. +-- * _`modifiers`_: A bit-mask of any modifier keys held down: +-- `view.MOD_CTRL`, `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. -- On macOS, the Command modifier key is reported as `view.MOD_CTRL` and -- Ctrl is `view.MOD_META`. -- Note: If you set `view.rectangular_selection_modifier` to @@ -182,8 +182,8 @@ local M = {} -- -- * _`margin`_: The margin number clicked. -- * _`position`_: The beginning position of the clicked margin's line. --- * _`modifiers`_: A bit-mask of any modifier keys used: `view.MOD_CTRL`, --- `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. +-- * _`modifiers`_: A bit-mask of any modifier keys held down: +-- `view.MOD_CTRL`, `view.MOD_SHIFT`, `view.MOD_ALT`, and `view.MOD_META`. -- On macOS, the Command modifier key is reported as `view.MOD_CTRL` and -- Ctrl is `view.MOD_META`. -- Note: If you set `view.rectangular_selection_modifier` to |