|
|
@@ -136,9 +136,7 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|
|
const contextCommand = withCategory(language.t("command.category.context"))
|
|
|
const viewCommand = withCategory(language.t("command.category.view"))
|
|
|
const terminalCommand = withCategory(language.t("command.category.terminal"))
|
|
|
- const modelCommand = withCategory(language.t("command.category.model"))
|
|
|
const mcpCommand = withCategory(language.t("command.category.mcp"))
|
|
|
- const agentCommand = withCategory(language.t("command.category.agent"))
|
|
|
const permissionsCommand = withCategory(language.t("command.category.permissions"))
|
|
|
|
|
|
const isAutoAcceptActive = () => {
|
|
|
@@ -271,13 +269,6 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|
|
view().terminal.open()
|
|
|
}
|
|
|
|
|
|
- const chooseModel = () => {
|
|
|
- void openDialog(
|
|
|
- () => import("@/components/dialog-select-model"),
|
|
|
- (x) => dialog.show(() => <x.DialogSelectModel model={local.model} />),
|
|
|
- )
|
|
|
- }
|
|
|
-
|
|
|
const chooseMcp = () => {
|
|
|
void openDialog(
|
|
|
() => import("@/components/dialog-select-mcp"),
|
|
|
@@ -555,24 +546,6 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|
|
}),
|
|
|
]
|
|
|
|
|
|
- const modelCmds = () => [
|
|
|
- modelCommand({
|
|
|
- id: "model.choose",
|
|
|
- title: language.t("command.model.choose"),
|
|
|
- description: language.t("command.model.choose.description"),
|
|
|
- keybind: "mod+'",
|
|
|
- slash: "model",
|
|
|
- onSelect: chooseModel,
|
|
|
- }),
|
|
|
- modelCommand({
|
|
|
- id: "model.variant.cycle",
|
|
|
- title: language.t("command.model.variant.cycle"),
|
|
|
- description: language.t("command.model.variant.cycle.description"),
|
|
|
- keybind: "shift+mod+d",
|
|
|
- onSelect: () => local.model.variant.cycle(),
|
|
|
- }),
|
|
|
- ]
|
|
|
-
|
|
|
const mcpCmds = () => [
|
|
|
mcpCommand({
|
|
|
id: "mcp.toggle",
|
|
|
@@ -584,26 +557,6 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|
|
}),
|
|
|
]
|
|
|
|
|
|
- const agentCmds = () => [
|
|
|
- agentCommand({
|
|
|
- id: "agent.cycle",
|
|
|
- title: language.t("command.agent.cycle"),
|
|
|
- description: language.t("command.agent.cycle.description"),
|
|
|
- keybind: "mod+.",
|
|
|
- slash: "agent",
|
|
|
- disabled: !settings.visibility.customAgents(),
|
|
|
- onSelect: () => local.agent.move(1),
|
|
|
- }),
|
|
|
- agentCommand({
|
|
|
- id: "agent.cycle.reverse",
|
|
|
- title: language.t("command.agent.cycle.reverse"),
|
|
|
- description: language.t("command.agent.cycle.reverse.description"),
|
|
|
- keybind: "shift+mod+.",
|
|
|
- disabled: !settings.visibility.customAgents(),
|
|
|
- onSelect: () => local.agent.move(-1),
|
|
|
- }),
|
|
|
- ]
|
|
|
-
|
|
|
const permissionsCmds = () => [
|
|
|
permissionsCommand({
|
|
|
id: "permissions.autoaccept",
|
|
|
@@ -624,9 +577,7 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|
|
...viewCmds(),
|
|
|
...terminalCmds(),
|
|
|
...messageCmds(),
|
|
|
- ...modelCmds(),
|
|
|
...mcpCmds(),
|
|
|
- ...agentCmds(),
|
|
|
...permissionsCmds(),
|
|
|
])
|
|
|
}
|