niceDefaultShortcuts top-level property
Default shortcut bindings mapping keys to intents.
Implementation
Map<ShortcutActivator, Intent> get niceDefaultShortcuts => {
NiceShortcuts.save: const NiceSaveIntent(),
NiceShortcuts.saveAs: const NiceSaveAsIntent(),
NiceShortcuts.newDocument: const NiceNewDocumentIntent(),
NiceShortcuts.open: const NiceOpenIntent(),
NiceShortcuts.print: const NicePrintIntent(),
NiceShortcuts.close: const NiceCloseIntent(),
NiceShortcuts.search: const NiceSearchIntent(),
NiceShortcuts.findNext: const NiceFindNextIntent(),
NiceShortcuts.findPrevious: const NiceFindPreviousIntent(),
NiceShortcuts.escape: const NiceEscapeIntent(),
NiceShortcuts.submit: const NiceSubmitIntent(),
NiceShortcuts.refresh: const NiceRefreshIntent(),
NiceShortcuts.addRow: const NiceAddRowIntent(),
NiceShortcuts.editRow: const NiceEditRowIntent(),
NiceShortcuts.deleteRow: const NiceDeleteRowIntent(),
NiceShortcuts.firstRow: const NiceFirstRowIntent(),
NiceShortcuts.lastRow: const NiceLastRowIntent(),
NiceShortcuts.zoomIn: const NiceZoomInIntent(),
NiceShortcuts.zoomOut: const NiceZoomOutIntent(),
NiceShortcuts.zoomReset: const NiceZoomResetIntent(),
NiceShortcuts.fullScreen: const NiceToggleFullScreenIntent(),
NiceShortcuts.toggleSidebar: const NiceToggleSidebarIntent(),
NiceShortcuts.help: const NiceHelpIntent(),
NiceShortcuts.showShortcuts: const NiceShowShortcutsIntent(),
};