feat(app): add project selector shortcut (#39074)

This commit is contained in:
Brendan Allan 2026-07-27 17:15:35 +08:00 committed by GitHub
commit b06768aa8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,6 +126,14 @@ export default function NewSessionPage() {
keybind: "ctrl+l",
onSelect: () => promptInputV2Controller.restoreFocus(),
},
{
id: "project.select",
title: language.t("session.new.project.search"),
category: language.t("command.category.project"),
keybind: "mod+shift+o",
disabled: projectController.empty(),
onSelect: () => projectController.setOpen(true),
},
])
createEffect(() => {