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

Readme.md delete key does not exist

Open gytdau opened this issue 7 years ago • 0 comments

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: 'delete',
    },
  },
}

the delete key is actually del.

gytdau avatar Feb 14 '18 08:02 gytdau