This commit is contained in:
James Campos 2012-06-03 18:51:57 -07:00
parent 6c1b33ba59
commit 7f3b9eb5c9
2 changed files with 5 additions and 1 deletions

View File

@ -1237,6 +1237,9 @@
if (e.ctrlKey) {
key = 'ctrl+' + key;
}
if (e.metaKey) {
key = 'meta+' + key;
}
}
return key;
},

View File

@ -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) ->