Skip to content

Commit

Permalink
feat: add comma and point keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Sep 8, 2023
1 parent 1897fb7 commit d4ac49f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ts/components/Scrubber.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,11 @@ export default class Scrubber extends React.Component<
this.props.scrubber.nextTurn();
break;
case "ArrowUp":
case ",":
this.props.scrubber.previousAction();
break;
case "ArrowDown":
case ".":
this.props.scrubber.nextAction();
break;
case "Home":
Expand Down

0 comments on commit d4ac49f

Please sign in to comment.