aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-06-28 10:03:13 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-06-28 10:03:13 -0400
commit19549f6e25b51bb6e3b3850804ace591a6d29809 (patch)
treec94c3532b2da537acbba4bb9a4ebe955ec54c9d4 /modules/textadept
parent8e30adbb7886b61a680d0d01bdd50c29a015ee79 (diff)
downloadtextadept-19549f6e25b51bb6e3b3850804ace591a6d29809.tar.gz
textadept-19549f6e25b51bb6e3b3850804ace591a6d29809.zip
Be more consistent with Command key variable name.
Diffstat (limited to 'modules/textadept')
-rw-r--r--modules/textadept/macros.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/macros.lua b/modules/textadept/macros.lua
index d02f8786..e83b6a8b 100644
--- a/modules/textadept/macros.lua
+++ b/modules/textadept/macros.lua
@@ -29,17 +29,17 @@ local function event_recorder(event)
return function(...) macro[#macro + 1] = {event, ...} end
end
local event_recorders = {
- [events.KEYPRESS] = function(code, shift, control, alt, meta)
+ [events.KEYPRESS] = function(code, shift, control, alt, cmd)
-- Not every keypress should be recorded (e.g. toggling macro recording).
-- Use very basic key handling to try to identify key commands to ignore.
local key = code < 256 and string.char(code) or keys.KEYSYMS[code]
if key then
if shift and code >= 32 and code < 256 then shift = false end
local key_seq = (control and 'c' or '') .. (alt and 'a' or '') ..
- (meta and OSX and 'm' or '') .. (shift and 's' or '') .. key
+ (cmd and OSX and 'm' or '') .. (shift and 's' or '') .. key
for i = 1, #ignore do if keys[key_seq] == ignore[i] then return end end
end
- macro[#macro + 1] = {events.KEYPRESS, code, shift, control, alt, meta}
+ macro[#macro + 1] = {events.KEYPRESS, code, shift, control, alt, cmd}
end,
[events.MENU_CLICKED] = event_recorder(events.MENU_CLICKED),
[events.CHAR_ADDED] = event_recorder(events.CHAR_ADDED),