diff options
author | 2020-06-28 10:03:13 -0400 | |
---|---|---|
committer | 2020-06-28 10:03:13 -0400 | |
commit | 19549f6e25b51bb6e3b3850804ace591a6d29809 (patch) | |
tree | c94c3532b2da537acbba4bb9a4ebe955ec54c9d4 /core | |
parent | 8e30adbb7886b61a680d0d01bdd50c29a015ee79 (diff) | |
download | textadept-19549f6e25b51bb6e3b3850804ace591a6d29809.tar.gz textadept-19549f6e25b51bb6e3b3850804ace591a6d29809.zip |
Be more consistent with Command key variable name.
Diffstat (limited to 'core')
-rw-r--r-- | core/events.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/events.lua b/core/events.lua index 4a45b8ec..2def3686 100644 --- a/core/events.lua +++ b/core/events.lua @@ -160,7 +160,7 @@ local M = {} -- * _`shift`_: The "Shift" modifier key is held down. -- * _`ctrl`_: The "Control" modifier key is held down. -- * _`alt`_: The "Alt"/"Option" modifier key is held down. --- * _`meta`_: The "Command" modifier key on Mac OSX is held down. +-- * _`cmd`_: The "Command" modifier key on Mac OSX is held down. -- * _`caps_lock`_: The "Caps Lock" modifier is on. -- @field MARGIN_CLICK (string) -- Emitted when clicking the mouse inside a sensitive margin. @@ -253,7 +253,7 @@ local M = {} -- * _`shift`_: The "Shift" modifier key is held down. -- * _`ctrl`_: The "Control" modifier key is held down. -- * _`alt`_: The "Alt"/"Option" modifier key is held down. --- * _`meta`_: The "Command" modifier key on Mac OSX is held down. +-- * _`cmd`_: The "Command" modifier key on Mac OSX is held down. -- @field UPDATE_UI (string) -- Emitted after the view is visually updated. -- Arguments: |