Knowledge Base
Admin

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
Strikethroughβ€”S
Inline codeβ€”<>

Block types

ActionShortcutToolbar
Heading 1 / 2 / 3β€”H1 / H2 / H3
Paragraphβ€”ΒΆ
Bullet listβ€”β€’
Numbered listβ€”1.
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 / belowβ€”Cell menu (right of cell)
Insert column left / rightβ€”Cell menu
Delete row / columnβ€”Cell 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