import { PropsWithChildren, memo } from 'react'; import * as Editor from '../../../common/components/editor-utils/EditorUtils'; import { deviceAlt, deviceMod } from '../../../common/utils/deviceUtils'; import style from './EventEditorEmpty.module.scss'; export default memo(EventEditorEmpty); function EventEditorEmpty() { return (
Rundown shortcuts
Find in rundown {deviceMod} + F
Open Settings {deviceMod} + ,
Select entry {deviceAlt} + /
Select group {deviceAlt} + Shift + /
Jump to top / bottom Home / End
Page up / down PgUp / PgDn
Deselect entry Esc
Reorder selected entry {deviceAlt} + {deviceMod} + /
Copy selected entry {deviceMod} + C
Paste above {deviceMod} + Shift + V
Paste below {deviceMod} + V
Clone selected entry {deviceMod} + D
Delete selected entry {deviceAlt} + Backspace
Add event below {deviceAlt} + E
Add event above {deviceAlt} + Shift + E
Add group below {deviceAlt} + G
Add group above {deviceAlt} + Shift + G
Add milestone below {deviceAlt} + M
Add milestone above {deviceAlt} + Shift + M
Add delay below {deviceAlt} + D
Add delay above {deviceAlt} + Shift + D
); } function AuxKey({ children }: PropsWithChildren) { return {children}; } function Kbd({ children }: PropsWithChildren) { return {children}; }