From bf278c93ed08df9aef5f6f589848e25fdca8e1fe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Feb 2026 06:32:45 +0000 Subject: [PATCH 1/2] Initial plan From 1551c1110a7bce2543391083daaed7ecaeee58eb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Feb 2026 06:36:20 +0000 Subject: [PATCH 2/2] Set SimpleTerminalCollapsible default true for insiders, false for stable Co-authored-by: justschen <54879025+justschen@users.noreply.github.com> --- src/vs/workbench/contrib/chat/browser/chat.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts index b7cde85231280..fdb1cfc2e0356 100644 --- a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts +++ b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts @@ -1127,7 +1127,7 @@ configurationRegistry.registerConfiguration({ }, [ChatConfiguration.SimpleTerminalCollapsible]: { type: 'boolean', - default: false, + default: typeof product.quality === 'string' && product.quality !== 'stable', // only enable as default in insiders markdownDescription: nls.localize('chat.tools.terminal.simpleCollapsible', "When enabled, terminal tool calls are always displayed in a collapsible container with a simplified view."), tags: ['experimental'], },