Features
Command Palette
Quick access to all dashboard actions through a keyboard-driven interface.

Opening the Command Palette
Press the keyboard shortcut to open the command palette modal:
| Platform | Shortcut |
|---|---|
| macOS | ⌘K |
| Windows/Linux | Ctrl+K |
Press the same shortcut again or Escape to close the palette.
Available Commands
The command palette organizes commands into groups for easy discovery.
Actions
| Command | Description |
|---|---|
| New | Create a new presentation |
| Import | Import existing Slidev presentation(s) into your workspace |
| Toggle theme | Switch between light and dark mode |
| Toggle view | Switch between grid and list layout |
Present
Start the dev server for any presentation and open it in your browser:
Present > [presentation-name]
Export
Export any presentation to PDF:
Export > [presentation-name]
Keyboard Navigation
Navigate the command palette entirely with your keyboard.
| Key | Action |
|---|---|
↑ / ↓ | Move selection up or down |
Enter | Execute the selected command |
Escape | Close the command palette |
| Type text | Filter commands by searching |
The palette uses fuzzy search, so you can type partial matches to quickly find commands. For example, typing "tog" will match both "Toggle theme" and "Toggle view".
Header Input Alternative
You can also type commands directly in the terminal-style header input without opening the command palette modal. The header provides:
- Autocomplete: As you type, matching commands appear in a dropdown
- Ghost text: Tab-completable suggestions appear as you type
- Direct execution: Press
Enterto run a command
Supported text commands:
new # Create a new presentation
import # Open import dialog
present <name> # Start dev server for a presentation
export <name> # Export a presentation to PDF
Start typing anywhere in the dashboard (when no input is focused) to automatically focus the header input and begin searching.
