meta
This commit is contained in:
parent
6c1b33ba59
commit
7f3b9eb5c9
@ -1237,6 +1237,9 @@
|
||||
if (e.ctrlKey) {
|
||||
key = 'ctrl+' + key;
|
||||
}
|
||||
if (e.metaKey) {
|
||||
key = 'meta+' + key;
|
||||
}
|
||||
}
|
||||
return key;
|
||||
},
|
||||
|
||||
@ -886,8 +886,9 @@ Keybinds =
|
||||
else
|
||||
null
|
||||
if key
|
||||
if e.altKey then key = 'alt+' + key
|
||||
if e.altKey then key = 'alt+' + key
|
||||
if e.ctrlKey then key = 'ctrl+' + key
|
||||
if e.metaKey then key = 'meta+' + key
|
||||
key
|
||||
|
||||
tags: (tag, ta) ->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user