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
parent c6dd6be401
commit e10490d479
+8
View File
@@ -126,6 +126,14 @@ export default function NewSessionPage() {
keybind: "ctrl+l", keybind: "ctrl+l",
onSelect: () => promptInputV2Controller.restoreFocus(), 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(() => { createEffect(() => {