selectAllCommand top-level property

CommandShortcutEvent selectAllCommand
final

Select all key event.

  • support
    • desktop
    • web

Implementation

final CommandShortcutEvent selectAllCommand = CommandShortcutEvent(
  key: 'select all the selectable content',
  getDescription: () => AppFlowyEditorL10n.current.cmdSelectAll,
  command: 'ctrl+a',
  macOSCommand: 'cmd+a',
  handler: _selectAllCommandHandler,
);