Skip to content

Command Palette

nick3 edited this page May 28, 2026 · 1 revision

Command Palette

Ctrl+P (or Ctrl+Shift+P) opens a searchable list of every action in the app. If you can't remember a hotkey, search here.


Open / close

Ctrl+P Open palette
Ctrl+Shift+P Open palette (alias for VS Code muscle memory)
Esc Close without action
Enter Run highlighted action
↑ ↓ Navigate results

What's in there

Everything from the menu bar, every keyboard-shortcut-bound action, and a few discoverable-only entries:

  • Workspace: new, switch to N, close, rename, export, import
  • Pane: new (terminal/browser/SSH), close, restart, maximize, focus next/previous, swap
  • Grid: resize, change layout
  • AI: toggle chat, settings, clear chat
  • Goal: open dashboard, new goal, abort active goal
  • Browser: bookmarks, history, downloads, saved logins
  • SSH: open server manager, attach to tmux session
  • Settings: open settings, toggle broadcast mode, toggle bypass mode
  • Dev: toggle DevTools, reload app

Component: src/renderer/components/CommandPalette.tsx. Each action has a shortcut field shown on the right, so the palette also acts as a hotkey cheat sheet.


Search

Fuzzy match on the action label. Recently-used actions are pinned to the top so frequent actions are one keystroke away after the first use.


See also

Clone this wiki locally