readOnlyDefaultKeyboardActions top-level property

List<ReadOnlyDocumentKeyboardAction> readOnlyDefaultKeyboardActions
final

Keyboard actions for the standard SuperReader.

Implementation

final readOnlyDefaultKeyboardActions = <ReadOnlyDocumentKeyboardAction>[
  removeCollapsedSelectionWhenShiftIsReleased,
  scrollUpWithArrowKey,
  scrollDownWithArrowKey,
  expandSelectionWithLeftArrow,
  expandSelectionWithRightArrow,
  expandSelectionWithUpArrow,
  expandSelectionWithDownArrow,
  expandSelectionToLineStartWithHomeOnWindowsAndLinux,
  expandSelectionToLineEndWithEndOnWindowsAndLinux,
  expandSelectionToLineStartWithCtrlAOnWindowsAndLinux,
  expandSelectionToLineEndWithCtrlEOnWindowsAndLinux,
  selectAllWhenCmdAIsPressedOnMac,
  selectAllWhenCtlAIsPressedOnWindowsAndLinux,
  copyWhenCmdCIsPressedOnMac,
  copyWhenCtlCIsPressedOnWindowsAndLinux,
];