mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Fix #2195: normalizing keybindings using localeCompare to include non english keyboards as well
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
const {getKeymaps} = require('../../config');
|
|
const findCommandByKeys = require('./find-command-by-keys');
|
|
|
|
module.exports = keys => {
|
|
return findCommandByKeys(keys, getKeymaps().keys);
|
|
};
|