Stemming from https://github.com/IcarusWorks/ember-key-manager/issues/9. The following example would create shortcuts for `control+a`, `alt+a`, `shift+a`: ```js keyManager.register({ executionKey: 'A', allowedModifiers: ['shift', 'alt', 'control'], callback: () => { // }, type: 'keydown', }); ```
Stemming from #9.
The following example would create shortcuts for
control+a,alt+a,shift+a: