moveCursorBottomSelectCommand top-level property

CommandShortcutEvent moveCursorBottomSelectCommand
getter/setter pair

arrow down + shift + ctrl or cmd move the cursor to the bottommost position of the document and select everything in between

Implementation

CommandShortcutEvent moveCursorBottomSelectCommand = CommandShortcutEvent(
  key: 'move cursor to end of file and select all',
  getDescription: () => AppFlowyEditorL10n.current.cmdMoveCursorBottomSelect,
  command: 'ctrl+shift+arrow down',
  macOSCommand: 'cmd+shift+arrow down',
  handler: _moveCursorBottomSelectCommandHandler,
);