fix for binding ctrl-;
This commit is contained in:
parent
b2dcbf9fa3
commit
184ed6cee6
1 changed files with 1 additions and 1 deletions
|
|
@ -277,7 +277,7 @@ function normalizeCommandKeys(callback, e, keyCode) {
|
|||
// If there is no hashID and the keyCode is not a function key, then
|
||||
// we don't call the callback as we don't handle a command key here
|
||||
// (it's a normal key/character input).
|
||||
if (!(keyCode in keys.FUNCTION_KEYS) && !(keyCode in keys.PRINTABLE_KEYS)) {
|
||||
if (!hashId && !(keyCode in keys.FUNCTION_KEYS) && !(keyCode in keys.PRINTABLE_KEYS)) {
|
||||
return false;
|
||||
}
|
||||
return callback(e, hashId, keyCode);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue