react-shortcuts icon indicating copy to clipboard operation
react-shortcuts copied to clipboard

Manage keyboard shortcuts from one place

Results 52 react-shortcuts issues
Sort by recently updated
recently updated
newest added

This is a small one, but, in the `README.md`: ``` export default { TODO_ITEM: { MOVE_LEFT: 'left', MOVE_RIGHT: 'right', MOVE_UP: ['up', 'w'], DELETE: { osx: ['command+backspace', 'k'], windows: 'delete', linux:...

I know the issue of package size has [previously been raised](https://github.com/avocode/react-shortcuts/issues/24) and the solution was to [include a local utils in the package itself (with tests)](https://github.com/avocode/react-shortcuts/pull/40) - however this increases...

This might be way too much of an edge case for anyone else to have run into it but... I'm working with a webapp on Chrome that makes use of...

`react-shortcuts` does not seem to use react's synthetic event system. This seems to be the underlying cause of confusion for people who create issues. It may also be the reason...

Very similar to #56, if two `` tags with the `global` prop are rendered, one as the child of the other, and they both bind to the same keys, the...

Shortcuts defined using a `` tag with the `global` prop are called before any shortcuts defined in any child `` tag. IMHO, this is not what people will expect. Users...

When a `` tag is mounted in the DOM, it prevents any handlers attached to `onKeyPress` of any child or sibling of the ` component from ever being called. This...

When using 4 or 5 `` tags on the same page, chrome logs this warning in the developer console: ``` warning: possible EventEmitter memory leak detected ```

As has been pointed out in #31, it is unclear how the `isolate` prop changes the behaviour of `react-shortcuts` and in what situations it is significant. I was unable to...