moveCursorRightCommand top-level property

CommandShortcutEvent moveCursorRightCommand
final

Arrow right key events.

  • support
    • desktop
    • web

Implementation

// arrow right key
// move the cursor backward one character
final CommandShortcutEvent moveCursorRightCommand = CommandShortcutEvent(
  key: 'move the cursor forward one character',
  getDescription: () => AppFlowyEditorL10n.current.cmdMoveCursorRight,
  command: 'arrow right',
  handler: _arrowRightCommandHandler,
);