mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
remove unused resources (#290540)
This commit is contained in:
committed by
GitHub
parent
67655b30f5
commit
f8342573c6
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"name": "Agent Sessions",
|
||||
"icon": "copilot",
|
||||
"settings": {
|
||||
"workbench.statusBar.visible": false,
|
||||
"workbench.activityBar.location": "top",
|
||||
"workbench.sideBar.location": "right",
|
||||
"workbench.secondarySideBar.forceMaximized": true,
|
||||
"chat.restoreLastPanelSession": true,
|
||||
"workbench.startupEditor": "none",
|
||||
"workbench.editor.restoreEditors": false,
|
||||
"chat.agentsControl.enabled": true,
|
||||
"chat.unifiedAgentsBar.enabled": true,
|
||||
"files.autoSave": "afterDelay",
|
||||
"window.title": "Agent Sessions",
|
||||
"workbench.editor.showTabs": "single",
|
||||
"chat.agentsControl.clickBehavior": "focus",
|
||||
"workbench.tips.enabled": false,
|
||||
"chat.agent.maxRequests": 1000,
|
||||
"workbench.layoutControl.type": "toggles",
|
||||
"inlineChat.affordance": "editor",
|
||||
"inlineChat.renderMode": "hover",
|
||||
"github.copilot.chat.claudeCode.enabled": true,
|
||||
"github.copilot.chat.languageContext.typescript.enabled": true,
|
||||
"diffEditor.renderSideBySide": false,
|
||||
"diffEditor.hideUnchangedRegions.enabled": true
|
||||
}
|
||||
}
|
||||
@@ -94,11 +94,6 @@ export class UserDataProfilesService extends Disposable implements IUserDataProf
|
||||
return reviveProfile(result, this.profilesHome.scheme);
|
||||
}
|
||||
|
||||
async createSystemProfile(id: string): Promise<IUserDataProfile> {
|
||||
const result = await this.channel.call<UriDto<IUserDataProfile>>('createSystemProfile', [id]);
|
||||
return reviveProfile(result, this.profilesHome.scheme);
|
||||
}
|
||||
|
||||
async createTransientProfile(workspaceIdentifier?: IAnyWorkspaceIdentifier): Promise<IUserDataProfile> {
|
||||
const result = await this.channel.call<UriDto<IUserDataProfile>>('createTransientProfile', [workspaceIdentifier]);
|
||||
return reviveProfile(result, this.profilesHome.scheme);
|
||||
|
||||
Reference in New Issue
Block a user