load keymaps from storage
This commit is contained in:
parent
8ba490ea11
commit
e97ffafea3
7 changed files with 85 additions and 51 deletions
|
@ -14,4 +14,11 @@ const clearKeys = () => {
|
|||
};
|
||||
};
|
||||
|
||||
export { keyPress, clearKeys };
|
||||
const setKeymaps = (keymaps) => {
|
||||
return {
|
||||
type: actions.INPUT_SET_KEYMAPS,
|
||||
keymaps: keymaps
|
||||
};
|
||||
};
|
||||
|
||||
export { keyPress, clearKeys, setKeymaps };
|
||||
|
|
Reference in a new issue