We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2006259 commit e82542bCopy full SHA for e82542b
1 file changed
packages/app/src/pages/session/use-session-commands.tsx
@@ -547,13 +547,15 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
547
description: language.t("command.agent.cycle.description"),
548
keybind: "mod+.",
549
slash: "agent",
550
+ disabled: desktopV2() && !settings.general.showCustomAgents(),
551
onSelect: () => local.agent.move(1),
552
}),
553
agentCommand({
554
id: "agent.cycle.reverse",
555
title: language.t("command.agent.cycle.reverse"),
556
description: language.t("command.agent.cycle.reverse.description"),
557
keybind: "shift+mod+.",
558
559
onSelect: () => local.agent.move(-1),
560
561
]
0 commit comments