mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
|
|
const {getKeymaps} = require('../../config');
|
||
|
|
const findCommandByKeys = require('./find-command-by-keys');
|
||
|
|
|
||
|
|
module.exports = keys => {
|
||
|
|
return findCommandByKeys(keys, getKeymaps().keys);
|
||
|
|
};
|