-
Notifications
You must be signed in to change notification settings - Fork 0
1.4 Keyboard Shortcuts
inactinique edited this page Feb 9, 2026
·
8 revisions
This document lists all keyboard shortcuts available in ClioDeck.
Note: On macOS, use
Cmdinstead ofCtrl.
| Shortcut | Action | Description |
|---|---|---|
Ctrl+N |
New file | Creates a new blank Markdown file |
Ctrl+O |
Open file | Opens an existing Markdown file |
Ctrl+S |
Save | Saves the current file |
Ctrl+Shift+N |
New project | Creates a new project |
Ctrl+Shift+O |
Open project | Opens an existing project |
Ctrl+E |
Export PDF | Opens the PDF export dialog |
Ctrl+, |
Settings | Opens the configuration panel |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+Z |
Undo | Undoes the last modification |
Ctrl+Y (Win/Linux) or Cmd+Shift+Z (macOS) |
Redo | Redoes the last undone modification |
Ctrl+X |
Cut | Cuts selected text |
Ctrl+C |
Copy | Copies selected text |
Ctrl+V |
Paste | Pastes text from clipboard |
Ctrl+A |
Select all | Selects all content |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+B |
Bold | Inserts or formats text as bold |
Ctrl+I |
Italic | Inserts or formats text as italic |
Ctrl+L |
Insert link | Inserts a Markdown link [text](url)
|
Ctrl+' |
Insert citation | Inserts a BibTeX citation [@key]
|
Ctrl+Shift+T |
Insert table | Inserts a Markdown table |
Ctrl+Shift+Q |
Insert blockquote | Inserts a blockquote block |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+Shift+S |
Document Stats | Shows document statistics (words, characters, etc.) |
Ctrl+Shift+L |
Citation Suggestions | Shows citation suggestions for selected text |
Ctrl+Shift+C |
Check Citations | Validates citations in the document |
| Shortcut | Action | Description |
|---|---|---|
Alt+1 |
Projects panel | Activates project management panel |
Alt+2 |
Bibliography panel | Activates bibliography panel |
Alt+3 |
Chat panel | Activates RAG chat panel |
Alt+4 |
Corpus panel | Activates corpus exploration panel |
Ctrl+0 |
Reset zoom | Restores default zoom |
Ctrl++ |
Zoom in | Increases zoom level |
Ctrl+- |
Zoom out | Decreases zoom level |
F11 |
Full screen | Toggles full screen mode |
F12 |
DevTools | Opens developer tools |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+Shift+B |
Import BibTeX | Opens BibTeX import dialog |
Ctrl+F |
Search citations | Focuses on citation search bar |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+Shift+F |
Insert Footnote | Inserts a footnote at cursor position |
| Shortcut | Action | Description |
|---|---|---|
Ctrl+W (Win/Linux) / Cmd+W (macOS) |
Close window | Closes current window |
Cmd+M (macOS only) |
Minimize | Minimizes window to dock |
Ctrl+Q (Win/Linux) / Cmd+Q (macOS) |
Quit | Quits the application |
Use Alt+1 through Alt+4 shortcuts to quickly navigate between different panels without using the mouse.
-
Ctrl+N- New file - Write your content
-
Ctrl+B/Ctrl+I- Quick formatting -
Ctrl+'- Insert citations -
Ctrl+S- Save regularly -
Ctrl+E- Export to PDF when done
-
Ctrl+Shift+B- Import your BibTeX file -
Alt+2- Switch to Bibliography panel -
Ctrl+F- Search for a citation - Click "Insert" or use
Ctrl+'in editor
-
Alt+3- Quickly access Chat panel - Type your question in the input field
- Press
Enterto send,Shift+Enterfor a line break -
Escape- Cancel an ongoing generation
Keyboard shortcuts are defined in the src/main/menu.ts file. To modify them:
- Open
src/main/menu.ts - Modify the
acceleratorproperty of the desired menu item - Rebuild the application with
npm run build - Restart the application
Shortcuts use Electron Accelerator format:
-
CmdOrCtrl-Cmdon macOS,Ctrlon Windows/Linux -
Shift- Shift key -
Alt- Alt key (Option on macOS) - Combine with
+:CmdOrCtrl+Shift+B
You can use:
- Letters:
A-Z - Numbers:
0-9 - Function keys:
F1-F24 - Special keys:
Space,Tab,Enter,Escape,Backspace,Delete - Symbols:
+,-,=,[,], etc.