From 5f4efa8d21d768805022cf08bf4e1f8a55a480cf Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Mon, 8 Apr 2024 07:17:52 -0700 Subject: [PATCH] Enable experimentalInlineChat by default This is the first step to action #4059, after this is released the keybinding in Copilot can be removed and then this setting can be removed. Part of #4059 --- .../workbench/contrib/terminal/common/terminalConfiguration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts index bdbe9c562aa..e38e3c1463f 100644 --- a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts +++ b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts @@ -693,7 +693,7 @@ const terminalConfiguration: IConfigurationNode = { [TerminalSettingId.ExperimentalInlineChat]: { markdownDescription: localize('terminal.integrated.experimentalInlineChat', "Whether to enable the upcoming experimental inline terminal chat UI."), type: 'boolean', - default: false + default: true } } };