moveCursorLeftCommand top-level property

CommandShortcutEvent moveCursorLeftCommand
final

Arrow left key events.

  • support
    • desktop
    • web

Implementation

// arrow left key
// move the cursor forward one character
final CommandShortcutEvent moveCursorLeftCommand = CommandShortcutEvent(
  key: 'move the cursor backward one character',
  getDescription: () => AppFlowyEditorL10n.current.cmdMoveCursorLeft,
  command: 'arrow left',
  handler: _arrowLeftCommandHandler,
);