diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx index 9a000f953c0..8a38d9e6f1c 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -546,6 +546,7 @@ export function Session() { { title: showThinking() ? "Hide thinking" : "Show thinking", value: "session.toggle.thinking", + keybind: "display_thinking", category: "Session", slash: { name: "thinking", diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 5fde2aed87d..243568cd751 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -882,6 +882,7 @@ export namespace Config { terminal_suspend: z.string().optional().default("ctrl+z").describe("Suspend terminal"), terminal_title_toggle: z.string().optional().default("none").describe("Toggle terminal title"), tips_toggle: z.string().optional().default("h").describe("Toggle tips on home screen"), + display_thinking: z.string().optional().default("none").describe("Toggle thinking blocks visibility"), }) .strict() .meta({ diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 8050b47d61d..cb1606e3f61 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -1309,6 +1309,10 @@ export type KeybindsConfig = { * Toggle tips on home screen */ tips_toggle?: string + /** + * Toggle thinking blocks visibility + */ + display_thinking?: string } /** diff --git a/packages/web/src/content/docs/keybinds.mdx b/packages/web/src/content/docs/keybinds.mdx index 51508a4f864..25fe2a1d910 100644 --- a/packages/web/src/content/docs/keybinds.mdx +++ b/packages/web/src/content/docs/keybinds.mdx @@ -97,7 +97,8 @@ OpenCode has a list of keybinds that you can customize through the OpenCode conf "history_next": "down", "terminal_suspend": "ctrl+z", "terminal_title_toggle": "none", - "tips_toggle": "h" + "tips_toggle": "h", + "display_thinking": "none" } } ```