fix: keybinds for agent and model selection

This commit is contained in:
Adam 2025-12-15 15:19:19 -06:00
parent e16487b804
commit 4fd9a19fbb
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -243,6 +243,7 @@ export default function Page() {
title: "Choose model",
description: "Select a different model",
category: "Model",
keybind: "mod+'",
slash: "model",
onSelect: () => dialog.replace(() => <DialogSelectModel />),
},
@ -251,6 +252,7 @@ export default function Page() {
title: "Cycle agent",
description: "Switch to the next agent",
category: "Agent",
keybind: "mod+.",
slash: "agent",
onSelect: () => local.agent.move(1),
},