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