MyWork24 Knowledge Base
Article

Editor keyboard shortcuts field definitions

Edit

Every keyboard shortcut available in The Editor, grouped by purpose. The same list appears in the Shortcuts panel on the right of the editor at desktop widths (collapsible via the ✕ button) and as a bottom-sheet modal on smaller screens.

Modifier conventions:

  • Ctrl is Cmd on macOS — the editor maps both to ProseMirror's Mod- prefix.
  • Shortcuts only fire while the editor canvas has focus. If a click moved focus to a toolbar button, the shortcut won't reach the editor — most toolbar buttons mitigate this with onMouseDown + preventDefault.

Text marks

ActionShortcutToolbar
BoldCtrl+BB
ItalicCtrl+II
UnderlineCtrl+UU
StrikethroughS
Inline code<>

Block types

ActionShortcutToolbar
Heading 1 / 2 / 3H1 / H2 / H3
Paragraph
Bullet list
Numbered list1.
Insert 3×3 table+Table
Code block(paste a fenced ``` block)

Callouts

ActionShortcutToolbar
Note callout📝
Tip callout💡
Warning callout⚠️
Danger callout
Exit container block (callout / blockquote / code block)Ctrl+Enter

Ctrl+Enter is the single most under-discovered shortcut in the editor. Without it, Enter keeps you trapped inside a callout adding more paragraphs. With it, you escape to a fresh paragraph below.

ActionShortcutToolbar
Add or edit link (opens dialog)Ctrl+K🔗
Remove link from selection🚫🔗

The link dialog has two tabs — External URL for arbitrary https:// links, and KB article for a debounced search across the Knowledge Base. Pick a result and the dialog inserts a link with href="/a/<slug>" so the link works in the public reader, in The chat-widget Help tab, and in any future surface that uses the same article URLs.

Tables

ActionShortcutToolbar
Next cellTab
Previous cellShift+Tab
Insert row above / belowCell menu (right of cell)
Insert column left / rightCell menu
Delete row / columnCell menu

The cell menu appears as a small floating button to the right of the active cell when the cursor is inside a table.

Lists

ActionShortcut
Indent (sub-bullet / sub-step)Tab
OutdentShift+Tab
New list itemEnter
Leave list (when on an empty item)Enter twice

Media

See Insert images and embeds for the full insertion workflow. Shortcut summary:

ActionShortcutToolbar
Insert image (file picker)🖼️
Drop or paste an image into the canvasCtrl+V when an image is on the clipboard
Upload video file📹
Embed YouTube / Vimeo (opens dialog)📺

History

ActionShortcutToolbar
UndoCtrl+Z
RedoCtrl+Y or Ctrl+Shift+Z

Undo history is in-memory per editing session. Closing the tab discards it. The published / drafted state on disk is unaffected by undo / redo.

Dialogs

ActionShortcut
Cancel any open dialog (Link, Embed, Shortcuts modal)Esc
Confirm in single-input dialogs (URL field)Enter
Click backdropCancels the dialog

Related articles