separate content
This commit is contained in:
parent
d886d7de29
commit
39fb540037
17 changed files with 24 additions and 24 deletions
|
@ -1,23 +0,0 @@
|
|||
import actions from 'actions';
|
||||
|
||||
const asKeymapChars = (key, ctrl) => {
|
||||
if (ctrl) {
|
||||
return '<C-' + key.toUpperCase() + '>';
|
||||
}
|
||||
return key;
|
||||
};
|
||||
|
||||
const keyPress = (key, ctrl) => {
|
||||
return {
|
||||
type: actions.INPUT_KEY_PRESS,
|
||||
key: asKeymapChars(key, ctrl),
|
||||
};
|
||||
};
|
||||
|
||||
const clearKeys = () => {
|
||||
return {
|
||||
type: actions.INPUT_CLEAR_KEYS
|
||||
};
|
||||
};
|
||||
|
||||
export { keyPress, clearKeys };
|
Reference in a new issue