Keyboard Shortcuts
Keyboard shortcut reference for core editing commands and productivity workflows.
Text formatting
Ctrl/Cmd + B: BoldCtrl/Cmd + I: ItalicCtrl/Cmd + U: UnderlineCtrl/Cmd + Shift + X: Strikethrough
Blocks and lists
Ctrl/Cmd + 0: ParagraphCtrl/Cmd + 1..6: HeadingsCtrl/Cmd + Shift + Q: BlockquoteCtrl/Cmd + Shift + C: Code blockCtrl/Cmd + Shift + 8: Bullet listCtrl/Cmd + Shift + 7: Ordered list
Alignment and direction
Ctrl/Cmd + L: Align leftCtrl/Cmd + E: Align centerCtrl/Cmd + R: Align rightCtrl/Cmd + J: Justify
Editing and workflow
Ctrl/Cmd + K: Link dialogCtrl/Cmd + Shift + V: Paste as plain textTab: IndentShift + Tab: Outdent
History
Ctrl/Cmd + Z: UndoCtrl/Cmd + Y: RedoCtrl/Cmd + Shift + Z: Redo
Plugin-specific examples
Mod-Shift-j: Emoji dialogMod-Shift-m: Math dialogMod-p: PrintF7: Spell-check toggle
API Surface
| Surface | Type | Notes |
|---|---|---|
Plugin keymap declarations | Config API | Maps keystrokes to plugin command identifiers |
| Runtime command dispatcher | Execution API | Executes mapped command in active editor instance |
useKeyboardShortcuts(options) | React hook API | Wrapper-level keyboard shortcut registration/control |
| Toolbar command mapping | UI API | Maintains parity between shortcuts and visible actions |
Config Matrix
| Scope | Config | Purpose |
|---|---|---|
| Plugin keymap | per-plugin keymap | Adds/remaps shortcuts |
| App-level handling | host app key listeners | Prevent/allow global conflicts |
Validation Checklist
- Shortcuts trigger expected commands in focused editor
- Browser/system shortcut collisions are handled explicitly
- Multi-instance pages apply shortcuts to active editor only