@vscode/vscode-settings-history 0.0.2-3 → 0.0.2-31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/history.json +107793 -0
- package/dist/vscode-settings.d.ts +1063 -40
- package/package.json +1 -1
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
// ── Patch utility ──
|
|
5
5
|
type Patch<Base, Added extends Record<string, unknown> = {}, Removed extends string = never> = Omit<Base, Removed> & Added;
|
|
6
6
|
|
|
7
|
+
// ── Insider build brand ──
|
|
8
|
+
// Wraps the nested build-stamp → settings map for insider versions so it can
|
|
9
|
+
// be discriminated unambiguously from a stable settings type. A structural
|
|
10
|
+
// check (e.g. `extends Record<string, unknown>`) is not reliable here:
|
|
11
|
+
// stable settings interfaces match that shape too because all their
|
|
12
|
+
// properties are optional and `unknown` accepts any value, which would
|
|
13
|
+
// misroute stable lookups through the insider branch.
|
|
14
|
+
declare const InsiderBuildsBrand: unique symbol;
|
|
15
|
+
interface InsiderBuilds<T> { readonly [InsiderBuildsBrand]: T }
|
|
16
|
+
|
|
7
17
|
// ── Baseline: 1.100.0 (475 settings) ──
|
|
8
18
|
export interface VscodeSettings_1_100_0 {
|
|
9
19
|
readonly 'css.completion.completePropertyWithSemicolon'?: boolean;
|
|
@@ -962,11 +972,11 @@ export type VscodeSettings_1_100_2 = Patch<VscodeSettings_1_100_1, {
|
|
|
962
972
|
readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
|
|
963
973
|
}, never>;
|
|
964
974
|
|
|
965
|
-
// ── 1.101.0: +
|
|
975
|
+
// ── 1.101.0: +1, ~1, -6 ──
|
|
966
976
|
export type VscodeSettings_1_101_0 = Patch<VscodeSettings_1_100_0, {
|
|
967
977
|
readonly 'html.autoCreateQuotes'?: boolean;
|
|
968
978
|
readonly 'js/ts.hover.maximumLength'?: number;
|
|
969
|
-
}, '
|
|
979
|
+
}, 'javascript.implicitProjectConfig.checkJs' | 'javascript.implicitProjectConfig.experimentalDecorators' | 'javascript.preferences.renameShorthandProperties' | 'typescript.preferences.renameShorthandProperties' | 'typescript.tsserver.experimental.useVsCodeWatcher' | 'typescript.tsserver.useSeparateSyntaxServer'>;
|
|
970
980
|
|
|
971
981
|
// ── 1.101.2: +470 ──
|
|
972
982
|
export type VscodeSettings_1_101_2 = Patch<VscodeSettings_1_101_1, {
|
|
@@ -1442,7 +1452,7 @@ export type VscodeSettings_1_101_2 = Patch<VscodeSettings_1_101_1, {
|
|
|
1442
1452
|
readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
|
|
1443
1453
|
}, never>;
|
|
1444
1454
|
|
|
1445
|
-
// ── 1.102.0:
|
|
1455
|
+
// ── 1.102.0: ~2 ──
|
|
1446
1456
|
export type VscodeSettings_1_102_0 = Patch<VscodeSettings_1_101_0, {
|
|
1447
1457
|
readonly 'debug.javascript.debugByLinkOptions'?: unknown;
|
|
1448
1458
|
readonly 'markdown.copyFiles.destination'?: Record<string, unknown>;
|
|
@@ -1922,7 +1932,7 @@ export type VscodeSettings_1_102_2 = Patch<VscodeSettings_1_102_1, {
|
|
|
1922
1932
|
readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
|
|
1923
1933
|
}, never>;
|
|
1924
1934
|
|
|
1925
|
-
// ── 1.103.0: +
|
|
1935
|
+
// ── 1.103.0: +2, ~1, -1 ──
|
|
1926
1936
|
export type VscodeSettings_1_103_0 = Patch<VscodeSettings_1_102_0, {
|
|
1927
1937
|
readonly 'git.detectWorktrees'?: boolean;
|
|
1928
1938
|
readonly 'git.detectWorktreesLimit'?: number;
|
|
@@ -2404,7 +2414,7 @@ export type VscodeSettings_1_103_2 = Patch<VscodeSettings_1_103_1, {
|
|
|
2404
2414
|
readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
|
|
2405
2415
|
}, never>;
|
|
2406
2416
|
|
|
2407
|
-
// ── 1.104.0: +
|
|
2417
|
+
// ── 1.104.0: +2, ~2 ──
|
|
2408
2418
|
export type VscodeSettings_1_104_0 = Patch<VscodeSettings_1_103_0, {
|
|
2409
2419
|
readonly 'github-authentication.useElectronFetch'?: boolean;
|
|
2410
2420
|
readonly 'js/ts.implicitProjectConfig.strict'?: boolean;
|
|
@@ -3382,11 +3392,11 @@ export type VscodeSettings_1_106_2 = Patch<VscodeSettings_1_106_1, {
|
|
|
3382
3392
|
readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
|
|
3383
3393
|
}, never>;
|
|
3384
3394
|
|
|
3385
|
-
// ── 1.107.0: ~2
|
|
3395
|
+
// ── 1.107.0: ~2 ──
|
|
3386
3396
|
export type VscodeSettings_1_107_0 = Patch<VscodeSettings_1_106_0, {
|
|
3387
3397
|
readonly 'git.detectWorktreesLimit'?: number;
|
|
3388
3398
|
readonly 'microsoft-authentication.implementation'?: 'msal' | 'msal-no-broker';
|
|
3389
|
-
},
|
|
3399
|
+
}, never>;
|
|
3390
3400
|
|
|
3391
3401
|
// ── 1.108.0: +1167 ──
|
|
3392
3402
|
export type VscodeSettings_1_108_0 = Patch<VscodeSettings_1_107_0, {
|
|
@@ -6212,7 +6222,7 @@ export type VscodeSettings_1_108_2 = Patch<VscodeSettings_1_108_1, {
|
|
|
6212
6222
|
readonly 'zenMode.silentNotifications'?: boolean;
|
|
6213
6223
|
}, never>;
|
|
6214
6224
|
|
|
6215
|
-
// ── 1.109.0: +
|
|
6225
|
+
// ── 1.109.0: +41, ~10, -8 ──
|
|
6216
6226
|
export type VscodeSettings_1_109_0 = Patch<VscodeSettings_1_108_0, {
|
|
6217
6227
|
readonly 'chat.agent.thinking.terminalTools'?: boolean;
|
|
6218
6228
|
readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
|
|
@@ -6265,7 +6275,7 @@ export type VscodeSettings_1_109_0 = Patch<VscodeSettings_1_108_0, {
|
|
|
6265
6275
|
readonly 'workbench.editorinputs.browser'?: unknown;
|
|
6266
6276
|
readonly 'workbench.hover.reducedDelay'?: number;
|
|
6267
6277
|
readonly 'workbench.secondarySideBar.forceMaximized'?: boolean;
|
|
6268
|
-
}, 'chat.commandCenter.enabled' | 'chat.renderRelatedFiles' | 'chat.suspendThrottling' | 'chat.todoListTool.descriptionField' | 'chat.todoListTool.writeOnly' | 'chat.
|
|
6278
|
+
}, 'chat.commandCenter.enabled' | 'chat.renderRelatedFiles' | 'chat.suspendThrottling' | 'chat.todoListTool.descriptionField' | 'chat.todoListTool.writeOnly' | 'chat.viewTitle.enabled' | 'chat.viewWelcome.enabled' | 'terminal.integrated.windowsEnableConpty'>;
|
|
6269
6279
|
|
|
6270
6280
|
// ── 1.109.1: -3 ──
|
|
6271
6281
|
export type VscodeSettings_1_109_1 = Patch<VscodeSettings_1_109_0, {}, 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
@@ -6277,7 +6287,7 @@ export type VscodeSettings_1_109_2 = Patch<VscodeSettings_1_109_1, {
|
|
|
6277
6287
|
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
6278
6288
|
}, never>;
|
|
6279
6289
|
|
|
6280
|
-
// ── 1.109.3: +
|
|
6290
|
+
// ── 1.109.3: +6, ~2 ──
|
|
6281
6291
|
export type VscodeSettings_1_109_3 = Patch<VscodeSettings_1_109_2, {
|
|
6282
6292
|
readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
|
|
6283
6293
|
readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
|
|
@@ -6300,7 +6310,7 @@ export type VscodeSettings_1_109_5 = Patch<VscodeSettings_1_109_4, {
|
|
|
6300
6310
|
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
6301
6311
|
}, never>;
|
|
6302
6312
|
|
|
6303
|
-
// ── 1.110.0: +
|
|
6313
|
+
// ── 1.110.0: +120, ~148, -6 ──
|
|
6304
6314
|
export type VscodeSettings_1_110_0 = Patch<VscodeSettings_1_109_0, {
|
|
6305
6315
|
readonly 'accessibility.chat.showCheckmarks'?: boolean;
|
|
6306
6316
|
readonly 'accessibility.verbosity.find'?: boolean;
|
|
@@ -6570,7 +6580,7 @@ export type VscodeSettings_1_110_0 = Patch<VscodeSettings_1_109_0, {
|
|
|
6570
6580
|
readonly 'workbench.notifications.position'?: string;
|
|
6571
6581
|
readonly 'workbench.notifications.showInTitleBar'?: boolean;
|
|
6572
6582
|
readonly 'workbench.reduceTransparency'?: string;
|
|
6573
|
-
}, 'chat.alternativeToolAction.enabled' | 'chat.statusWidget.sku' | '
|
|
6583
|
+
}, 'chat.alternativeToolAction.enabled' | 'chat.statusWidget.sku' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'typescript.tsserver.enableRegionDiagnostics'>;
|
|
6574
6584
|
|
|
6575
6585
|
// ── 1.110.1: +3 ──
|
|
6576
6586
|
export type VscodeSettings_1_110_1 = Patch<VscodeSettings_1_110_0, {
|
|
@@ -6579,7 +6589,7 @@ export type VscodeSettings_1_110_1 = Patch<VscodeSettings_1_110_0, {
|
|
|
6579
6589
|
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
6580
6590
|
}, never>;
|
|
6581
6591
|
|
|
6582
|
-
// ── 1.111.0: +
|
|
6592
|
+
// ── 1.111.0: +9, ~1, -4 ──
|
|
6583
6593
|
export type VscodeSettings_1_111_0 = Patch<VscodeSettings_1_110_0, {
|
|
6584
6594
|
readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
|
|
6585
6595
|
readonly 'chat.autopilot.enabled'?: boolean;
|
|
@@ -6593,7 +6603,7 @@ export type VscodeSettings_1_111_0 = Patch<VscodeSettings_1_110_0, {
|
|
|
6593
6603
|
readonly 'terminal.integrated.experimental.aiProfileGrouping'?: boolean;
|
|
6594
6604
|
}, 'chat.agentsControl.clickBehavior' | 'chat.edits2.enabled' | 'chat.plugins.paths' | 'inlineChat.holdToSpeech'>;
|
|
6595
6605
|
|
|
6596
|
-
// ── 1.112.0: +
|
|
6606
|
+
// ── 1.112.0: +8, ~19 ──
|
|
6597
6607
|
export type VscodeSettings_1_112_0 = Patch<VscodeSettings_1_111_0, {
|
|
6598
6608
|
readonly 'chat.autopilot.enabled'?: boolean;
|
|
6599
6609
|
readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
|
|
@@ -6622,9 +6632,9 @@ export type VscodeSettings_1_112_0 = Patch<VscodeSettings_1_111_0, {
|
|
|
6622
6632
|
readonly 'update.titleBar'?: string;
|
|
6623
6633
|
readonly 'workbench.browser.pageZoom'?: string;
|
|
6624
6634
|
readonly 'workbench.browser.showInTitleBar'?: boolean;
|
|
6625
|
-
},
|
|
6635
|
+
}, never>;
|
|
6626
6636
|
|
|
6627
|
-
// ── 1.113.0: +15, ~
|
|
6637
|
+
// ── 1.113.0: +15, ~7, -2 ──
|
|
6628
6638
|
export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
|
|
6629
6639
|
readonly 'chat.agentsControl.enabled'?: string;
|
|
6630
6640
|
readonly 'chat.artifacts.enabled'?: boolean;
|
|
@@ -6632,6 +6642,7 @@ export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
|
|
|
6632
6642
|
readonly 'chat.editing.revealNextChangeOnResolve'?: boolean;
|
|
6633
6643
|
readonly 'chat.subagents.allowInvocationsFromSubagents'?: boolean;
|
|
6634
6644
|
readonly 'chat.tools.terminal.idlePollInterval'?: number;
|
|
6645
|
+
readonly 'chat.tools.terminal.sandbox.network'?: Record<string, unknown>;
|
|
6635
6646
|
readonly 'chat.tools.terminal.sandbox.network.allowTrustedDomains'?: unknown;
|
|
6636
6647
|
readonly 'chat.tools.terminal.sandbox.network.allowedDomains'?: unknown;
|
|
6637
6648
|
readonly 'chat.tools.terminal.sandbox.network.deniedDomains'?: unknown;
|
|
@@ -6647,9 +6658,9 @@ export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
|
|
|
6647
6658
|
readonly 'workbench.preferredDarkColorTheme'?: string;
|
|
6648
6659
|
readonly 'workbench.preferredLightColorTheme'?: string;
|
|
6649
6660
|
readonly 'workbench.shadows'?: boolean;
|
|
6650
|
-
}, 'chat.imageCarousel.enabled' | '
|
|
6661
|
+
}, 'chat.imageCarousel.enabled' | 'simpleBrowser.useIntegratedBrowser'>;
|
|
6651
6662
|
|
|
6652
|
-
// ── 1.114.0: +
|
|
6663
|
+
// ── 1.114.0: +11, ~11, -7 ──
|
|
6653
6664
|
export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
|
|
6654
6665
|
readonly 'chat.agent.sandbox'?: boolean;
|
|
6655
6666
|
readonly 'chat.agent.sandboxFileSystem.linux'?: Record<string, unknown>;
|
|
@@ -6662,6 +6673,8 @@ export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
|
|
|
6662
6673
|
readonly 'chat.customizations.providerApi.enabled'?: boolean;
|
|
6663
6674
|
readonly 'chat.signInTitleBar.enabled'?: boolean;
|
|
6664
6675
|
readonly 'chat.tips.enabled'?: boolean;
|
|
6676
|
+
readonly 'chat.tools.terminal.sandbox.linuxFileSystem'?: Record<string, unknown>;
|
|
6677
|
+
readonly 'chat.tools.terminal.sandbox.macFileSystem'?: Record<string, unknown>;
|
|
6665
6678
|
readonly 'chat.tools.terminal.sandbox.network'?: Record<string, unknown>;
|
|
6666
6679
|
readonly 'chat.tools.terminal.sandbox.network.allowedDomains'?: unknown[];
|
|
6667
6680
|
readonly 'chat.tools.terminal.sandbox.network.deniedDomains'?: unknown[];
|
|
@@ -6671,15 +6684,17 @@ export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
|
|
|
6671
6684
|
readonly 'workbench.editor.useModal'?: string;
|
|
6672
6685
|
readonly 'workbench.preferredDarkColorTheme'?: string;
|
|
6673
6686
|
readonly 'workbench.preferredLightColorTheme'?: string;
|
|
6674
|
-
}, 'chat.tools.terminal.sandbox.
|
|
6687
|
+
}, 'chat.tools.terminal.sandbox.network.allowTrustedDomains' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'terminal.integrated.experimental.aiProfileGrouping' | 'workbench.editor.modalMinWidth' | 'workbench.editorinputs.browser'>;
|
|
6675
6688
|
|
|
6676
|
-
// ── 1.115.0: +
|
|
6689
|
+
// ── 1.115.0: +10, ~5, -10 ──
|
|
6677
6690
|
export type VscodeSettings_1_115_0 = Patch<VscodeSettings_1_114_0, {
|
|
6678
6691
|
readonly 'chat.agent.sandbox.allowedNetworkDomains'?: unknown[];
|
|
6679
6692
|
readonly 'chat.agent.sandbox.deniedNetworkDomains'?: unknown[];
|
|
6680
6693
|
readonly 'chat.agent.sandbox.enabled'?: string;
|
|
6681
6694
|
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
6682
6695
|
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
6696
|
+
readonly 'chat.agent.sandboxFileSystem.linux'?: Record<string, unknown>;
|
|
6697
|
+
readonly 'chat.agent.sandboxFileSystem.mac'?: Record<string, unknown>;
|
|
6683
6698
|
readonly 'chat.customizations.providerApi.enabled'?: boolean;
|
|
6684
6699
|
readonly 'chat.generalPurposeAgent.enabled'?: boolean;
|
|
6685
6700
|
readonly 'chat.newSession.defaultMode'?: string;
|
|
@@ -6688,7 +6703,7 @@ export type VscodeSettings_1_115_0 = Patch<VscodeSettings_1_114_0, {
|
|
|
6688
6703
|
readonly 'files.watcherExclude'?: Record<string, unknown>;
|
|
6689
6704
|
readonly 'git.detectWorktrees'?: boolean;
|
|
6690
6705
|
readonly 'testing.coverageMinimapEnabled'?: boolean;
|
|
6691
|
-
}, 'chat.agent.sandbox' | 'chat.
|
|
6706
|
+
}, 'chat.agent.sandbox' | 'chat.statusWidget.anonymous' | 'chat.tools.terminal.sandbox.enabled' | 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.network' | 'chat.tools.terminal.sandbox.network.allowedDomains' | 'chat.tools.terminal.sandbox.network.deniedDomains' | 'update.statusBar' | 'update.titleBar'>;
|
|
6692
6707
|
|
|
6693
6708
|
// ── 1.116.0: +9, ~1, -4 ──
|
|
6694
6709
|
export type VscodeSettings_1_116_0 = Patch<VscodeSettings_1_115_0, {
|
|
@@ -7412,8 +7427,8 @@ export type VscodeSettings_1_120_0 = Patch<VscodeSettings_1_119_0, {
|
|
|
7412
7427
|
readonly 'explorer.confirmDragAndDrop'?: boolean;
|
|
7413
7428
|
readonly 'explorer.confirmPasteNative'?: boolean;
|
|
7414
7429
|
readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
|
|
7415
|
-
readonly 'explorer.copyPathSeparator'?: '/' | '
|
|
7416
|
-
readonly 'explorer.copyRelativePathSeparator'?: '/' | '
|
|
7430
|
+
readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
|
|
7431
|
+
readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
|
|
7417
7432
|
readonly 'explorer.decorations.badges'?: boolean;
|
|
7418
7433
|
readonly 'explorer.decorations.colors'?: boolean;
|
|
7419
7434
|
readonly 'explorer.enableDragAndDrop'?: boolean;
|
|
@@ -7459,9 +7474,7 @@ export type VscodeSettings_1_120_0 = Patch<VscodeSettings_1_119_0, {
|
|
|
7459
7474
|
readonly 'files.dialog.defaultPath'?: string;
|
|
7460
7475
|
readonly 'files.enableTrash'?: boolean;
|
|
7461
7476
|
readonly 'files.encoding'?: 'utf8' | 'utf8bom' | 'utf16le' | 'utf16be' | 'windows1252' | 'iso88591' | 'iso88593' | 'iso885915' | 'macroman' | 'cp437' | 'windows1256' | 'iso88596' | 'windows1257' | 'iso88594' | 'iso885914' | 'windows1250' | 'iso88592' | 'cp852' | 'windows1251' | 'cp866' | 'cp1125' | 'iso88595' | 'koi8r' | 'koi8u' | 'iso885913' | 'windows1253' | 'iso88597' | 'windows1255' | 'iso88598' | 'iso885910' | 'iso885916' | 'windows1254' | 'iso88599' | 'cp857' | 'windows1258' | 'gbk' | 'gb18030' | 'cp950' | 'big5hkscs' | 'shiftjis' | 'eucjp' | 'euckr' | 'windows874' | 'iso885911' | 'koi8ru' | 'koi8t' | 'gb2312' | 'cp865' | 'cp850';
|
|
7462
|
-
readonly 'files.eol'?: '
|
|
7463
|
-
' | '
|
|
7464
|
-
' | 'auto';
|
|
7477
|
+
readonly 'files.eol'?: '\n' | '\r\n' | 'auto';
|
|
7465
7478
|
readonly 'files.exclude'?: Record<string, unknown>;
|
|
7466
7479
|
readonly 'files.hotExit'?: 'off' | 'onExit' | 'onExitAndWindowClose';
|
|
7467
7480
|
readonly 'files.insertFinalNewline'?: boolean;
|
|
@@ -9461,8 +9474,8 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
|
|
|
9461
9474
|
readonly 'explorer.confirmDragAndDrop'?: boolean;
|
|
9462
9475
|
readonly 'explorer.confirmPasteNative'?: boolean;
|
|
9463
9476
|
readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
|
|
9464
|
-
readonly 'explorer.copyPathSeparator'?: '/' | '
|
|
9465
|
-
readonly 'explorer.copyRelativePathSeparator'?: '/' | '
|
|
9477
|
+
readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
|
|
9478
|
+
readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
|
|
9466
9479
|
readonly 'explorer.decorations.badges'?: boolean;
|
|
9467
9480
|
readonly 'explorer.decorations.colors'?: boolean;
|
|
9468
9481
|
readonly 'explorer.enableDragAndDrop'?: boolean;
|
|
@@ -9509,9 +9522,7 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
|
|
|
9509
9522
|
readonly 'files.dialog.defaultPath'?: string;
|
|
9510
9523
|
readonly 'files.enableTrash'?: boolean;
|
|
9511
9524
|
readonly 'files.encoding'?: 'utf8' | 'utf8bom' | 'utf16le' | 'utf16be' | 'windows1252' | 'iso88591' | 'iso88593' | 'iso885915' | 'macroman' | 'cp437' | 'windows1256' | 'iso88596' | 'windows1257' | 'iso88594' | 'iso885914' | 'windows1250' | 'iso88592' | 'cp852' | 'windows1251' | 'cp866' | 'cp1125' | 'iso88595' | 'koi8r' | 'koi8u' | 'iso885913' | 'windows1253' | 'iso88597' | 'windows1255' | 'iso88598' | 'iso885910' | 'iso885916' | 'windows1254' | 'iso88599' | 'cp857' | 'windows1258' | 'gbk' | 'gb18030' | 'cp950' | 'big5hkscs' | 'shiftjis' | 'eucjp' | 'euckr' | 'windows874' | 'iso885911' | 'koi8ru' | 'koi8t' | 'gb2312' | 'cp865' | 'cp850';
|
|
9512
|
-
readonly 'files.eol'?: '
|
|
9513
|
-
' | '
|
|
9514
|
-
' | 'auto';
|
|
9525
|
+
readonly 'files.eol'?: '\n' | '\r\n' | 'auto';
|
|
9515
9526
|
readonly 'files.exclude'?: Record<string, unknown>;
|
|
9516
9527
|
readonly 'files.hotExit'?: 'off' | 'onExit' | 'onExitAndWindowClose';
|
|
9517
9528
|
readonly 'files.insertFinalNewline'?: boolean;
|
|
@@ -10799,7 +10810,7 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
|
|
|
10799
10810
|
readonly 'zenMode.silentNotifications'?: boolean;
|
|
10800
10811
|
}
|
|
10801
10812
|
|
|
10802
|
-
// ── 1.121.0-insider+2026051505: +
|
|
10813
|
+
// ── 1.121.0-insider+2026051505: +13, ~2 ──
|
|
10803
10814
|
export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_121_0_insider_2026051305, {
|
|
10804
10815
|
readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
|
|
10805
10816
|
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
@@ -10818,6 +10829,969 @@ export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_1
|
|
|
10818
10829
|
readonly 'search.experimental.useIgnoreFilesInFindFiles'?: boolean;
|
|
10819
10830
|
}, never>;
|
|
10820
10831
|
|
|
10832
|
+
// ── 1.121.0-insider+2026051517: -2 ──
|
|
10833
|
+
export type VscodeSettings_1_121_0_insider_2026051517 = Patch<VscodeSettings_1_121_0_insider_2026051505, {}, 'github.copilot.chat.gpt54ConcisePrompt.enabled' | 'github.copilot.chat.gpt54LargePrompt.enabled'>;
|
|
10834
|
+
|
|
10835
|
+
// ── 1.121.0-insider+2026051823: +11, ~10, -3 ──
|
|
10836
|
+
export type VscodeSettings_1_121_0_insider_2026051823 = Patch<VscodeSettings_1_121_0_insider_2026051517, {
|
|
10837
|
+
readonly 'chat.sessionSync.enabled'?: boolean;
|
|
10838
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
10839
|
+
readonly 'chat.utilityModel'?: '';
|
|
10840
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
10841
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
10842
|
+
readonly 'editor.quickSuggestions'?: unknown;
|
|
10843
|
+
readonly 'git.enabled'?: boolean;
|
|
10844
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
|
|
10845
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
|
|
10846
|
+
readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
|
|
10847
|
+
readonly 'markdown-mermaid.controls.show'?: 'never' | 'onHoverOrFocus' | 'always';
|
|
10848
|
+
readonly 'markdown-mermaid.darkModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10849
|
+
readonly 'markdown-mermaid.languages'?: unknown[];
|
|
10850
|
+
readonly 'markdown-mermaid.lightModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10851
|
+
readonly 'markdown-mermaid.maxHeight'?: string;
|
|
10852
|
+
readonly 'markdown-mermaid.maxTextSize'?: number;
|
|
10853
|
+
readonly 'markdown-mermaid.mouseNavigation.enabled'?: 'always' | 'alt' | 'never';
|
|
10854
|
+
readonly 'markdown-mermaid.resizable'?: boolean;
|
|
10855
|
+
readonly 'markdown.preview.frontMatter'?: 'hide' | 'codeBlock' | 'table';
|
|
10856
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
10857
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
10858
|
+
}, 'chat.tools.renameTool.enabled' | 'chat.tools.usagesTool.enabled' | 'mermaid-chat.enabled'>;
|
|
10859
|
+
|
|
10860
|
+
// ── 1.121.0-insider+2026051910: ~2 ──
|
|
10861
|
+
export type VscodeSettings_1_121_0_insider_2026051910 = Patch<VscodeSettings_1_121_0_insider_2026051823, {
|
|
10862
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
10863
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
10864
|
+
}, never>;
|
|
10865
|
+
|
|
10866
|
+
// ── 1.121.0: +18, ~17, -7 ──
|
|
10867
|
+
export type VscodeSettings_1_121_0 = Patch<VscodeSettings_1_120_0, {
|
|
10868
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
10869
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
10870
|
+
readonly 'chat.sessionSync.enabled'?: boolean;
|
|
10871
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
10872
|
+
readonly 'chat.tools.riskAssessment.enabled'?: boolean;
|
|
10873
|
+
readonly 'chat.tools.riskAssessment.model'?: string;
|
|
10874
|
+
readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
|
|
10875
|
+
readonly 'chat.tools.terminal.outputDeltas'?: boolean;
|
|
10876
|
+
readonly 'chat.utilityModel'?: '';
|
|
10877
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
10878
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
10879
|
+
readonly 'editor.quickSuggestions'?: unknown;
|
|
10880
|
+
readonly 'git.enabled'?: boolean;
|
|
10881
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
|
|
10882
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
|
|
10883
|
+
readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
|
|
10884
|
+
readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
|
|
10885
|
+
readonly 'github.copilot.chat.freezeCustomizationsIndex'?: boolean;
|
|
10886
|
+
readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
|
|
10887
|
+
readonly 'js/ts.tsdk.path'?: string;
|
|
10888
|
+
readonly 'markdown-mermaid.controls.show'?: 'never' | 'onHoverOrFocus' | 'always';
|
|
10889
|
+
readonly 'markdown-mermaid.darkModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10890
|
+
readonly 'markdown-mermaid.languages'?: unknown[];
|
|
10891
|
+
readonly 'markdown-mermaid.lightModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10892
|
+
readonly 'markdown-mermaid.maxHeight'?: string;
|
|
10893
|
+
readonly 'markdown-mermaid.maxTextSize'?: number;
|
|
10894
|
+
readonly 'markdown-mermaid.mouseNavigation.enabled'?: 'always' | 'alt' | 'never';
|
|
10895
|
+
readonly 'markdown-mermaid.resizable'?: boolean;
|
|
10896
|
+
readonly 'markdown.preview.frontMatter'?: 'hide' | 'codeBlock' | 'table';
|
|
10897
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
10898
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
10899
|
+
readonly 'search.experimental.useIgnoreFilesInFindFiles'?: boolean;
|
|
10900
|
+
readonly 'terminal.integrated.windowsUseConptyDll'?: boolean;
|
|
10901
|
+
readonly 'typescript.tsdk'?: string;
|
|
10902
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
10903
|
+
}, 'chat.tools.renameTool.enabled' | 'chat.tools.usagesTool.enabled' | 'github.copilot.chat.gpt54ConcisePrompt.enabled' | 'github.copilot.chat.gpt54LargePrompt.enabled' | 'github.copilot.chat.responsesApi.toolSearchTool.enabled' | 'github.copilot.chat.tools.memory.enabled' | 'mermaid-chat.enabled'>;
|
|
10904
|
+
|
|
10905
|
+
// ── 1.122.0-insider+2026052017: +2, ~20, -1 ──
|
|
10906
|
+
export type VscodeSettings_1_122_0_insider_2026052017 = Patch<VscodeSettings_1_121_0_insider_2026051910, {
|
|
10907
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
10908
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
10909
|
+
readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
|
|
10910
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
10911
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
10912
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
10913
|
+
readonly 'chat.utilityModel'?: '';
|
|
10914
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
10915
|
+
readonly 'diffEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
|
|
10916
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
10917
|
+
readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
10918
|
+
readonly 'mergeEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
|
|
10919
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
10920
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
10921
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
10922
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
10923
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
10924
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
10925
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
10926
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
10927
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
10928
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'git-fetch' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
10929
|
+
}, 'github.copilot.chat.projectSetupInfoSkill.enabled'>;
|
|
10930
|
+
|
|
10931
|
+
// ── 1.122.0-insider+2026052105: +2, ~14 ──
|
|
10932
|
+
export type VscodeSettings_1_122_0_insider_2026052105 = Patch<VscodeSettings_1_122_0_insider_2026052017, {
|
|
10933
|
+
readonly 'chat.agentHost.ahpJsonlLoggingEnabled'?: boolean;
|
|
10934
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
10935
|
+
readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
|
|
10936
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
10937
|
+
readonly 'chat.agentHost.ipcLoggingEnabled'?: boolean;
|
|
10938
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
10939
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
10940
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
10941
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
10942
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
10943
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
10944
|
+
readonly 'issueReporter.wizard.enabled'?: boolean;
|
|
10945
|
+
readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
|
|
10946
|
+
readonly 'markdown-mermaid.darkModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10947
|
+
readonly 'markdown-mermaid.lightModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
10948
|
+
readonly 'terminal.integrated.stickyScroll.ignoredCommands'?: (string)[];
|
|
10949
|
+
}, never>;
|
|
10950
|
+
|
|
10951
|
+
// ── 1.122.0-insider+2026052217: +3, ~16, -2 ──
|
|
10952
|
+
export type VscodeSettings_1_122_0_insider_2026052217 = Patch<VscodeSettings_1_122_0_insider_2026052105, {
|
|
10953
|
+
readonly 'chat.agent.sandbox.advanced.runtime'?: Record<string, unknown>;
|
|
10954
|
+
readonly 'chat.agent.sandbox.enabled.windows'?: 'off' | 'allowNetwork';
|
|
10955
|
+
readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
|
|
10956
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
10957
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
10958
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
10959
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
10960
|
+
readonly 'issueReporter.wizard.enabled'?: boolean;
|
|
10961
|
+
readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
|
|
10962
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
10963
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
10964
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
10965
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
10966
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
10967
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
10968
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
10969
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
10970
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
10971
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
10972
|
+
}, 'chat.allowAnonymousAccess' | 'chat.customizations.useChatSessionCustomizationsForCustomAgents'>;
|
|
10973
|
+
|
|
10974
|
+
// ── 1.122.0-insider+2026052517: +1, ~1, -2 ──
|
|
10975
|
+
export type VscodeSettings_1_122_0_insider_2026052517 = Patch<VscodeSettings_1_122_0_insider_2026052217, {
|
|
10976
|
+
readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'allowNetwork';
|
|
10977
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
10978
|
+
}, 'chat.agent.sandbox.enabled.windows' | 'github.copilot.chat.freezeCustomizationsIndex'>;
|
|
10979
|
+
|
|
10980
|
+
// ── 1.122.0-insider+2026052623: ~2, -1 ──
|
|
10981
|
+
export type VscodeSettings_1_122_0_insider_2026052623 = Patch<VscodeSettings_1_122_0_insider_2026052517, {
|
|
10982
|
+
readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
|
|
10983
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
10984
|
+
}, 'chat.agent.maxRequests'>;
|
|
10985
|
+
|
|
10986
|
+
// ── 1.122.0: +18, ~24, -5 ──
|
|
10987
|
+
export type VscodeSettings_1_122_0 = Patch<VscodeSettings_1_121_0, {
|
|
10988
|
+
readonly 'chat.agent.sandbox.advanced.runtime'?: Record<string, unknown>;
|
|
10989
|
+
readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'allowNetwork';
|
|
10990
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
10991
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
10992
|
+
readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
|
|
10993
|
+
readonly 'chat.agentHost.ahpJsonlLoggingEnabled'?: boolean;
|
|
10994
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
10995
|
+
readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
|
|
10996
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
10997
|
+
readonly 'chat.agentHost.ipcLoggingEnabled'?: boolean;
|
|
10998
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
10999
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11000
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11001
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11002
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11003
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11004
|
+
readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
|
|
11005
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11006
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11007
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11008
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11009
|
+
readonly 'chat.utilityModel'?: '';
|
|
11010
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
11011
|
+
readonly 'diffEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
|
|
11012
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
11013
|
+
readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
11014
|
+
readonly 'issueReporter.wizard.enabled'?: boolean;
|
|
11015
|
+
readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
|
|
11016
|
+
readonly 'markdown-mermaid.darkModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
11017
|
+
readonly 'markdown-mermaid.lightModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
|
|
11018
|
+
readonly 'mergeEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
|
|
11019
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11020
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11021
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11022
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11023
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11024
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11025
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11026
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11027
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11028
|
+
readonly 'terminal.integrated.stickyScroll.ignoredCommands'?: (string)[];
|
|
11029
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11030
|
+
}, 'chat.agent.maxRequests' | 'chat.allowAnonymousAccess' | 'chat.customizations.useChatSessionCustomizationsForCustomAgents' | 'github.copilot.chat.freezeCustomizationsIndex' | 'github.copilot.chat.projectSetupInfoSkill.enabled'>;
|
|
11031
|
+
|
|
11032
|
+
// ── 1.122.1: +1, ~1 ──
|
|
11033
|
+
export type VscodeSettings_1_122_1 = Patch<VscodeSettings_1_122_0, {
|
|
11034
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11035
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11036
|
+
}, never>;
|
|
11037
|
+
|
|
11038
|
+
// ── 1.123.0-insider+2026060105: +11, ~33, -1 ──
|
|
11039
|
+
export type VscodeSettings_1_123_0_insider_2026060105 = Patch<VscodeSettings_1_122_0_insider_2026052623, {
|
|
11040
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11041
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
11042
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
11043
|
+
readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
|
|
11044
|
+
readonly 'chat.agentHost.claudeAgent.path'?: string;
|
|
11045
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11046
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11047
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11048
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11049
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11050
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11051
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11052
|
+
readonly 'chat.agentHost.rubberDuck.enabled'?: boolean;
|
|
11053
|
+
readonly 'chat.agentsHandoffTip.mode'?: 'hidden' | 'default' | 'custom';
|
|
11054
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
11055
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11056
|
+
readonly 'chat.plugins.marketplaces'?: (string)[];
|
|
11057
|
+
readonly 'chat.plugins.strictMarketplaces'?: boolean;
|
|
11058
|
+
readonly 'chat.sessionSync.enabled'?: boolean;
|
|
11059
|
+
readonly 'chat.titleBar.openInAgentsWindow.enabled'?: boolean;
|
|
11060
|
+
readonly 'chat.tools.confirmationCarousel.enabled'?: boolean;
|
|
11061
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11062
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11063
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11064
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11065
|
+
readonly 'extensions.autoUpdate'?: 'on' | 'delayed' | 'off';
|
|
11066
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
|
|
11067
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
|
|
11068
|
+
readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
|
|
11069
|
+
readonly 'github.copilot.chat.executionSubagent.model'?: string;
|
|
11070
|
+
readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
|
|
11071
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
|
|
11072
|
+
readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
|
|
11073
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11074
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11075
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11076
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11077
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11078
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11079
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11080
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11081
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11082
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11083
|
+
readonly 'workbench.browser.experimentalUserTools.enabled'?: boolean;
|
|
11084
|
+
}, 'chat.autopilot.enabled'>;
|
|
11085
|
+
|
|
11086
|
+
// ── 1.124.0-insider+2026060217: +3, ~6, -2 ──
|
|
11087
|
+
export type VscodeSettings_1_124_0_insider_2026060217 = Patch<VscodeSettings_1_123_0_insider_2026060105, {
|
|
11088
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
11089
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
11090
|
+
readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
|
|
11091
|
+
readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11092
|
+
readonly 'extensions.autoUpdate'?: true | 'onlyEnabledExtensions' | false;
|
|
11093
|
+
readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
|
|
11094
|
+
readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
|
|
11095
|
+
readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
|
|
11096
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11097
|
+
}, 'chat.agentHost.ipcLoggingEnabled' | 'chat.agentHost.rubberDuck.enabled'>;
|
|
11098
|
+
|
|
11099
|
+
// ── 1.123.0: +12, ~31, -1 ──
|
|
11100
|
+
export type VscodeSettings_1_123_0 = Patch<VscodeSettings_1_122_0, {
|
|
11101
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11102
|
+
readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
|
|
11103
|
+
readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
|
|
11104
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11105
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11106
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11107
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11108
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11109
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11110
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11111
|
+
readonly 'chat.agentsHandoffTip.mode'?: 'hidden' | 'default' | 'custom';
|
|
11112
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
11113
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11114
|
+
readonly 'chat.plugins.marketplaces'?: (string)[];
|
|
11115
|
+
readonly 'chat.plugins.strictMarketplaces'?: boolean;
|
|
11116
|
+
readonly 'chat.sessionSync.enabled'?: boolean;
|
|
11117
|
+
readonly 'chat.titleBar.openInAgentsWindow.enabled'?: boolean;
|
|
11118
|
+
readonly 'chat.tools.confirmationCarousel.enabled'?: boolean;
|
|
11119
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11120
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11121
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11122
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11123
|
+
readonly 'extensions.autoUpdate'?: true | 'onlyEnabledExtensions' | false;
|
|
11124
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
|
|
11125
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
|
|
11126
|
+
readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
|
|
11127
|
+
readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
|
|
11128
|
+
readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
|
|
11129
|
+
readonly 'github.copilot.chat.executionSubagent.model'?: string;
|
|
11130
|
+
readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
|
|
11131
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
|
|
11132
|
+
readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
|
|
11133
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11134
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11135
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11136
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11137
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11138
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11139
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11140
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11141
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11142
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11143
|
+
readonly 'workbench.browser.experimentalUserTools.enabled'?: boolean;
|
|
11144
|
+
}, 'chat.autopilot.enabled'>;
|
|
11145
|
+
|
|
11146
|
+
// ── 1.124.0-insider+2026060321: +4, ~2 ──
|
|
11147
|
+
export type VscodeSettings_1_124_0_insider_2026060321 = Patch<VscodeSettings_1_124_0_insider_2026060217, {
|
|
11148
|
+
readonly 'chat.agentHost.codexAgent.binaryArgs'?: (string)[];
|
|
11149
|
+
readonly 'chat.agentHost.codexAgent.codexHome'?: string;
|
|
11150
|
+
readonly 'chat.agentHost.codexAgent.path'?: string;
|
|
11151
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11152
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
11153
|
+
readonly 'workbench.browser.maxHistoryEntries'?: number;
|
|
11154
|
+
}, never>;
|
|
11155
|
+
|
|
11156
|
+
// ── 1.124.0-insider+2026060513: +2, ~15 ──
|
|
11157
|
+
export type VscodeSettings_1_124_0_insider_2026060513 = Patch<VscodeSettings_1_124_0_insider_2026060321, {
|
|
11158
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11159
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11160
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11161
|
+
readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
|
|
11162
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11163
|
+
readonly 'github.copilot.completions.chat.enabled'?: boolean;
|
|
11164
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11165
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11166
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11167
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11168
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11169
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11170
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11171
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11172
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11173
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11174
|
+
readonly 'workbench.browser.enableChatTools'?: boolean;
|
|
11175
|
+
}, never>;
|
|
11176
|
+
|
|
11177
|
+
// ── 1.123.1: ~16, -1 ──
|
|
11178
|
+
export type VscodeSettings_1_123_1 = Patch<VscodeSettings_1_123_0, {
|
|
11179
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11180
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11181
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11182
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11183
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11184
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11185
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11186
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11187
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11188
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11189
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11190
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11191
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11192
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11193
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11194
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11195
|
+
}, 'chat.agent.maxRequests'>;
|
|
11196
|
+
|
|
11197
|
+
// ── 1.123.2: +1, ~4 ──
|
|
11198
|
+
export type VscodeSettings_1_123_2 = Patch<VscodeSettings_1_123_1, {
|
|
11199
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11200
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11201
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11202
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11203
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11204
|
+
}, never>;
|
|
11205
|
+
|
|
11206
|
+
// ── 1.124.0-insider+2026060900: +2, ~2 ──
|
|
11207
|
+
export type VscodeSettings_1_124_0_insider_2026060900 = Patch<VscodeSettings_1_124_0_insider_2026060513, {
|
|
11208
|
+
readonly 'chat.agentHost.defaultChatProvider'?: boolean;
|
|
11209
|
+
readonly 'chat.autopilot.advanced.enabled'?: boolean;
|
|
11210
|
+
readonly 'jsts-chat-features.skills.enabled'?: boolean;
|
|
11211
|
+
readonly 'npm.scriptRunner'?: 'auto' | 'npm' | 'yarn' | 'pnpm' | 'bun' | 'node' | 'vp';
|
|
11212
|
+
}, never>;
|
|
11213
|
+
|
|
11214
|
+
// ── 1.124.0: +9, ~32, -1 ──
|
|
11215
|
+
export type VscodeSettings_1_124_0 = Patch<VscodeSettings_1_123_0, {
|
|
11216
|
+
readonly 'chat.agentHost.defaultChatProvider'?: boolean;
|
|
11217
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11218
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11219
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11220
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11221
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11222
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11223
|
+
readonly 'chat.autopilot.advanced.enabled'?: boolean;
|
|
11224
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11225
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11226
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11227
|
+
readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11228
|
+
readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
|
|
11229
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11230
|
+
readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
|
|
11231
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11232
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11233
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11234
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11235
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11236
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11237
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11238
|
+
readonly 'github.copilot.completions.chat.enabled'?: boolean;
|
|
11239
|
+
readonly 'jsts-chat-features.skills.enabled'?: boolean;
|
|
11240
|
+
readonly 'npm.scriptRunner'?: 'auto' | 'npm' | 'yarn' | 'pnpm' | 'bun' | 'node' | 'vp';
|
|
11241
|
+
readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
|
|
11242
|
+
readonly 'settingsSync.ignoredSettings'?: unknown[];
|
|
11243
|
+
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
11244
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11245
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11246
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11247
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11248
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11249
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11250
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11251
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11252
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11253
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11254
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11255
|
+
readonly 'workbench.browser.enableChatTools'?: boolean;
|
|
11256
|
+
readonly 'workbench.browser.maxHistoryEntries'?: number;
|
|
11257
|
+
}, 'chat.agentHost.ipcLoggingEnabled'>;
|
|
11258
|
+
|
|
11259
|
+
// ── 1.125.0-insider+2026061105: +8, ~34, -3 ──
|
|
11260
|
+
export type VscodeSettings_1_125_0_insider_2026061105 = Patch<VscodeSettings_1_124_0_insider_2026060900, {
|
|
11261
|
+
readonly 'chat.agentHost.claudeAgent.sdkRoot'?: string;
|
|
11262
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
11263
|
+
readonly 'chat.agentHost.codexAgent.sdkRoot'?: string;
|
|
11264
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11265
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11266
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11267
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11268
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11269
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11270
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11271
|
+
readonly 'chat.tools.riskAssessment.enabled'?: boolean;
|
|
11272
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11273
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11274
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11275
|
+
readonly 'github.copilot.chat.conversationCompaction.model'?: string;
|
|
11276
|
+
readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
|
|
11277
|
+
readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
|
|
11278
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11279
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11280
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11281
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11282
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11283
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11284
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11285
|
+
readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
|
|
11286
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11287
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11288
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11289
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11290
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11291
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11292
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11293
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11294
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11295
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11296
|
+
readonly 'workbench.browser.dataStorage'?: 'default' | 'global' | 'workspace' | 'ephemeral';
|
|
11297
|
+
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
11298
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
11299
|
+
readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
|
|
11300
|
+
readonly 'workbench.editor.autoLockGroups'?: Record<string, unknown>;
|
|
11301
|
+
readonly 'workbench.editor.defaultBinaryEditor'?: 'default' | 'workbench.editor.chatSession' | 'workbench.editorinputs.searchEditorInput' | 'agentSessionsWelcomePage' | 'notebookOutputEditor' | 'repl' | 'workbench.editors.gettingStartedInput' | 'jupyter-notebook' | 'vscode.markdown.preview.editor' | 'vscode.markdown.editor' | 'imagePreview.previewEditor' | 'vscode.audioPreview' | 'vscode.videoPreview' | 'jsProfileVisualizer.cpuprofile.table' | 'jsProfileVisualizer.heapprofile.table' | 'jsProfileVisualizer.heapsnapshot.table' | '';
|
|
11302
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
11303
|
+
}, 'chat.agent.maxRequests' | 'chat.agentHost.claudeAgent.path' | 'chat.agentHost.codexAgent.path'>;
|
|
11304
|
+
|
|
11305
|
+
// ── 1.124.1: ~5, -4 ──
|
|
11306
|
+
export type VscodeSettings_1_124_1 = Patch<VscodeSettings_1_124_0, {
|
|
11307
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11308
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11309
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11310
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11311
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
11312
|
+
}, 'chat.agent.maxRequests' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
11313
|
+
|
|
11314
|
+
// ── 1.124.2: +1, ~3 ──
|
|
11315
|
+
export type VscodeSettings_1_124_2 = Patch<VscodeSettings_1_124_1, {
|
|
11316
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11317
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11318
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11319
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11320
|
+
}, never>;
|
|
11321
|
+
|
|
11322
|
+
// ── 1.125.0-insider+2026061205: +7, ~7 ──
|
|
11323
|
+
export type VscodeSettings_1_125_0_insider_2026061205 = Patch<VscodeSettings_1_125_0_insider_2026061105, {
|
|
11324
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11325
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
11326
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
11327
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11328
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
11329
|
+
readonly 'chat.editor.claude.preferAgentHost'?: boolean;
|
|
11330
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11331
|
+
readonly 'chat.tools.global.autoApprove'?: boolean;
|
|
11332
|
+
readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11333
|
+
readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
|
|
11334
|
+
readonly 'settingsSync.ignoredSettings'?: unknown[];
|
|
11335
|
+
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
11336
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11337
|
+
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
11338
|
+
}, never>;
|
|
11339
|
+
|
|
11340
|
+
// ── 1.125.0-insider+2026061217: +4, ~3, -4 ──
|
|
11341
|
+
export type VscodeSettings_1_125_0_insider_2026061217 = Patch<VscodeSettings_1_125_0_insider_2026061205, {
|
|
11342
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
11343
|
+
readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
|
|
11344
|
+
readonly 'chat.editor.defaultProvider'?: 'local' | 'copilotEh' | 'copilotAh';
|
|
11345
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11346
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11347
|
+
readonly 'extensions.autoUpdate'?: 'on' | 'off';
|
|
11348
|
+
readonly 'extensions.autoUpdateDelay'?: number;
|
|
11349
|
+
}, 'chat.agentHost.defaultChatProvider' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
11350
|
+
|
|
11351
|
+
// ── 1.125.0-insider+2026061505: +4, ~6, -1 ──
|
|
11352
|
+
export type VscodeSettings_1_125_0_insider_2026061505 = Patch<VscodeSettings_1_125_0_insider_2026061217, {
|
|
11353
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11354
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11355
|
+
readonly 'chat.editing.openChangedFileInDiffEditor'?: boolean;
|
|
11356
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11357
|
+
readonly 'chat.plugins.strictMarketplaces'?: boolean;
|
|
11358
|
+
readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
|
|
11359
|
+
readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11360
|
+
readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
|
|
11361
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
11362
|
+
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
11363
|
+
}, 'chat.agentHost.claudeAgent.sdkRoot'>;
|
|
11364
|
+
|
|
11365
|
+
// ── 1.125.0-insider+2026061523: ~2, -1 ──
|
|
11366
|
+
export type VscodeSettings_1_125_0_insider_2026061523 = Patch<VscodeSettings_1_125_0_insider_2026061505, {
|
|
11367
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11368
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11369
|
+
}, 'chat.agent.maxRequests'>;
|
|
11370
|
+
|
|
11371
|
+
// ── 1.126.0-insider+2026061617: +4, ~4 ──
|
|
11372
|
+
export type VscodeSettings_1_126_0_insider_2026061617 = Patch<VscodeSettings_1_125_0_insider_2026061523, {
|
|
11373
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11374
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11375
|
+
readonly 'chat.editor.localAgent.enabled'?: boolean;
|
|
11376
|
+
readonly 'chat.plugins.enabled'?: boolean;
|
|
11377
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11378
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11379
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
11380
|
+
readonly 'workbench.experimental.styleOverrides'?: ('activityBar' | 'fontRamp' | 'paneHeaders' | 'roundedCorners' | 'tabs')[];
|
|
11381
|
+
}, never>;
|
|
11382
|
+
|
|
11383
|
+
// ── 1.125.0: +17, ~29, -4 ──
|
|
11384
|
+
export type VscodeSettings_1_125_0 = Patch<VscodeSettings_1_124_0, {
|
|
11385
|
+
readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
|
|
11386
|
+
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
11387
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11388
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
11389
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11390
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11391
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
11392
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
11393
|
+
readonly 'chat.editing.openChangedFileInDiffEditor'?: boolean;
|
|
11394
|
+
readonly 'chat.editor.claude.preferAgentHost'?: boolean;
|
|
11395
|
+
readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
|
|
11396
|
+
readonly 'chat.editor.defaultProvider'?: 'local' | 'copilotEh' | 'copilotAh';
|
|
11397
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11398
|
+
readonly 'chat.plugins.strictMarketplaces'?: boolean;
|
|
11399
|
+
readonly 'chat.tools.global.autoApprove'?: boolean;
|
|
11400
|
+
readonly 'chat.tools.riskAssessment.enabled'?: boolean;
|
|
11401
|
+
readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
|
|
11402
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11403
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11404
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11405
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11406
|
+
readonly 'extensions.autoUpdate'?: 'on' | 'off';
|
|
11407
|
+
readonly 'extensions.autoUpdateDelay'?: number;
|
|
11408
|
+
readonly 'github.copilot.chat.conversationCompaction.model'?: string;
|
|
11409
|
+
readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
|
|
11410
|
+
readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
|
|
11411
|
+
readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
|
|
11412
|
+
readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
|
|
11413
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11414
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11415
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11416
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11417
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11418
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11419
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
11420
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11421
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11422
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11423
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11424
|
+
readonly 'workbench.browser.dataStorage'?: 'default' | 'global' | 'workspace' | 'ephemeral';
|
|
11425
|
+
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
11426
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
11427
|
+
readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
|
|
11428
|
+
readonly 'workbench.editor.autoLockGroups'?: Record<string, unknown>;
|
|
11429
|
+
readonly 'workbench.editor.defaultBinaryEditor'?: 'default' | 'workbench.editor.chatSession' | 'workbench.editorinputs.searchEditorInput' | 'agentSessionsWelcomePage' | 'notebookOutputEditor' | 'repl' | 'workbench.editors.gettingStartedInput' | 'jupyter-notebook' | 'vscode.markdown.preview.editor' | 'vscode.markdown.editor' | 'imagePreview.previewEditor' | 'vscode.audioPreview' | 'vscode.videoPreview' | 'jsProfileVisualizer.cpuprofile.table' | 'jsProfileVisualizer.heapprofile.table' | 'jsProfileVisualizer.heapsnapshot.table' | '';
|
|
11430
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
11431
|
+
}, 'chat.agentHost.defaultChatProvider' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
11432
|
+
|
|
11433
|
+
// ── 1.126.0-insider+2026061720: +1, ~17 ──
|
|
11434
|
+
export type VscodeSettings_1_126_0_insider_2026061720 = Patch<VscodeSettings_1_126_0_insider_2026061617, {
|
|
11435
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11436
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
11437
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11438
|
+
readonly 'chat.experimental.collectInstructionsInExtension'?: boolean;
|
|
11439
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11440
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11441
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11442
|
+
readonly 'security.workspace.trust.startupPrompt'?: 'always' | 'once' | 'never';
|
|
11443
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11444
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11445
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11446
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11447
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11448
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11449
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11450
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11451
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11452
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11453
|
+
}, never>;
|
|
11454
|
+
|
|
11455
|
+
// ── 1.126.0-insider+2026061820: +1, ~5, -1 ──
|
|
11456
|
+
export type VscodeSettings_1_126_0_insider_2026061820 = Patch<VscodeSettings_1_126_0_insider_2026061720, {
|
|
11457
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11458
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11459
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11460
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
11461
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11462
|
+
readonly 'workbench.experimental.floatingPanels'?: boolean;
|
|
11463
|
+
}, 'chat.agent.maxRequests'>;
|
|
11464
|
+
|
|
11465
|
+
// ── 1.126.0-insider+2026061917: +3, ~6, -4 ──
|
|
11466
|
+
export type VscodeSettings_1_126_0_insider_2026061917 = Patch<VscodeSettings_1_126_0_insider_2026061820, {
|
|
11467
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11468
|
+
readonly 'chat.agentSessions.defaultConfiguration'?: Record<string, unknown>;
|
|
11469
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
11470
|
+
readonly 'chat.plugins.strictMarketplaces'?: (Record<string, unknown>)[] | null;
|
|
11471
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11472
|
+
readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11473
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11474
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11475
|
+
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
11476
|
+
}, 'chat.agent.sandbox.autoApproveUnsandboxedCommands' | 'chat.editMode.hidden' | 'workbench.experimental.floatingPanels' | 'workbench.experimental.styleOverrides'>;
|
|
11477
|
+
|
|
11478
|
+
// ── 1.125.1: ~3, -1 ──
|
|
11479
|
+
export type VscodeSettings_1_125_1 = Patch<VscodeSettings_1_125_0, {
|
|
11480
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11481
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11482
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11483
|
+
}, 'chat.agent.maxRequests'>;
|
|
11484
|
+
|
|
11485
|
+
// ── 1.126.0-insider+2026062301: +3, ~28, -3 ──
|
|
11486
|
+
export type VscodeSettings_1_126_0_insider_2026062301 = Patch<VscodeSettings_1_126_0_insider_2026061917, {
|
|
11487
|
+
readonly 'accessibility.verbosity.survey'?: boolean;
|
|
11488
|
+
readonly 'chat.agentHost.opus48Prompt.enabled'?: boolean;
|
|
11489
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11490
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11491
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11492
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11493
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11494
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11495
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
11496
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11497
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11498
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11499
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11500
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
11501
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11502
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11503
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11504
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11505
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11506
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11507
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11508
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11509
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11510
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11511
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11512
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11513
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11514
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11515
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11516
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11517
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11518
|
+
}, 'chat.agentSessions.defaultConfiguration' | 'github.copilot.chat.gpt55EconomicalSearchAndEdit.enabled' | 'github.copilot.chat.gpt55LargePromptSections.enabled'>;
|
|
11519
|
+
|
|
11520
|
+
// ── 1.127.0-insider+2026062317: +3, ~3, -1 ──
|
|
11521
|
+
export type VscodeSettings_1_127_0_insider_2026062317 = Patch<VscodeSettings_1_126_0_insider_2026062301, {
|
|
11522
|
+
readonly 'agents.voice.microphoneDevice'?: string;
|
|
11523
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11524
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11525
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11526
|
+
readonly 'onboarding.developerMode'?: boolean;
|
|
11527
|
+
readonly 'onboarding.enabled'?: boolean;
|
|
11528
|
+
}, 'chat.agent.maxRequests'>;
|
|
11529
|
+
|
|
11530
|
+
// ── 1.126.0: +7, ~38, -4 ──
|
|
11531
|
+
export type VscodeSettings_1_126_0 = Patch<VscodeSettings_1_125_0, {
|
|
11532
|
+
readonly 'accessibility.verbosity.survey'?: boolean;
|
|
11533
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11534
|
+
readonly 'chat.agentHost.clientTools'?: (string)[];
|
|
11535
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11536
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11537
|
+
readonly 'chat.agentHost.opus48Prompt.enabled'?: boolean;
|
|
11538
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11539
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11540
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11541
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11542
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11543
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11544
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
11545
|
+
readonly 'chat.editor.localAgent.enabled'?: boolean;
|
|
11546
|
+
readonly 'chat.experimental.collectInstructionsInExtension'?: boolean;
|
|
11547
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
11548
|
+
readonly 'chat.plugins.enabled'?: boolean;
|
|
11549
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
11550
|
+
readonly 'chat.plugins.strictMarketplaces'?: (Record<string, unknown>)[] | null;
|
|
11551
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11552
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11553
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11554
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11555
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
11556
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11557
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11558
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11559
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11560
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11561
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11562
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11563
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
11564
|
+
readonly 'security.workspace.trust.startupPrompt'?: 'always' | 'once' | 'never';
|
|
11565
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11566
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11567
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11568
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11569
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11570
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11571
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11572
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11573
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11574
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11575
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11576
|
+
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
11577
|
+
}, 'chat.agent.sandbox.autoApproveUnsandboxedCommands' | 'chat.editMode.hidden' | 'github.copilot.chat.gpt55EconomicalSearchAndEdit.enabled' | 'github.copilot.chat.gpt55LargePromptSections.enabled'>;
|
|
11578
|
+
|
|
11579
|
+
// ── 1.127.0-insider+2026062521: +2, ~210, -3 ──
|
|
11580
|
+
export type VscodeSettings_1_127_0_insider_2026062521 = Patch<VscodeSettings_1_127_0_insider_2026062317, {
|
|
11581
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11582
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11583
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11584
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
11585
|
+
readonly 'chat.defaultModel'?: string;
|
|
11586
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11587
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11588
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11589
|
+
readonly 'github.copilot.chat.additionalReadAccessPaths'?: (string)[];
|
|
11590
|
+
readonly 'github.copilot.chat.agent.autoFix'?: boolean;
|
|
11591
|
+
readonly 'github.copilot.chat.agent.backgroundTodoAgent.enabled'?: boolean;
|
|
11592
|
+
readonly 'github.copilot.chat.agent.currentEditorContext.enabled'?: boolean;
|
|
11593
|
+
readonly 'github.copilot.chat.agent.largeToolResultsToDisk.enabled'?: boolean;
|
|
11594
|
+
readonly 'github.copilot.chat.agent.largeToolResultsToDisk.thresholdBytes'?: number;
|
|
11595
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
|
|
11596
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
|
|
11597
|
+
readonly 'github.copilot.chat.agent.modelDetails.enabled'?: boolean;
|
|
11598
|
+
readonly 'github.copilot.chat.agent.omitFileAttachmentContents'?: boolean;
|
|
11599
|
+
readonly 'github.copilot.chat.agent.temperature'?: number | null;
|
|
11600
|
+
readonly 'github.copilot.chat.agentDebugLog.enabled'?: boolean;
|
|
11601
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.enabled'?: boolean;
|
|
11602
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.flushIntervalMs'?: number;
|
|
11603
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxRetainedSessionLogs'?: number;
|
|
11604
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxSessionLogSizeMB'?: number;
|
|
11605
|
+
readonly 'github.copilot.chat.agentHistorySummarizationMode'?: string | null;
|
|
11606
|
+
readonly 'github.copilot.chat.alternateGeminiModelFPrompt.enabled'?: boolean;
|
|
11607
|
+
readonly 'github.copilot.chat.alternateGptPrompt.enabled'?: boolean;
|
|
11608
|
+
readonly 'github.copilot.chat.anthropic.contextEditing.mode'?: 'off' | 'clear-thinking' | 'clear-tooluse' | 'clear-both';
|
|
11609
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
|
|
11610
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
|
|
11611
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.allowedDomains'?: (string)[];
|
|
11612
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.blockedDomains'?: (string)[];
|
|
11613
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.enabled'?: boolean;
|
|
11614
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.maxUses'?: number;
|
|
11615
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.userLocation'?: Record<string, unknown> | null;
|
|
11616
|
+
readonly 'github.copilot.chat.anthropic.useMessagesApi'?: boolean;
|
|
11617
|
+
readonly 'github.copilot.chat.askAgent.additionalTools'?: (string)[];
|
|
11618
|
+
readonly 'github.copilot.chat.askAgent.model'?: string;
|
|
11619
|
+
readonly 'github.copilot.chat.backgroundAgent.enabled'?: boolean;
|
|
11620
|
+
readonly 'github.copilot.chat.claude47OpusPrompt.enabled'?: boolean;
|
|
11621
|
+
readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
|
|
11622
|
+
readonly 'github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions'?: boolean;
|
|
11623
|
+
readonly 'github.copilot.chat.claudeAgent.enabled'?: boolean;
|
|
11624
|
+
readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
|
|
11625
|
+
readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
|
|
11626
|
+
readonly 'github.copilot.chat.cli.aiGenerateBranchNames.enabled'?: boolean;
|
|
11627
|
+
readonly 'github.copilot.chat.cli.autoCommit.enabled'?: boolean;
|
|
11628
|
+
readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
|
|
11629
|
+
readonly 'github.copilot.chat.cli.branchSupport.enabled'?: boolean;
|
|
11630
|
+
readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
|
|
11631
|
+
readonly 'github.copilot.chat.cli.isolationOption.enabled'?: boolean;
|
|
11632
|
+
readonly 'github.copilot.chat.cli.lazyLoadSessionItem.enabled'?: boolean;
|
|
11633
|
+
readonly 'github.copilot.chat.cli.mcp.enabled'?: boolean;
|
|
11634
|
+
readonly 'github.copilot.chat.cli.planCommand.enabled'?: boolean;
|
|
11635
|
+
readonly 'github.copilot.chat.cli.planExitMode.enabled'?: boolean;
|
|
11636
|
+
readonly 'github.copilot.chat.cli.remote.enabled'?: boolean;
|
|
11637
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11638
|
+
readonly 'github.copilot.chat.cli.sessionController.enabled'?: boolean;
|
|
11639
|
+
readonly 'github.copilot.chat.cli.sessionControllerForSessionsApp.enabled'?: boolean;
|
|
11640
|
+
readonly 'github.copilot.chat.cli.showExternalSessions'?: boolean;
|
|
11641
|
+
readonly 'github.copilot.chat.cli.terminalLinks.enabled'?: boolean;
|
|
11642
|
+
readonly 'github.copilot.chat.cli.thinkingEffort.enabled'?: boolean;
|
|
11643
|
+
readonly 'github.copilot.chat.cloudAgent.enabled'?: boolean;
|
|
11644
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
11645
|
+
readonly 'github.copilot.chat.codeGeneration.instructions'?: (unknown)[];
|
|
11646
|
+
readonly 'github.copilot.chat.codeGeneration.useInstructionFiles'?: boolean;
|
|
11647
|
+
readonly 'github.copilot.chat.codesearch.agent.enabled'?: boolean;
|
|
11648
|
+
readonly 'github.copilot.chat.codesearch.enabled'?: boolean;
|
|
11649
|
+
readonly 'github.copilot.chat.commitMessageGeneration.instructions'?: (unknown)[];
|
|
11650
|
+
readonly 'github.copilot.chat.completionsFetcher'?: 'electron-fetch' | 'node-fetch';
|
|
11651
|
+
readonly 'github.copilot.chat.conversationCompaction.model'?: string;
|
|
11652
|
+
readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
|
|
11653
|
+
readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
|
|
11654
|
+
readonly 'github.copilot.chat.copilotDebugCommand.enabled'?: boolean;
|
|
11655
|
+
readonly 'github.copilot.chat.customInstructionsInSystemMessage'?: boolean;
|
|
11656
|
+
readonly 'github.copilot.chat.debug.promptOverrideFile'?: string | null;
|
|
11657
|
+
readonly 'github.copilot.chat.debug.promptOverrideString'?: string | null;
|
|
11658
|
+
readonly 'github.copilot.chat.debug.requestLogger.maxEntries'?: number;
|
|
11659
|
+
readonly 'github.copilot.chat.debugTerminalCommandPatterns'?: (string)[];
|
|
11660
|
+
readonly 'github.copilot.chat.editRecording.enabled'?: boolean;
|
|
11661
|
+
readonly 'github.copilot.chat.edits.batchReplaceStringDescriptions'?: boolean;
|
|
11662
|
+
readonly 'github.copilot.chat.edits.gemini3MultiReplaceString'?: boolean;
|
|
11663
|
+
readonly 'github.copilot.chat.enableUserPreferences'?: boolean;
|
|
11664
|
+
readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
|
|
11665
|
+
readonly 'github.copilot.chat.executionSubagent.model'?: string;
|
|
11666
|
+
readonly 'github.copilot.chat.executionSubagent.toolCallLimit'?: number;
|
|
11667
|
+
readonly 'github.copilot.chat.executionSubagent.useAgenticProxy'?: boolean;
|
|
11668
|
+
readonly 'github.copilot.chat.exploreAgent.enabled'?: boolean;
|
|
11669
|
+
readonly 'github.copilot.chat.exploreAgent.model'?: string;
|
|
11670
|
+
readonly 'github.copilot.chat.feedback.onChange'?: boolean;
|
|
11671
|
+
readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
|
|
11672
|
+
readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
|
|
11673
|
+
readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
|
|
11674
|
+
readonly 'github.copilot.chat.getChangedFilesTool.enabled'?: boolean;
|
|
11675
|
+
readonly 'github.copilot.chat.githubMcpServer.channel'?: 'stable' | 'insiders';
|
|
11676
|
+
readonly 'github.copilot.chat.githubMcpServer.enabled'?: boolean;
|
|
11677
|
+
readonly 'github.copilot.chat.githubMcpServer.lockdown'?: boolean;
|
|
11678
|
+
readonly 'github.copilot.chat.githubMcpServer.readonly'?: boolean;
|
|
11679
|
+
readonly 'github.copilot.chat.githubMcpServer.toolsets'?: (string)[];
|
|
11680
|
+
readonly 'github.copilot.chat.gpt55GetChangedFilesTool.enabled'?: boolean;
|
|
11681
|
+
readonly 'github.copilot.chat.gpt55ReadFileTool.enabled'?: boolean;
|
|
11682
|
+
readonly 'github.copilot.chat.gpt5AlternativePatch'?: boolean;
|
|
11683
|
+
readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
|
|
11684
|
+
readonly 'github.copilot.chat.implementAgent.model'?: string;
|
|
11685
|
+
readonly 'github.copilot.chat.inlineChat.enableThinking'?: boolean;
|
|
11686
|
+
readonly 'github.copilot.chat.inlineChat.reasoningEffort'?: 'none' | 'minimal' | 'low' | 'medium' | 'high';
|
|
11687
|
+
readonly 'github.copilot.chat.inlineEdits.chatSessionContextProvider.enabled'?: boolean;
|
|
11688
|
+
readonly 'github.copilot.chat.inlineEdits.diagnosticsContextProvider.enabled'?: boolean;
|
|
11689
|
+
readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.currentFileMaxTokens'?: number;
|
|
11690
|
+
readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.displayLine'?: boolean;
|
|
11691
|
+
readonly 'github.copilot.chat.inlineEdits.renameSymbolSuggestions'?: boolean;
|
|
11692
|
+
readonly 'github.copilot.chat.inlineEdits.triggerOnEditorChangeAfterSeconds'?: number | null;
|
|
11693
|
+
readonly 'github.copilot.chat.inlineEdits.xtabProvider.modelConfiguration'?: Record<string, unknown> | null;
|
|
11694
|
+
readonly 'github.copilot.chat.installExtensionSkill.enabled'?: boolean;
|
|
11695
|
+
readonly 'github.copilot.chat.instantApply.shortContextLimit'?: number;
|
|
11696
|
+
readonly 'github.copilot.chat.instantApply.shortContextModelName'?: string;
|
|
11697
|
+
readonly 'github.copilot.chat.languageContext.fix.typescript.enabled'?: boolean;
|
|
11698
|
+
readonly 'github.copilot.chat.languageContext.inline.typescript.enabled'?: boolean;
|
|
11699
|
+
readonly 'github.copilot.chat.languageContext.typescript.cacheTimeout'?: number;
|
|
11700
|
+
readonly 'github.copilot.chat.languageContext.typescript.enabled'?: boolean;
|
|
11701
|
+
readonly 'github.copilot.chat.languageContext.typescript.includeDocumentation'?: boolean;
|
|
11702
|
+
readonly 'github.copilot.chat.languageContext.typescript.items'?: 'minimal' | 'double' | 'fillHalf' | 'fill';
|
|
11703
|
+
readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
|
|
11704
|
+
readonly 'github.copilot.chat.localWorkspaceRecording.enabled'?: boolean;
|
|
11705
|
+
readonly 'github.copilot.chat.localeOverride'?: 'auto' | 'en' | 'fr' | 'it' | 'de' | 'es' | 'ru' | 'zh-CN' | 'zh-TW' | 'ja' | 'ko' | 'cs' | 'pt-br' | 'tr' | 'pl';
|
|
11706
|
+
readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
11707
|
+
readonly 'github.copilot.chat.nesFetcher'?: 'electron-fetch' | 'node-fetch';
|
|
11708
|
+
readonly 'github.copilot.chat.newWorkspace.useContext7'?: boolean;
|
|
11709
|
+
readonly 'github.copilot.chat.newWorkspaceCreation.enabled'?: boolean;
|
|
11710
|
+
readonly 'github.copilot.chat.notebook.alternativeFormat'?: 'xml' | 'markdown';
|
|
11711
|
+
readonly 'github.copilot.chat.notebook.alternativeNESFormat.enabled'?: boolean;
|
|
11712
|
+
readonly 'github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled'?: boolean;
|
|
11713
|
+
readonly 'github.copilot.chat.notebook.followCellExecution.enabled'?: boolean;
|
|
11714
|
+
readonly 'github.copilot.chat.notebook.summaryExperimentEnabled'?: boolean;
|
|
11715
|
+
readonly 'github.copilot.chat.notebook.variableFilteringEnabled'?: boolean;
|
|
11716
|
+
readonly 'github.copilot.chat.omitBaseAgentInstructions'?: boolean;
|
|
11717
|
+
readonly 'github.copilot.chat.organizationCustomAgents.enabled'?: boolean;
|
|
11718
|
+
readonly 'github.copilot.chat.organizationInstructions.enabled'?: boolean;
|
|
11719
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11720
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11721
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11722
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11723
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11724
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11725
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11726
|
+
readonly 'github.copilot.chat.planAgent.additionalTools'?: (string)[];
|
|
11727
|
+
readonly 'github.copilot.chat.projectLabels.chat'?: boolean;
|
|
11728
|
+
readonly 'github.copilot.chat.projectLabels.expanded'?: boolean;
|
|
11729
|
+
readonly 'github.copilot.chat.projectLabels.inline'?: boolean;
|
|
11730
|
+
readonly 'github.copilot.chat.promptFileContextProvider.enabled'?: boolean;
|
|
11731
|
+
readonly 'github.copilot.chat.pullRequestDescriptionGeneration.instructions'?: (unknown)[];
|
|
11732
|
+
readonly 'github.copilot.chat.rateLimitAutoSwitchToAuto'?: boolean;
|
|
11733
|
+
readonly 'github.copilot.chat.reasoningEffortOverride'?: string | null;
|
|
11734
|
+
readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
|
|
11735
|
+
readonly 'github.copilot.chat.responsesApi.promptCacheKey.enabled'?: boolean;
|
|
11736
|
+
readonly 'github.copilot.chat.responsesApiContextManagement.enabled'?: boolean;
|
|
11737
|
+
readonly 'github.copilot.chat.responsesApiReasoningSummary'?: 'off' | 'detailed';
|
|
11738
|
+
readonly 'github.copilot.chat.review.intent'?: boolean;
|
|
11739
|
+
readonly 'github.copilot.chat.reviewAgent.enabled'?: boolean;
|
|
11740
|
+
readonly 'github.copilot.chat.reviewSelection.enabled'?: boolean;
|
|
11741
|
+
readonly 'github.copilot.chat.reviewSelection.instructions'?: (unknown)[];
|
|
11742
|
+
readonly 'github.copilot.chat.scopeSelection'?: boolean;
|
|
11743
|
+
readonly 'github.copilot.chat.searchSubagent.enabled'?: boolean;
|
|
11744
|
+
readonly 'github.copilot.chat.searchSubagent.model'?: string;
|
|
11745
|
+
readonly 'github.copilot.chat.searchSubagent.thoroughnessEnabled'?: boolean;
|
|
11746
|
+
readonly 'github.copilot.chat.searchSubagent.toolCallLimit'?: number;
|
|
11747
|
+
readonly 'github.copilot.chat.searchSubagent.useAgenticProxy'?: boolean;
|
|
11748
|
+
readonly 'github.copilot.chat.setupTests.enabled'?: boolean;
|
|
11749
|
+
readonly 'github.copilot.chat.skillTool.enabled'?: boolean;
|
|
11750
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistory.enabled'?: boolean;
|
|
11751
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
|
|
11752
|
+
readonly 'github.copilot.chat.switchAgent.enabled'?: boolean;
|
|
11753
|
+
readonly 'github.copilot.chat.terminalChatLocation'?: 'chatView' | 'quickChat' | 'terminal';
|
|
11754
|
+
readonly 'github.copilot.chat.testGeneration.instructions'?: (unknown)[];
|
|
11755
|
+
readonly 'github.copilot.chat.tools.defaultToolsGrouped'?: boolean;
|
|
11756
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
11757
|
+
readonly 'github.copilot.chat.tools.viewImage.enabled'?: boolean;
|
|
11758
|
+
readonly 'github.copilot.chat.updated53CodexPrompt.enabled'?: boolean;
|
|
11759
|
+
readonly 'github.copilot.chat.useProjectTemplates'?: boolean;
|
|
11760
|
+
readonly 'github.copilot.chat.useResponsesApiTruncation'?: boolean;
|
|
11761
|
+
readonly 'github.copilot.chat.virtualTools.threshold'?: number;
|
|
11762
|
+
readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
|
|
11763
|
+
readonly 'github.copilot.chat.workspace.enableCodeSearch'?: boolean;
|
|
11764
|
+
readonly 'github.copilot.chat.workspace.maxLocalIndexSize'?: number;
|
|
11765
|
+
readonly 'github.copilot.chat.workspace.preferredEmbeddingsModel'?: string;
|
|
11766
|
+
readonly 'github.copilot.chat.workspace.prototypeAdoCodeSearchEndpointOverride'?: string;
|
|
11767
|
+
readonly 'github.copilot.completions.chat.enabled'?: boolean;
|
|
11768
|
+
readonly 'github.copilot.editor.enableCodeActions'?: boolean;
|
|
11769
|
+
readonly 'github.copilot.enable'?: Record<string, unknown>;
|
|
11770
|
+
readonly 'github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges'?: boolean;
|
|
11771
|
+
readonly 'github.copilot.nextEditSuggestions.eagerness'?: 'auto' | 'low' | 'medium' | 'high';
|
|
11772
|
+
readonly 'github.copilot.nextEditSuggestions.enabled'?: boolean;
|
|
11773
|
+
readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
|
|
11774
|
+
readonly 'github.copilot.nextEditSuggestions.fixes'?: boolean;
|
|
11775
|
+
readonly 'github.copilot.nextEditSuggestions.preferredModel'?: string;
|
|
11776
|
+
readonly 'github.copilot.renameSuggestions.triggerAutomatically'?: boolean;
|
|
11777
|
+
readonly 'github.copilot.selectedCompletionModel'?: string;
|
|
11778
|
+
readonly 'onboarding.developerMode'?: boolean;
|
|
11779
|
+
readonly 'remote.tunnels.access.enableMicrosoftAuth'?: boolean;
|
|
11780
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
11781
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
11782
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
11783
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
11784
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
11785
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
11786
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
11787
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
11788
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
11789
|
+
readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'voice-mode-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
|
|
11790
|
+
readonly 'update.showPostInstallInfo'?: boolean;
|
|
11791
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
11792
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
11793
|
+
}, 'agents.voice.microphoneDevice' | 'chat.agentHost.clientTools' | 'chat.customizations.harnessSelector.enabled'>;
|
|
11794
|
+
|
|
10821
11795
|
// ── Version map ──
|
|
10822
11796
|
// Stable entries map directly to their settings type.
|
|
10823
11797
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -10854,22 +11828,71 @@ interface VscodeVersionMap {
|
|
|
10854
11828
|
'1.115.0': VscodeSettings_1_115_0;
|
|
10855
11829
|
'1.116.0': VscodeSettings_1_116_0;
|
|
10856
11830
|
'1.120.0': VscodeSettings_1_120_0;
|
|
10857
|
-
'1.121.0
|
|
11831
|
+
'1.121.0': VscodeSettings_1_121_0;
|
|
11832
|
+
'1.122.0': VscodeSettings_1_122_0;
|
|
11833
|
+
'1.122.1': VscodeSettings_1_122_1;
|
|
11834
|
+
'1.123.0': VscodeSettings_1_123_0;
|
|
11835
|
+
'1.123.1': VscodeSettings_1_123_1;
|
|
11836
|
+
'1.123.2': VscodeSettings_1_123_2;
|
|
11837
|
+
'1.124.0': VscodeSettings_1_124_0;
|
|
11838
|
+
'1.124.1': VscodeSettings_1_124_1;
|
|
11839
|
+
'1.124.2': VscodeSettings_1_124_2;
|
|
11840
|
+
'1.125.0': VscodeSettings_1_125_0;
|
|
11841
|
+
'1.125.1': VscodeSettings_1_125_1;
|
|
11842
|
+
'1.126.0': VscodeSettings_1_126_0;
|
|
11843
|
+
'1.121.0-insider': InsiderBuilds<{
|
|
10858
11844
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
10859
11845
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
10860
|
-
|
|
11846
|
+
'2026051517': VscodeSettings_1_121_0_insider_2026051517;
|
|
11847
|
+
'2026051823': VscodeSettings_1_121_0_insider_2026051823;
|
|
11848
|
+
'2026051910': VscodeSettings_1_121_0_insider_2026051910;
|
|
11849
|
+
}>;
|
|
11850
|
+
'1.122.0-insider': InsiderBuilds<{
|
|
11851
|
+
'2026052017': VscodeSettings_1_122_0_insider_2026052017;
|
|
11852
|
+
'2026052105': VscodeSettings_1_122_0_insider_2026052105;
|
|
11853
|
+
'2026052217': VscodeSettings_1_122_0_insider_2026052217;
|
|
11854
|
+
'2026052517': VscodeSettings_1_122_0_insider_2026052517;
|
|
11855
|
+
'2026052623': VscodeSettings_1_122_0_insider_2026052623;
|
|
11856
|
+
}>;
|
|
11857
|
+
'1.123.0-insider': InsiderBuilds<{
|
|
11858
|
+
'2026060105': VscodeSettings_1_123_0_insider_2026060105;
|
|
11859
|
+
}>;
|
|
11860
|
+
'1.124.0-insider': InsiderBuilds<{
|
|
11861
|
+
'2026060217': VscodeSettings_1_124_0_insider_2026060217;
|
|
11862
|
+
'2026060321': VscodeSettings_1_124_0_insider_2026060321;
|
|
11863
|
+
'2026060513': VscodeSettings_1_124_0_insider_2026060513;
|
|
11864
|
+
'2026060900': VscodeSettings_1_124_0_insider_2026060900;
|
|
11865
|
+
}>;
|
|
11866
|
+
'1.125.0-insider': InsiderBuilds<{
|
|
11867
|
+
'2026061105': VscodeSettings_1_125_0_insider_2026061105;
|
|
11868
|
+
'2026061205': VscodeSettings_1_125_0_insider_2026061205;
|
|
11869
|
+
'2026061217': VscodeSettings_1_125_0_insider_2026061217;
|
|
11870
|
+
'2026061505': VscodeSettings_1_125_0_insider_2026061505;
|
|
11871
|
+
'2026061523': VscodeSettings_1_125_0_insider_2026061523;
|
|
11872
|
+
}>;
|
|
11873
|
+
'1.126.0-insider': InsiderBuilds<{
|
|
11874
|
+
'2026061617': VscodeSettings_1_126_0_insider_2026061617;
|
|
11875
|
+
'2026061720': VscodeSettings_1_126_0_insider_2026061720;
|
|
11876
|
+
'2026061820': VscodeSettings_1_126_0_insider_2026061820;
|
|
11877
|
+
'2026061917': VscodeSettings_1_126_0_insider_2026061917;
|
|
11878
|
+
'2026062301': VscodeSettings_1_126_0_insider_2026062301;
|
|
11879
|
+
}>;
|
|
11880
|
+
'1.127.0-insider': InsiderBuilds<{
|
|
11881
|
+
'2026062317': VscodeSettings_1_127_0_insider_2026062317;
|
|
11882
|
+
'2026062521': VscodeSettings_1_127_0_insider_2026062521;
|
|
11883
|
+
}>;
|
|
10861
11884
|
}
|
|
10862
11885
|
|
|
10863
|
-
export type LatestVscodeSettings =
|
|
11886
|
+
export type LatestVscodeSettings = VscodeSettings_1_126_0;
|
|
10864
11887
|
|
|
10865
|
-
export type LatestInsiderVscodeSettings =
|
|
11888
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_127_0_insider_2026062521;
|
|
10866
11889
|
|
|
10867
11890
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
10868
11891
|
|
|
10869
11892
|
/** Build release dates available for a given version (`never` for stable). */
|
|
10870
11893
|
export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
|
|
10871
|
-
VscodeVersionMap[V] extends
|
|
10872
|
-
? Extract<keyof
|
|
11894
|
+
VscodeVersionMap[V] extends InsiderBuilds<infer B>
|
|
11895
|
+
? Extract<keyof B, string>
|
|
10873
11896
|
: never;
|
|
10874
11897
|
|
|
10875
11898
|
/**
|
|
@@ -10881,6 +11904,6 @@ export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
|
|
|
10881
11904
|
export type VscodeSettingsFor<
|
|
10882
11905
|
V extends VscodeVersion,
|
|
10883
11906
|
R extends VscodeBuildReleaseDateFor<V> = VscodeBuildReleaseDateFor<V>,
|
|
10884
|
-
> = VscodeVersionMap[V] extends
|
|
10885
|
-
?
|
|
11907
|
+
> = VscodeVersionMap[V] extends InsiderBuilds<infer B>
|
|
11908
|
+
? B[R & keyof B]
|
|
10886
11909
|
: VscodeVersionMap[V];
|