Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7525a00

Browse files
committed
Purge aideChat
1 parent e479401 commit 7525a00

File tree

130 files changed

+106
-26873
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+106
-26873
lines changed

build/lib/i18n.resources.json

-8
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,6 @@
186186
"name": "vs/workbench/contrib/astNavigation",
187187
"project": "vscode-workbench"
188188
},
189-
{
190-
"name": "vs/workbench/contrib/aideChat",
191-
"project": "vscode-workbench"
192-
},
193-
{
194-
"name": "vs/workbench/contrib/inlineAideChat",
195-
"project": "vscode-workbench"
196-
},
197189
{
198190
"name": "vs/workbench/contrib/aideProbe",
199191
"project": "vscode-workbench"

build/lib/stylelint/vscode-known-variables.json

-7
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
"--vscode-activityBarTop-dropBorder",
1818
"--vscode-activityBarTop-foreground",
1919
"--vscode-activityBarTop-inactiveForeground",
20-
"--vscode-aideChat-avatarBackground",
21-
"--vscode-aideChat-avatarForeground",
22-
"--vscode-aideChat-requestBackground",
23-
"--vscode-aideChat-requestBorder",
24-
"--vscode-aideChat-slashCommandBackground",
25-
"--vscode-aideChat-slashCommandForeground",
2620
"--vscode-badge-background",
2721
"--vscode-badge-foreground",
2822
"--vscode-banner-background",
@@ -808,7 +802,6 @@
808802
"--vscode-window-inactiveBorder"
809803
],
810804
"others": [
811-
"--size",
812805
"--background-dark",
813806
"--background-light",
814807
"--dropdown-padding-bottom",

src/vs/base/common/network.ts

-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,6 @@ export namespace Schemas {
8484
/** Scheme used for the chat input editor. */
8585
export const vscodeChatSesssion = 'vscode-chat-editor';
8686

87-
/** Scheme used for the aide chat input editor. */
88-
export const vscodeAideChatSesssion = 'vscode-aidechat-editor';
89-
9087
/**
9188
* Scheme used internally for webviews that aren't linked to a resource (i.e. not custom editors)
9289
*/

src/vs/platform/actions/common/actions.ts

-8
Original file line numberDiff line numberDiff line change
@@ -218,14 +218,6 @@ export class MenuId {
218218
static readonly MergeInputResultToolbar = new MenuId('MergeToolbarResultToolbar');
219219
static readonly InlineSuggestionToolbar = new MenuId('InlineSuggestionToolbar');
220220
static readonly InlineEditToolbar = new MenuId('InlineEditToolbar');
221-
static readonly AideChatContext = new MenuId('AideChatContext');
222-
static readonly AideChatCodeBlock = new MenuId('AideChatCodeblock');
223-
static readonly AideChatCompareBlock = new MenuId('AideChatCompareBlock');
224-
static readonly AideChatMessageTitle = new MenuId('AideChatMessageTitle');
225-
static readonly AideChatExecute = new MenuId('AideChatExecute');
226-
static readonly AideChatExecutePrimary = new MenuId('AideChatExecutePrimary');
227-
static readonly AideChatExecuteSecondary = new MenuId('AideChatExecuteSecondary');
228-
static readonly AideChatInputSide = new MenuId('AideChatInputSide');
229221
static readonly ChatContext = new MenuId('ChatContext');
230222
static readonly ChatCodeBlock = new MenuId('ChatCodeblock');
231223
static readonly ChatCompareBlock = new MenuId('ChatCompareBlock');

src/vs/platform/extensions/common/extensionsApiProposals.ts

-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ const _allApiProposals = {
1818
aiTextSearchProviderNew: {
1919
proposal: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.aiTextSearchProviderNew.d.ts',
2020
},
21-
aideChatParticipant: {
22-
proposal: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.aideChatParticipant.d.ts',
23-
},
24-
aideChatVariableResolver: {
25-
proposal: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.aideChatVariableResolver.d.ts',
26-
},
2721
aideGetCodeLensProvider: {
2822
proposal: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.aideGetCodeLensProvider.d.ts',
2923
},

src/vs/workbench/api/browser/extensionHost.contribution.ts

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ import { StatusBarItemsExtensionPoint } from './statusBarExtensionPoint.js';
1818
import './mainThreadLocalization.js';
1919
import './mainThreadBulkEdits.js';
2020
import './mainThreadModelSelection.js';
21-
import './mainThreadAideChatAgents2.js';
22-
import './mainThreadAideChatVariables.js';
2321
import './mainThreadAideProbeProvider.js';
2422
import './mainThreadLanguageModels.js';
2523
import './mainThreadChatAgents2.js';

0 commit comments

Comments
 (0)