@vscode/vscode-settings-history 0.0.2-6 → 0.0.2-61
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/README.md +3 -0
- package/dist/history.json +193181 -0
- package/dist/vscode-settings.d.ts +2209 -8
- package/package.json +5 -6
- package/types.d.ts +18 -0
|
@@ -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;
|
|
@@ -10853,6 +10863,2099 @@ export type VscodeSettings_1_121_0_insider_2026051910 = Patch<VscodeSettings_1_1
|
|
|
10853
10863
|
readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
|
|
10854
10864
|
}, never>;
|
|
10855
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
|
+
|
|
11795
|
+
// ── 1.127.0-insider+2026062621: +2, ~8 ──
|
|
11796
|
+
export type VscodeSettings_1_127_0_insider_2026062621 = Patch<VscodeSettings_1_127_0_insider_2026062521, {
|
|
11797
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11798
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11799
|
+
readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
|
|
11800
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11801
|
+
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';
|
|
11802
|
+
readonly 'extensions.autoUpdate'?: 'on' | 'off';
|
|
11803
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11804
|
+
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';
|
|
11805
|
+
readonly 'onboarding.developerMode'?: Record<string, unknown>;
|
|
11806
|
+
readonly 'workbench.browser.enableChatTools'?: boolean;
|
|
11807
|
+
}, never>;
|
|
11808
|
+
|
|
11809
|
+
// ── 1.127.0-insider+2026062905: +5, ~20 ──
|
|
11810
|
+
export type VscodeSettings_1_127_0_insider_2026062905 = Patch<VscodeSettings_1_127_0_insider_2026062621, {
|
|
11811
|
+
readonly 'chat.agent.allowedNetworkDomains'?: (string)[];
|
|
11812
|
+
readonly 'chat.agent.deniedNetworkDomains'?: (string)[];
|
|
11813
|
+
readonly 'chat.agent.sandbox.allowNetwork'?: boolean;
|
|
11814
|
+
readonly 'chat.agent.sandbox.enabled'?: 'off' | 'on';
|
|
11815
|
+
readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'on';
|
|
11816
|
+
readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
|
|
11817
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11818
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11819
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11820
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11821
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11822
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11823
|
+
readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
|
|
11824
|
+
readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
|
|
11825
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11826
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11827
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11828
|
+
readonly 'github.copilot.chat.otel.headers'?: Record<string, unknown>;
|
|
11829
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11830
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11831
|
+
readonly 'github.copilot.chat.otel.protocol'?: '' | 'http/json' | 'http/protobuf' | 'grpc';
|
|
11832
|
+
readonly 'github.copilot.chat.otel.resourceAttributes'?: Record<string, unknown>;
|
|
11833
|
+
readonly 'github.copilot.chat.otel.serviceName'?: string;
|
|
11834
|
+
readonly 'terminal.integrated.commandsToSkipShell'?: (string)[];
|
|
11835
|
+
readonly 'workbench.browser.agentHostChatToolsEnabled'?: boolean;
|
|
11836
|
+
}, never>;
|
|
11837
|
+
|
|
11838
|
+
// ── 1.128.0-insider+2026063019: +5, ~5, -2 ──
|
|
11839
|
+
export type VscodeSettings_1_128_0_insider_2026063019 = Patch<VscodeSettings_1_127_0_insider_2026062905, {
|
|
11840
|
+
readonly 'accessibility.verbosity.sessionsChanges'?: boolean;
|
|
11841
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
11842
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
11843
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11844
|
+
readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
|
|
11845
|
+
readonly 'github.copilot.chat.tools.grepSearch.maxResultsCap'?: number;
|
|
11846
|
+
readonly 'onboarding.developerMode'?: Record<string, unknown>;
|
|
11847
|
+
readonly 'workbench.browser.sendElementsToChat.attachImages'?: boolean;
|
|
11848
|
+
readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
|
|
11849
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
11850
|
+
}, 'chat.sendElementsToChat.attachImages' | 'github.copilot.chat.responsesApiReasoningSummary'>;
|
|
11851
|
+
|
|
11852
|
+
// ── 1.127.0: +12, ~227, -3 ──
|
|
11853
|
+
export type VscodeSettings_1_127_0 = Patch<VscodeSettings_1_126_0, {
|
|
11854
|
+
readonly 'chat.agent.allowedNetworkDomains'?: (string)[];
|
|
11855
|
+
readonly 'chat.agent.deniedNetworkDomains'?: (string)[];
|
|
11856
|
+
readonly 'chat.agent.sandbox.allowNetwork'?: boolean;
|
|
11857
|
+
readonly 'chat.agent.sandbox.enabled'?: 'off' | 'on';
|
|
11858
|
+
readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'on';
|
|
11859
|
+
readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
|
|
11860
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
11861
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
11862
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
11863
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11864
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11865
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11866
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11867
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11868
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11869
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
11870
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
11871
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
11872
|
+
readonly 'chat.defaultModel'?: string;
|
|
11873
|
+
readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
|
|
11874
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
11875
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
11876
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
11877
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11878
|
+
readonly 'extensions.autoUpdate'?: 'on' | 'off';
|
|
11879
|
+
readonly 'github.copilot.chat.additionalReadAccessPaths'?: (string)[];
|
|
11880
|
+
readonly 'github.copilot.chat.agent.autoFix'?: boolean;
|
|
11881
|
+
readonly 'github.copilot.chat.agent.backgroundTodoAgent.enabled'?: boolean;
|
|
11882
|
+
readonly 'github.copilot.chat.agent.currentEditorContext.enabled'?: boolean;
|
|
11883
|
+
readonly 'github.copilot.chat.agent.largeToolResultsToDisk.enabled'?: boolean;
|
|
11884
|
+
readonly 'github.copilot.chat.agent.largeToolResultsToDisk.thresholdBytes'?: number;
|
|
11885
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
|
|
11886
|
+
readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
|
|
11887
|
+
readonly 'github.copilot.chat.agent.modelDetails.enabled'?: boolean;
|
|
11888
|
+
readonly 'github.copilot.chat.agent.omitFileAttachmentContents'?: boolean;
|
|
11889
|
+
readonly 'github.copilot.chat.agent.temperature'?: number | null;
|
|
11890
|
+
readonly 'github.copilot.chat.agentDebugLog.enabled'?: boolean;
|
|
11891
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.enabled'?: boolean;
|
|
11892
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.flushIntervalMs'?: number;
|
|
11893
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxRetainedSessionLogs'?: number;
|
|
11894
|
+
readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxSessionLogSizeMB'?: number;
|
|
11895
|
+
readonly 'github.copilot.chat.agentHistorySummarizationMode'?: string | null;
|
|
11896
|
+
readonly 'github.copilot.chat.alternateGeminiModelFPrompt.enabled'?: boolean;
|
|
11897
|
+
readonly 'github.copilot.chat.alternateGptPrompt.enabled'?: boolean;
|
|
11898
|
+
readonly 'github.copilot.chat.anthropic.contextEditing.mode'?: 'off' | 'clear-thinking' | 'clear-tooluse' | 'clear-both';
|
|
11899
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
|
|
11900
|
+
readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
|
|
11901
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.allowedDomains'?: (string)[];
|
|
11902
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.blockedDomains'?: (string)[];
|
|
11903
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.enabled'?: boolean;
|
|
11904
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.maxUses'?: number;
|
|
11905
|
+
readonly 'github.copilot.chat.anthropic.tools.websearch.userLocation'?: Record<string, unknown> | null;
|
|
11906
|
+
readonly 'github.copilot.chat.anthropic.useMessagesApi'?: boolean;
|
|
11907
|
+
readonly 'github.copilot.chat.askAgent.additionalTools'?: (string)[];
|
|
11908
|
+
readonly 'github.copilot.chat.askAgent.model'?: string;
|
|
11909
|
+
readonly 'github.copilot.chat.backgroundAgent.enabled'?: boolean;
|
|
11910
|
+
readonly 'github.copilot.chat.claude47OpusPrompt.enabled'?: boolean;
|
|
11911
|
+
readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
|
|
11912
|
+
readonly 'github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions'?: boolean;
|
|
11913
|
+
readonly 'github.copilot.chat.claudeAgent.enabled'?: boolean;
|
|
11914
|
+
readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
|
|
11915
|
+
readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
|
|
11916
|
+
readonly 'github.copilot.chat.cli.aiGenerateBranchNames.enabled'?: boolean;
|
|
11917
|
+
readonly 'github.copilot.chat.cli.autoCommit.enabled'?: boolean;
|
|
11918
|
+
readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
|
|
11919
|
+
readonly 'github.copilot.chat.cli.branchSupport.enabled'?: boolean;
|
|
11920
|
+
readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
|
|
11921
|
+
readonly 'github.copilot.chat.cli.isolationOption.enabled'?: boolean;
|
|
11922
|
+
readonly 'github.copilot.chat.cli.lazyLoadSessionItem.enabled'?: boolean;
|
|
11923
|
+
readonly 'github.copilot.chat.cli.mcp.enabled'?: boolean;
|
|
11924
|
+
readonly 'github.copilot.chat.cli.planCommand.enabled'?: boolean;
|
|
11925
|
+
readonly 'github.copilot.chat.cli.planExitMode.enabled'?: boolean;
|
|
11926
|
+
readonly 'github.copilot.chat.cli.remote.enabled'?: boolean;
|
|
11927
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
11928
|
+
readonly 'github.copilot.chat.cli.sessionController.enabled'?: boolean;
|
|
11929
|
+
readonly 'github.copilot.chat.cli.sessionControllerForSessionsApp.enabled'?: boolean;
|
|
11930
|
+
readonly 'github.copilot.chat.cli.showExternalSessions'?: boolean;
|
|
11931
|
+
readonly 'github.copilot.chat.cli.terminalLinks.enabled'?: boolean;
|
|
11932
|
+
readonly 'github.copilot.chat.cli.thinkingEffort.enabled'?: boolean;
|
|
11933
|
+
readonly 'github.copilot.chat.cloudAgent.enabled'?: boolean;
|
|
11934
|
+
readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
|
|
11935
|
+
readonly 'github.copilot.chat.codeGeneration.instructions'?: (unknown)[];
|
|
11936
|
+
readonly 'github.copilot.chat.codeGeneration.useInstructionFiles'?: boolean;
|
|
11937
|
+
readonly 'github.copilot.chat.codesearch.agent.enabled'?: boolean;
|
|
11938
|
+
readonly 'github.copilot.chat.codesearch.enabled'?: boolean;
|
|
11939
|
+
readonly 'github.copilot.chat.commitMessageGeneration.instructions'?: (unknown)[];
|
|
11940
|
+
readonly 'github.copilot.chat.completionsFetcher'?: 'electron-fetch' | 'node-fetch';
|
|
11941
|
+
readonly 'github.copilot.chat.conversationCompaction.model'?: string;
|
|
11942
|
+
readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
|
|
11943
|
+
readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
|
|
11944
|
+
readonly 'github.copilot.chat.copilotDebugCommand.enabled'?: boolean;
|
|
11945
|
+
readonly 'github.copilot.chat.customInstructionsInSystemMessage'?: boolean;
|
|
11946
|
+
readonly 'github.copilot.chat.debug.promptOverrideFile'?: string | null;
|
|
11947
|
+
readonly 'github.copilot.chat.debug.promptOverrideString'?: string | null;
|
|
11948
|
+
readonly 'github.copilot.chat.debug.requestLogger.maxEntries'?: number;
|
|
11949
|
+
readonly 'github.copilot.chat.debugTerminalCommandPatterns'?: (string)[];
|
|
11950
|
+
readonly 'github.copilot.chat.editRecording.enabled'?: boolean;
|
|
11951
|
+
readonly 'github.copilot.chat.edits.batchReplaceStringDescriptions'?: boolean;
|
|
11952
|
+
readonly 'github.copilot.chat.edits.gemini3MultiReplaceString'?: boolean;
|
|
11953
|
+
readonly 'github.copilot.chat.enableUserPreferences'?: boolean;
|
|
11954
|
+
readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
|
|
11955
|
+
readonly 'github.copilot.chat.executionSubagent.model'?: string;
|
|
11956
|
+
readonly 'github.copilot.chat.executionSubagent.toolCallLimit'?: number;
|
|
11957
|
+
readonly 'github.copilot.chat.executionSubagent.useAgenticProxy'?: boolean;
|
|
11958
|
+
readonly 'github.copilot.chat.exploreAgent.enabled'?: boolean;
|
|
11959
|
+
readonly 'github.copilot.chat.exploreAgent.model'?: string;
|
|
11960
|
+
readonly 'github.copilot.chat.feedback.onChange'?: boolean;
|
|
11961
|
+
readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
|
|
11962
|
+
readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
|
|
11963
|
+
readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
|
|
11964
|
+
readonly 'github.copilot.chat.getChangedFilesTool.enabled'?: boolean;
|
|
11965
|
+
readonly 'github.copilot.chat.githubMcpServer.channel'?: 'stable' | 'insiders';
|
|
11966
|
+
readonly 'github.copilot.chat.githubMcpServer.enabled'?: boolean;
|
|
11967
|
+
readonly 'github.copilot.chat.githubMcpServer.lockdown'?: boolean;
|
|
11968
|
+
readonly 'github.copilot.chat.githubMcpServer.readonly'?: boolean;
|
|
11969
|
+
readonly 'github.copilot.chat.githubMcpServer.toolsets'?: (string)[];
|
|
11970
|
+
readonly 'github.copilot.chat.gpt55GetChangedFilesTool.enabled'?: boolean;
|
|
11971
|
+
readonly 'github.copilot.chat.gpt55ReadFileTool.enabled'?: boolean;
|
|
11972
|
+
readonly 'github.copilot.chat.gpt5AlternativePatch'?: boolean;
|
|
11973
|
+
readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
|
|
11974
|
+
readonly 'github.copilot.chat.implementAgent.model'?: string;
|
|
11975
|
+
readonly 'github.copilot.chat.inlineChat.enableThinking'?: boolean;
|
|
11976
|
+
readonly 'github.copilot.chat.inlineChat.reasoningEffort'?: 'none' | 'minimal' | 'low' | 'medium' | 'high';
|
|
11977
|
+
readonly 'github.copilot.chat.inlineEdits.chatSessionContextProvider.enabled'?: boolean;
|
|
11978
|
+
readonly 'github.copilot.chat.inlineEdits.diagnosticsContextProvider.enabled'?: boolean;
|
|
11979
|
+
readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.currentFileMaxTokens'?: number;
|
|
11980
|
+
readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.displayLine'?: boolean;
|
|
11981
|
+
readonly 'github.copilot.chat.inlineEdits.renameSymbolSuggestions'?: boolean;
|
|
11982
|
+
readonly 'github.copilot.chat.inlineEdits.triggerOnEditorChangeAfterSeconds'?: number | null;
|
|
11983
|
+
readonly 'github.copilot.chat.inlineEdits.xtabProvider.modelConfiguration'?: Record<string, unknown> | null;
|
|
11984
|
+
readonly 'github.copilot.chat.installExtensionSkill.enabled'?: boolean;
|
|
11985
|
+
readonly 'github.copilot.chat.instantApply.shortContextLimit'?: number;
|
|
11986
|
+
readonly 'github.copilot.chat.instantApply.shortContextModelName'?: string;
|
|
11987
|
+
readonly 'github.copilot.chat.languageContext.fix.typescript.enabled'?: boolean;
|
|
11988
|
+
readonly 'github.copilot.chat.languageContext.inline.typescript.enabled'?: boolean;
|
|
11989
|
+
readonly 'github.copilot.chat.languageContext.typescript.cacheTimeout'?: number;
|
|
11990
|
+
readonly 'github.copilot.chat.languageContext.typescript.enabled'?: boolean;
|
|
11991
|
+
readonly 'github.copilot.chat.languageContext.typescript.includeDocumentation'?: boolean;
|
|
11992
|
+
readonly 'github.copilot.chat.languageContext.typescript.items'?: 'minimal' | 'double' | 'fillHalf' | 'fill';
|
|
11993
|
+
readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
|
|
11994
|
+
readonly 'github.copilot.chat.localWorkspaceRecording.enabled'?: boolean;
|
|
11995
|
+
readonly 'github.copilot.chat.localeOverride'?: 'auto' | 'en' | 'fr' | 'it' | 'de' | 'es' | 'ru' | 'zh-CN' | 'zh-TW' | 'ja' | 'ko' | 'cs' | 'pt-br' | 'tr' | 'pl';
|
|
11996
|
+
readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
11997
|
+
readonly 'github.copilot.chat.nesFetcher'?: 'electron-fetch' | 'node-fetch';
|
|
11998
|
+
readonly 'github.copilot.chat.newWorkspace.useContext7'?: boolean;
|
|
11999
|
+
readonly 'github.copilot.chat.newWorkspaceCreation.enabled'?: boolean;
|
|
12000
|
+
readonly 'github.copilot.chat.notebook.alternativeFormat'?: 'xml' | 'markdown';
|
|
12001
|
+
readonly 'github.copilot.chat.notebook.alternativeNESFormat.enabled'?: boolean;
|
|
12002
|
+
readonly 'github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled'?: boolean;
|
|
12003
|
+
readonly 'github.copilot.chat.notebook.followCellExecution.enabled'?: boolean;
|
|
12004
|
+
readonly 'github.copilot.chat.notebook.summaryExperimentEnabled'?: boolean;
|
|
12005
|
+
readonly 'github.copilot.chat.notebook.variableFilteringEnabled'?: boolean;
|
|
12006
|
+
readonly 'github.copilot.chat.omitBaseAgentInstructions'?: boolean;
|
|
12007
|
+
readonly 'github.copilot.chat.organizationCustomAgents.enabled'?: boolean;
|
|
12008
|
+
readonly 'github.copilot.chat.organizationInstructions.enabled'?: boolean;
|
|
12009
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
12010
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
12011
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
12012
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
12013
|
+
readonly 'github.copilot.chat.otel.headers'?: Record<string, unknown>;
|
|
12014
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
12015
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
12016
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
12017
|
+
readonly 'github.copilot.chat.otel.protocol'?: '' | 'http/json' | 'http/protobuf' | 'grpc';
|
|
12018
|
+
readonly 'github.copilot.chat.otel.resourceAttributes'?: Record<string, unknown>;
|
|
12019
|
+
readonly 'github.copilot.chat.otel.serviceName'?: string;
|
|
12020
|
+
readonly 'github.copilot.chat.planAgent.additionalTools'?: (string)[];
|
|
12021
|
+
readonly 'github.copilot.chat.projectLabels.chat'?: boolean;
|
|
12022
|
+
readonly 'github.copilot.chat.projectLabels.expanded'?: boolean;
|
|
12023
|
+
readonly 'github.copilot.chat.projectLabels.inline'?: boolean;
|
|
12024
|
+
readonly 'github.copilot.chat.promptFileContextProvider.enabled'?: boolean;
|
|
12025
|
+
readonly 'github.copilot.chat.pullRequestDescriptionGeneration.instructions'?: (unknown)[];
|
|
12026
|
+
readonly 'github.copilot.chat.rateLimitAutoSwitchToAuto'?: boolean;
|
|
12027
|
+
readonly 'github.copilot.chat.reasoningEffortOverride'?: string | null;
|
|
12028
|
+
readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
|
|
12029
|
+
readonly 'github.copilot.chat.responsesApi.promptCacheKey.enabled'?: boolean;
|
|
12030
|
+
readonly 'github.copilot.chat.responsesApiContextManagement.enabled'?: boolean;
|
|
12031
|
+
readonly 'github.copilot.chat.responsesApiReasoningSummary'?: 'off' | 'detailed';
|
|
12032
|
+
readonly 'github.copilot.chat.review.intent'?: boolean;
|
|
12033
|
+
readonly 'github.copilot.chat.reviewAgent.enabled'?: boolean;
|
|
12034
|
+
readonly 'github.copilot.chat.reviewSelection.enabled'?: boolean;
|
|
12035
|
+
readonly 'github.copilot.chat.reviewSelection.instructions'?: (unknown)[];
|
|
12036
|
+
readonly 'github.copilot.chat.scopeSelection'?: boolean;
|
|
12037
|
+
readonly 'github.copilot.chat.searchSubagent.enabled'?: boolean;
|
|
12038
|
+
readonly 'github.copilot.chat.searchSubagent.model'?: string;
|
|
12039
|
+
readonly 'github.copilot.chat.searchSubagent.thoroughnessEnabled'?: boolean;
|
|
12040
|
+
readonly 'github.copilot.chat.searchSubagent.toolCallLimit'?: number;
|
|
12041
|
+
readonly 'github.copilot.chat.searchSubagent.useAgenticProxy'?: boolean;
|
|
12042
|
+
readonly 'github.copilot.chat.setupTests.enabled'?: boolean;
|
|
12043
|
+
readonly 'github.copilot.chat.skillTool.enabled'?: boolean;
|
|
12044
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistory.enabled'?: boolean;
|
|
12045
|
+
readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
|
|
12046
|
+
readonly 'github.copilot.chat.switchAgent.enabled'?: boolean;
|
|
12047
|
+
readonly 'github.copilot.chat.terminalChatLocation'?: 'chatView' | 'quickChat' | 'terminal';
|
|
12048
|
+
readonly 'github.copilot.chat.testGeneration.instructions'?: (unknown)[];
|
|
12049
|
+
readonly 'github.copilot.chat.tools.defaultToolsGrouped'?: boolean;
|
|
12050
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
12051
|
+
readonly 'github.copilot.chat.tools.viewImage.enabled'?: boolean;
|
|
12052
|
+
readonly 'github.copilot.chat.updated53CodexPrompt.enabled'?: boolean;
|
|
12053
|
+
readonly 'github.copilot.chat.useProjectTemplates'?: boolean;
|
|
12054
|
+
readonly 'github.copilot.chat.useResponsesApiTruncation'?: boolean;
|
|
12055
|
+
readonly 'github.copilot.chat.virtualTools.threshold'?: number;
|
|
12056
|
+
readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
|
|
12057
|
+
readonly 'github.copilot.chat.workspace.enableCodeSearch'?: boolean;
|
|
12058
|
+
readonly 'github.copilot.chat.workspace.maxLocalIndexSize'?: number;
|
|
12059
|
+
readonly 'github.copilot.chat.workspace.preferredEmbeddingsModel'?: string;
|
|
12060
|
+
readonly 'github.copilot.chat.workspace.prototypeAdoCodeSearchEndpointOverride'?: string;
|
|
12061
|
+
readonly 'github.copilot.completions.chat.enabled'?: boolean;
|
|
12062
|
+
readonly 'github.copilot.editor.enableCodeActions'?: boolean;
|
|
12063
|
+
readonly 'github.copilot.enable'?: Record<string, unknown>;
|
|
12064
|
+
readonly 'github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges'?: boolean;
|
|
12065
|
+
readonly 'github.copilot.nextEditSuggestions.eagerness'?: 'auto' | 'low' | 'medium' | 'high';
|
|
12066
|
+
readonly 'github.copilot.nextEditSuggestions.enabled'?: boolean;
|
|
12067
|
+
readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
|
|
12068
|
+
readonly 'github.copilot.nextEditSuggestions.fixes'?: boolean;
|
|
12069
|
+
readonly 'github.copilot.nextEditSuggestions.preferredModel'?: string;
|
|
12070
|
+
readonly 'github.copilot.renameSuggestions.triggerAutomatically'?: boolean;
|
|
12071
|
+
readonly 'github.copilot.selectedCompletionModel'?: string;
|
|
12072
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12073
|
+
readonly 'onboarding.developerMode'?: Record<string, unknown>;
|
|
12074
|
+
readonly 'onboarding.enabled'?: boolean;
|
|
12075
|
+
readonly 'remote.tunnels.access.enableMicrosoftAuth'?: boolean;
|
|
12076
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12077
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12078
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12079
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12080
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12081
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12082
|
+
readonly 'terminal.integrated.commandsToSkipShell'?: (string)[];
|
|
12083
|
+
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';
|
|
12084
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12085
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12086
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12087
|
+
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';
|
|
12088
|
+
readonly 'update.showPostInstallInfo'?: boolean;
|
|
12089
|
+
readonly 'workbench.browser.agentHostChatToolsEnabled'?: boolean;
|
|
12090
|
+
readonly 'workbench.browser.enableChatTools'?: boolean;
|
|
12091
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
12092
|
+
readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
|
|
12093
|
+
}, 'chat.agent.maxRequests' | 'chat.agentHost.clientTools' | 'chat.customizations.harnessSelector.enabled'>;
|
|
12094
|
+
|
|
12095
|
+
// ── 1.128.0-insider+2026070121: +4, ~4, -1 ──
|
|
12096
|
+
export type VscodeSettings_1_128_0_insider_2026070121 = Patch<VscodeSettings_1_128_0_insider_2026063019, {
|
|
12097
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12098
|
+
readonly 'chat.cacheBreakHint.enabled'?: boolean;
|
|
12099
|
+
readonly 'chat.useCopilotModelsForUtilityModels'?: boolean;
|
|
12100
|
+
readonly 'chat.utilityModel'?: '';
|
|
12101
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
12102
|
+
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';
|
|
12103
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12104
|
+
readonly 'workbench.browser.newTabPlacement'?: 'activeGroup' | 'sideGroup' | 'window';
|
|
12105
|
+
}, 'github.copilot.chat.responsesApi.persistentCoT.enabled'>;
|
|
12106
|
+
|
|
12107
|
+
// ── 1.128.0-insider+2026070217: +1, ~6, -2 ──
|
|
12108
|
+
export type VscodeSettings_1_128_0_insider_2026070217 = Patch<VscodeSettings_1_128_0_insider_2026070121, {
|
|
12109
|
+
readonly 'chat.implicitContext.includeActiveEditor'?: boolean;
|
|
12110
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12111
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12112
|
+
readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
|
|
12113
|
+
readonly 'imageCarousel.chat.enabled'?: boolean;
|
|
12114
|
+
readonly 'onboarding.enabled'?: boolean;
|
|
12115
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
12116
|
+
}, 'chat.cacheBreakHint.enabled' | 'workbench.browser.agentHostChatToolsEnabled'>;
|
|
12117
|
+
|
|
12118
|
+
// ── 1.128.0-insider+2026070317: +2, ~6 ──
|
|
12119
|
+
export type VscodeSettings_1_128_0_insider_2026070317 = Patch<VscodeSettings_1_128_0_insider_2026070217, {
|
|
12120
|
+
readonly 'accessibility.verbosity.automations'?: boolean;
|
|
12121
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12122
|
+
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';
|
|
12123
|
+
readonly 'github.copilot.chat.responsesApi.promptCacheBreakpoint.enabled'?: boolean;
|
|
12124
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
12125
|
+
readonly 'update.channel'?: string;
|
|
12126
|
+
readonly 'update.mode'?: 'none' | 'manual' | 'start' | 'default';
|
|
12127
|
+
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
12128
|
+
}, never>;
|
|
12129
|
+
|
|
12130
|
+
// ── 1.128.0-insider+2026070704: +2, ~6, -2 ──
|
|
12131
|
+
export type VscodeSettings_1_128_0_insider_2026070704 = Patch<VscodeSettings_1_128_0_insider_2026070317, {
|
|
12132
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12133
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12134
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12135
|
+
readonly 'chat.utilityModel'?: '';
|
|
12136
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
12137
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12138
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12139
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12140
|
+
}, 'chat.agent.maxRequests' | 'chat.useCopilotModelsForUtilityModels'>;
|
|
12141
|
+
|
|
12142
|
+
// ── 1.128.0-insider+2026070711: +1, ~4 ──
|
|
12143
|
+
export type VscodeSettings_1_128_0_insider_2026070711 = Patch<VscodeSettings_1_128_0_insider_2026070704, {
|
|
12144
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12145
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12146
|
+
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';
|
|
12147
|
+
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';
|
|
12148
|
+
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';
|
|
12149
|
+
}, never>;
|
|
12150
|
+
|
|
12151
|
+
// ── 1.128.0: +12, ~14, -4 ──
|
|
12152
|
+
export type VscodeSettings_1_128_0 = Patch<VscodeSettings_1_127_0, {
|
|
12153
|
+
readonly 'accessibility.verbosity.automations'?: boolean;
|
|
12154
|
+
readonly 'accessibility.verbosity.sessionsChanges'?: boolean;
|
|
12155
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12156
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12157
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12158
|
+
readonly 'chat.implicitContext.includeActiveEditor'?: boolean;
|
|
12159
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12160
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12161
|
+
readonly 'chat.utilityModel'?: '';
|
|
12162
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
12163
|
+
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';
|
|
12164
|
+
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';
|
|
12165
|
+
readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
|
|
12166
|
+
readonly 'github.copilot.chat.responsesApi.promptCacheBreakpoint.enabled'?: boolean;
|
|
12167
|
+
readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
|
|
12168
|
+
readonly 'github.copilot.chat.tools.grepSearch.maxResultsCap'?: number;
|
|
12169
|
+
readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
|
|
12170
|
+
readonly 'imageCarousel.chat.enabled'?: boolean;
|
|
12171
|
+
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';
|
|
12172
|
+
readonly 'onboarding.developerMode'?: Record<string, unknown>;
|
|
12173
|
+
readonly 'onboarding.enabled'?: boolean;
|
|
12174
|
+
readonly 'update.channel'?: string;
|
|
12175
|
+
readonly 'update.mode'?: 'none' | 'manual' | 'start' | 'default';
|
|
12176
|
+
readonly 'workbench.browser.newTabPlacement'?: 'activeGroup' | 'sideGroup' | 'window';
|
|
12177
|
+
readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
|
|
12178
|
+
readonly 'workbench.browser.sendElementsToChat.attachImages'?: boolean;
|
|
12179
|
+
}, 'chat.sendElementsToChat.attachImages' | 'github.copilot.chat.responsesApi.persistentCoT.enabled' | 'github.copilot.chat.responsesApiReasoningSummary' | 'workbench.browser.agentHostChatToolsEnabled'>;
|
|
12180
|
+
|
|
12181
|
+
// ── 1.129.0-insider+2026070910: +14, ~14, -1 ──
|
|
12182
|
+
export type VscodeSettings_1_129_0_insider_2026070910 = Patch<VscodeSettings_1_128_0_insider_2026070711, {
|
|
12183
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12184
|
+
readonly 'agents.voice.showTranscript'?: boolean;
|
|
12185
|
+
readonly 'agents.voice.textToSpeech'?: boolean;
|
|
12186
|
+
readonly 'agents.voice.turn.autoEndMode'?: 'off' | 'vad' | 'phrase' | 'both';
|
|
12187
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12188
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12189
|
+
readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
|
|
12190
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12191
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12192
|
+
readonly 'chat.agentHost.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
12193
|
+
readonly 'chat.agentHost.reasoningEffortOverride'?: string;
|
|
12194
|
+
readonly 'chat.defaultModel'?: string;
|
|
12195
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
12196
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12197
|
+
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';
|
|
12198
|
+
readonly 'editor.inlineSuggest.edits.longDistanceHintContextLineCount'?: number;
|
|
12199
|
+
readonly 'github.copilot.chat.claude48OpusPrompt.enabled'?: boolean;
|
|
12200
|
+
readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
|
|
12201
|
+
readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
|
|
12202
|
+
readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
|
|
12203
|
+
readonly 'microsoft-sovereign-cloud.customEnvironment'?: Record<string, unknown>;
|
|
12204
|
+
readonly 'microsoft-sovereign-cloud.environment'?: 'ChinaCloud' | 'USGovernment' | 'custom';
|
|
12205
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
12206
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12207
|
+
readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
|
|
12208
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12209
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
12210
|
+
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
12211
|
+
}, 'github.copilot.chat.claude47OpusPrompt.enabled'>;
|
|
12212
|
+
|
|
12213
|
+
// ── 1.129.0-insider+2026071020: ~4, -1 ──
|
|
12214
|
+
export type VscodeSettings_1_129_0_insider_2026071020 = Patch<VscodeSettings_1_129_0_insider_2026070910, {
|
|
12215
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12216
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12217
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12218
|
+
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';
|
|
12219
|
+
}, 'agents.voice.turn.autoEndMode'>;
|
|
12220
|
+
|
|
12221
|
+
// ── 1.129.0-insider+2026071317: +4, ~8, -3 ──
|
|
12222
|
+
export type VscodeSettings_1_129_0_insider_2026071317 = Patch<VscodeSettings_1_129_0_insider_2026071020, {
|
|
12223
|
+
readonly 'agents.voice.showTranscript'?: boolean;
|
|
12224
|
+
readonly 'agents.voice.speakResponses'?: boolean;
|
|
12225
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12226
|
+
readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
|
|
12227
|
+
readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
|
|
12228
|
+
readonly 'chat.customizations.promptMigration.enabled'?: boolean;
|
|
12229
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12230
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12231
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12232
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12233
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12234
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12235
|
+
}, 'agents.voice.textToSpeech' | 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled'>;
|
|
12236
|
+
|
|
12237
|
+
// ── 1.128.1: ~2 ──
|
|
12238
|
+
export type VscodeSettings_1_128_1 = Patch<VscodeSettings_1_128_0, {
|
|
12239
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12240
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12241
|
+
}, never>;
|
|
12242
|
+
|
|
12243
|
+
// ── 1.129.0: +16, ~14, -3 ──
|
|
12244
|
+
export type VscodeSettings_1_129_0 = Patch<VscodeSettings_1_128_0, {
|
|
12245
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12246
|
+
readonly 'agents.voice.showTranscript'?: boolean;
|
|
12247
|
+
readonly 'agents.voice.speakResponses'?: boolean;
|
|
12248
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12249
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12250
|
+
readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
|
|
12251
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12252
|
+
readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
|
|
12253
|
+
readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
|
|
12254
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12255
|
+
readonly 'chat.agentHost.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
12256
|
+
readonly 'chat.agentHost.reasoningEffortOverride'?: string;
|
|
12257
|
+
readonly 'chat.customizations.promptMigration.enabled'?: boolean;
|
|
12258
|
+
readonly 'chat.defaultModel'?: string;
|
|
12259
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
12260
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12261
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12262
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12263
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12264
|
+
readonly 'editor.inlineSuggest.edits.longDistanceHintContextLineCount'?: number;
|
|
12265
|
+
readonly 'github.copilot.chat.claude48OpusPrompt.enabled'?: boolean;
|
|
12266
|
+
readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
|
|
12267
|
+
readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
|
|
12268
|
+
readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
|
|
12269
|
+
readonly 'microsoft-sovereign-cloud.customEnvironment'?: Record<string, unknown>;
|
|
12270
|
+
readonly 'microsoft-sovereign-cloud.environment'?: 'ChinaCloud' | 'USGovernment' | 'custom';
|
|
12271
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12272
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
12273
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12274
|
+
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
12275
|
+
}, 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled' | 'github.copilot.chat.claude47OpusPrompt.enabled'>;
|
|
12276
|
+
|
|
12277
|
+
// ── 1.130.0-insider+2026071611: +6, ~21, -1 ──
|
|
12278
|
+
export type VscodeSettings_1_130_0_insider_2026071611 = Patch<VscodeSettings_1_129_0_insider_2026071317, {
|
|
12279
|
+
readonly 'agents.voice.enabled'?: boolean;
|
|
12280
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12281
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12282
|
+
readonly 'chat.agentHost.copilotSdk.logLevel'?: 'info' | 'trace';
|
|
12283
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12284
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
12285
|
+
readonly 'chat.editor.codex.preferAgentHost'?: boolean;
|
|
12286
|
+
readonly 'chat.editor.localAgent.enabled'?: boolean;
|
|
12287
|
+
readonly 'chat.experimental.autoApprovals.enabled'?: boolean;
|
|
12288
|
+
readonly 'chat.tools.terminal.outputCompaction'?: boolean;
|
|
12289
|
+
readonly 'chat.turnStatusPills'?: unknown;
|
|
12290
|
+
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';
|
|
12291
|
+
readonly 'javascript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12292
|
+
readonly 'js/ts.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12293
|
+
readonly 'js/ts.tsdk.path'?: string;
|
|
12294
|
+
readonly 'js/ts.tsserver.diagnosticDir'?: string;
|
|
12295
|
+
readonly 'js/ts.tsserver.heapProfile'?: Record<string, unknown>;
|
|
12296
|
+
readonly 'js/ts.tsserver.node.path'?: string;
|
|
12297
|
+
readonly 'js/ts.tsserver.npm.path'?: string;
|
|
12298
|
+
readonly 'js/ts.tsserver.pluginPaths'?: (string)[];
|
|
12299
|
+
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';
|
|
12300
|
+
readonly 'terminal.integrated.tabs.allowAgentCliTitle'?: boolean;
|
|
12301
|
+
readonly 'typescript.npm'?: string;
|
|
12302
|
+
readonly 'typescript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12303
|
+
readonly 'typescript.tsdk'?: string;
|
|
12304
|
+
readonly 'typescript.tsserver.nodePath'?: string;
|
|
12305
|
+
readonly 'typescript.tsserver.pluginPaths'?: (string)[];
|
|
12306
|
+
}, 'terminal.integrated.initialHintCopilotCli'>;
|
|
12307
|
+
|
|
12308
|
+
// ── 1.129.1: +1, ~3 ──
|
|
12309
|
+
export type VscodeSettings_1_129_1 = Patch<VscodeSettings_1_129_0, {
|
|
12310
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12311
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12312
|
+
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';
|
|
12313
|
+
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';
|
|
12314
|
+
}, never>;
|
|
12315
|
+
|
|
12316
|
+
// ── 1.130.0-insider+2026071716: +9, ~3, -2 ──
|
|
12317
|
+
export type VscodeSettings_1_130_0_insider_2026071716 = Patch<VscodeSettings_1_130_0_insider_2026071611, {
|
|
12318
|
+
readonly 'accessibility.signals.voiceRecordingStopped'?: Record<string, unknown>;
|
|
12319
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12320
|
+
readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
|
|
12321
|
+
readonly 'chat.assistedPermissions.enabled'?: boolean;
|
|
12322
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
12323
|
+
readonly 'chat.defaultToCopilotHarness'?: boolean;
|
|
12324
|
+
readonly 'chat.editor.preferCopilotHarness'?: boolean;
|
|
12325
|
+
readonly 'chat.speechToText.enabled'?: boolean;
|
|
12326
|
+
readonly 'chat.speechToText.mode'?: 'auto' | 'toggle' | 'pushToTalk';
|
|
12327
|
+
readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small';
|
|
12328
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12329
|
+
readonly 'chat.verbose'?: boolean;
|
|
12330
|
+
}, 'chat.editor.defaultProvider' | 'chat.experimental.autoApprovals.enabled'>;
|
|
12331
|
+
|
|
12332
|
+
// ── 1.130.0-insider+2026072017: +3, ~3, -5 ──
|
|
12333
|
+
export type VscodeSettings_1_130_0_insider_2026072017 = Patch<VscodeSettings_1_130_0_insider_2026071716, {
|
|
12334
|
+
readonly 'accessibility.signals.voiceModeStarted'?: Record<string, unknown>;
|
|
12335
|
+
readonly 'accessibility.signals.voiceModeStopped'?: Record<string, unknown>;
|
|
12336
|
+
readonly 'agents.voice.liveTranscript'?: boolean;
|
|
12337
|
+
readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small' | 'onnx-community/nemotron-3.5-asr-streaming-0.6b-onnx-int4';
|
|
12338
|
+
readonly 'chat.tools.terminal.outputCompaction'?: boolean;
|
|
12339
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
12340
|
+
}, 'editor.suggest.maxVisibleSuggestions' | 'search.location' | 'search.maintainFileSearchCache' | 'search.usePCRE2' | 'search.useRipgrep'>;
|
|
12341
|
+
|
|
12342
|
+
// ── 1.131.0-insider+2026072117: +2, ~2 ──
|
|
12343
|
+
export type VscodeSettings_1_131_0_insider_2026072117 = Patch<VscodeSettings_1_130_0_insider_2026072017, {
|
|
12344
|
+
readonly 'chat.speechToText.enabled'?: boolean;
|
|
12345
|
+
readonly 'github.copilot.chat.gpt56Verbosity.enabled'?: boolean;
|
|
12346
|
+
readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
|
|
12347
|
+
readonly 'terminal.integrated.resizeDimensionsOverlay.enabled'?: boolean;
|
|
12348
|
+
}, never>;
|
|
12349
|
+
|
|
12350
|
+
// ── 1.130.0: +17, ~26, -7 ──
|
|
12351
|
+
export type VscodeSettings_1_130_0 = Patch<VscodeSettings_1_129_0, {
|
|
12352
|
+
readonly 'accessibility.signals.voiceModeStarted'?: Record<string, unknown>;
|
|
12353
|
+
readonly 'accessibility.signals.voiceModeStopped'?: Record<string, unknown>;
|
|
12354
|
+
readonly 'accessibility.signals.voiceRecordingStopped'?: Record<string, unknown>;
|
|
12355
|
+
readonly 'agents.voice.enabled'?: boolean;
|
|
12356
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12357
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12358
|
+
readonly 'agents.voice.liveTranscript'?: boolean;
|
|
12359
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12360
|
+
readonly 'chat.agentHost.copilotSdk.logLevel'?: 'info' | 'trace';
|
|
12361
|
+
readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
|
|
12362
|
+
readonly 'chat.assistedPermissions.enabled'?: boolean;
|
|
12363
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12364
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
12365
|
+
readonly 'chat.defaultToCopilotHarness'?: boolean;
|
|
12366
|
+
readonly 'chat.editor.codex.preferAgentHost'?: boolean;
|
|
12367
|
+
readonly 'chat.editor.localAgent.enabled'?: boolean;
|
|
12368
|
+
readonly 'chat.editor.preferCopilotHarness'?: boolean;
|
|
12369
|
+
readonly 'chat.speechToText.enabled'?: boolean;
|
|
12370
|
+
readonly 'chat.speechToText.mode'?: 'auto' | 'toggle' | 'pushToTalk';
|
|
12371
|
+
readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small' | 'onnx-community/nemotron-3.5-asr-streaming-0.6b-onnx-int4';
|
|
12372
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12373
|
+
readonly 'chat.tools.terminal.outputCompaction'?: boolean;
|
|
12374
|
+
readonly 'chat.turnStatusPills'?: unknown;
|
|
12375
|
+
readonly 'chat.verbose'?: boolean;
|
|
12376
|
+
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';
|
|
12377
|
+
readonly 'javascript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12378
|
+
readonly 'js/ts.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12379
|
+
readonly 'js/ts.tsdk.path'?: string;
|
|
12380
|
+
readonly 'js/ts.tsserver.diagnosticDir'?: string;
|
|
12381
|
+
readonly 'js/ts.tsserver.heapProfile'?: Record<string, unknown>;
|
|
12382
|
+
readonly 'js/ts.tsserver.node.path'?: string;
|
|
12383
|
+
readonly 'js/ts.tsserver.npm.path'?: string;
|
|
12384
|
+
readonly 'js/ts.tsserver.pluginPaths'?: (string)[];
|
|
12385
|
+
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';
|
|
12386
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
12387
|
+
readonly 'terminal.integrated.tabs.allowAgentCliTitle'?: boolean;
|
|
12388
|
+
readonly 'typescript.npm'?: string;
|
|
12389
|
+
readonly 'typescript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12390
|
+
readonly 'typescript.tsdk'?: string;
|
|
12391
|
+
readonly 'typescript.tsserver.nodePath'?: string;
|
|
12392
|
+
readonly 'typescript.tsserver.pluginPaths'?: (string)[];
|
|
12393
|
+
readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
|
|
12394
|
+
readonly 'workbench.editorAssociations'?: Record<string, unknown>;
|
|
12395
|
+
}, 'chat.editor.defaultProvider' | 'editor.suggest.maxVisibleSuggestions' | 'search.location' | 'search.maintainFileSearchCache' | 'search.usePCRE2' | 'search.useRipgrep' | 'terminal.integrated.initialHintCopilotCli'>;
|
|
12396
|
+
|
|
12397
|
+
// ── 1.131.0-insider+2026072217: ~17, -1 ──
|
|
12398
|
+
export type VscodeSettings_1_131_0_insider_2026072217 = Patch<VscodeSettings_1_131_0_insider_2026072117, {
|
|
12399
|
+
readonly 'chat.defaultModel'?: string;
|
|
12400
|
+
readonly 'chat.progressBorder.enabled'?: boolean;
|
|
12401
|
+
readonly 'chat.speechToText.model'?: 'nemotron-speech-streaming-en-0.6b';
|
|
12402
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12403
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12404
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12405
|
+
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';
|
|
12406
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12407
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12408
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12409
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12410
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12411
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12412
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12413
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12414
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12415
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | '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';
|
|
12416
|
+
}, 'chat.persistentProgress.enabled'>;
|
|
12417
|
+
|
|
12418
|
+
// ── 1.131.0-insider+2026072305: ~2 ──
|
|
12419
|
+
export type VscodeSettings_1_131_0_insider_2026072305 = Patch<VscodeSettings_1_131_0_insider_2026072217, {
|
|
12420
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12421
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12422
|
+
}, never>;
|
|
12423
|
+
|
|
12424
|
+
// ── 1.131.0-insider+2026072417: +4, ~18, -3 ──
|
|
12425
|
+
export type VscodeSettings_1_131_0_insider_2026072417 = Patch<VscodeSettings_1_131_0_insider_2026072305, {
|
|
12426
|
+
readonly 'agents.voice.enabled'?: boolean;
|
|
12427
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12428
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12429
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12430
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
12431
|
+
readonly 'chat.agentHost.copilot.toolSearch.enabled'?: boolean;
|
|
12432
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12433
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12434
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12435
|
+
readonly 'dictation.enabled'?: boolean;
|
|
12436
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
12437
|
+
readonly 'dictation.model'?: 'nemotron-speech-streaming-en-0.6b' | 'mai';
|
|
12438
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12439
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12440
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12441
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12442
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12443
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12444
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12445
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12446
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12447
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-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';
|
|
12448
|
+
}, 'chat.speechToText.enabled' | 'chat.speechToText.mode' | 'chat.speechToText.model'>;
|
|
12449
|
+
|
|
12450
|
+
// ── 1.131.0-insider+2026072801: +3, ~21, -5 ──
|
|
12451
|
+
export type VscodeSettings_1_131_0_insider_2026072801 = Patch<VscodeSettings_1_131_0_insider_2026072417, {
|
|
12452
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12453
|
+
readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
|
|
12454
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12455
|
+
readonly 'chat.agentSkillsLocations'?: Record<string, unknown>;
|
|
12456
|
+
readonly 'chat.experimental.sessionArchiveActionWording'?: 'archive' | 'done';
|
|
12457
|
+
readonly 'chat.experimental.useSkillAdherencePrompt'?: boolean;
|
|
12458
|
+
readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
|
|
12459
|
+
readonly 'chat.includeApplyingInstructions'?: boolean;
|
|
12460
|
+
readonly 'chat.includeReferencedInstructions'?: boolean;
|
|
12461
|
+
readonly 'chat.instructionsFilesLocations'?: Record<string, unknown>;
|
|
12462
|
+
readonly 'chat.modeFilesLocations'?: Record<string, unknown>;
|
|
12463
|
+
readonly 'chat.promptFilesLocations'?: Record<string, unknown>;
|
|
12464
|
+
readonly 'chat.useAgentSkills'?: boolean;
|
|
12465
|
+
readonly 'chat.useAgentsMdFile'?: boolean;
|
|
12466
|
+
readonly 'chat.useClaudeHooks'?: boolean;
|
|
12467
|
+
readonly 'chat.useClaudeMdFile'?: boolean;
|
|
12468
|
+
readonly 'chat.useCustomizationsInParentRepositories'?: boolean;
|
|
12469
|
+
readonly 'chat.useHooks'?: boolean;
|
|
12470
|
+
readonly 'chat.useNestedAgentsMdFiles'?: boolean;
|
|
12471
|
+
readonly 'dictation.enabled'?: boolean;
|
|
12472
|
+
readonly 'github.copilot.chat.claudeOpus5Prompt.enabled'?: boolean;
|
|
12473
|
+
readonly 'github.copilot.chat.semanticSearchTool.disabled'?: boolean;
|
|
12474
|
+
readonly 'terminal.integrated.accessibleViewPreserveCursorPosition'?: false | true | 'always';
|
|
12475
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12476
|
+
}, 'github.copilot.chat.claude48OpusPrompt.enabled' | 'github.copilot.chat.claudeSonnet5Prompt.enabled' | 'github.copilot.chat.conversationCompaction.model' | 'github.copilot.chat.conversationCompaction.prismModelFilter' | 'github.copilot.chat.conversationCompaction.usePrismCompaction'>;
|
|
12477
|
+
|
|
12478
|
+
// ── 1.132.0-insider+2026072817: +1, ~4 ──
|
|
12479
|
+
export type VscodeSettings_1_132_0_insider_2026072817 = Patch<VscodeSettings_1_131_0_insider_2026072801, {
|
|
12480
|
+
readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
|
|
12481
|
+
readonly 'chat.turnStatusPills'?: unknown;
|
|
12482
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
12483
|
+
readonly 'dictation.showTranscript'?: boolean;
|
|
12484
|
+
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';
|
|
12485
|
+
}, never>;
|
|
12486
|
+
|
|
12487
|
+
// ── 1.131.0: +29, ~40, -9 ──
|
|
12488
|
+
export type VscodeSettings_1_131_0 = Patch<VscodeSettings_1_130_0, {
|
|
12489
|
+
readonly 'agents.voice.enabled'?: boolean;
|
|
12490
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12491
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12492
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12493
|
+
readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
|
|
12494
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12495
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
12496
|
+
readonly 'chat.agentHost.copilot.toolSearch.enabled'?: boolean;
|
|
12497
|
+
readonly 'chat.agentHost.defaultSessionsProvider'?: boolean;
|
|
12498
|
+
readonly 'chat.agentHost.forwardSSHAgent'?: boolean;
|
|
12499
|
+
readonly 'chat.agentHost.localFilePermissions'?: Record<string, unknown>;
|
|
12500
|
+
readonly 'chat.agentHost.runWorktreeCreatedTasks'?: boolean;
|
|
12501
|
+
readonly 'chat.agentSessions.scopedInputHistory'?: boolean;
|
|
12502
|
+
readonly 'chat.agentSkillsLocations'?: Record<string, unknown>;
|
|
12503
|
+
readonly 'chat.defaultModel'?: string;
|
|
12504
|
+
readonly 'chat.experimental.sessionArchiveActionWording'?: 'archive' | 'done';
|
|
12505
|
+
readonly 'chat.experimental.useSkillAdherencePrompt'?: boolean;
|
|
12506
|
+
readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
|
|
12507
|
+
readonly 'chat.includeApplyingInstructions'?: boolean;
|
|
12508
|
+
readonly 'chat.includeReferencedInstructions'?: boolean;
|
|
12509
|
+
readonly 'chat.instructionsFilesLocations'?: Record<string, unknown>;
|
|
12510
|
+
readonly 'chat.modeFilesLocations'?: Record<string, unknown>;
|
|
12511
|
+
readonly 'chat.progressBorder.enabled'?: boolean;
|
|
12512
|
+
readonly 'chat.promptFilesLocations'?: Record<string, unknown>;
|
|
12513
|
+
readonly 'chat.remoteAgentHosts'?: (Record<string, unknown>)[];
|
|
12514
|
+
readonly 'chat.remoteAgentHostsAutoConnect'?: boolean;
|
|
12515
|
+
readonly 'chat.remoteAgentHostsEnabled'?: boolean;
|
|
12516
|
+
readonly 'chat.remoteAgentTunnels'?: (string)[];
|
|
12517
|
+
readonly 'chat.sshRemoteAgentHostCommand'?: string;
|
|
12518
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12519
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12520
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12521
|
+
readonly 'chat.useAgentSkills'?: boolean;
|
|
12522
|
+
readonly 'chat.useAgentsMdFile'?: boolean;
|
|
12523
|
+
readonly 'chat.useClaudeHooks'?: boolean;
|
|
12524
|
+
readonly 'chat.useClaudeMdFile'?: boolean;
|
|
12525
|
+
readonly 'chat.useCustomizationsInParentRepositories'?: boolean;
|
|
12526
|
+
readonly 'chat.useHooks'?: boolean;
|
|
12527
|
+
readonly 'chat.useNestedAgentsMdFiles'?: boolean;
|
|
12528
|
+
readonly 'dictation.enabled'?: boolean;
|
|
12529
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
12530
|
+
readonly 'dictation.model'?: 'nemotron-speech-streaming-en-0.6b' | 'mai';
|
|
12531
|
+
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';
|
|
12532
|
+
readonly 'github.copilot.chat.claudeOpus5Prompt.enabled'?: boolean;
|
|
12533
|
+
readonly 'github.copilot.chat.gpt56Verbosity.enabled'?: boolean;
|
|
12534
|
+
readonly 'github.copilot.chat.semanticSearchTool.disabled'?: boolean;
|
|
12535
|
+
readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
|
|
12536
|
+
readonly 'sessions.changes.openSingleFileDiff'?: boolean;
|
|
12537
|
+
readonly 'sessions.chat.claudeAgent.enabled'?: boolean;
|
|
12538
|
+
readonly 'sessions.chat.localAgent.enabled'?: boolean;
|
|
12539
|
+
readonly 'sessions.developerJoy.enabled'?: boolean;
|
|
12540
|
+
readonly 'sessions.github.copilot.multiChatSessions'?: boolean;
|
|
12541
|
+
readonly 'sessions.layout.autoCollapseSessionsSidebar'?: boolean;
|
|
12542
|
+
readonly 'sessions.layout.singlePaneDetailPanel'?: boolean;
|
|
12543
|
+
readonly 'sessions.list.showEmptyDefaultGroups'?: boolean;
|
|
12544
|
+
readonly 'sessions.promptTimeline.rail'?: 'off' | 'ruler' | 'dock';
|
|
12545
|
+
readonly 'sessions.promptTimeline.stickyHeader'?: boolean;
|
|
12546
|
+
readonly 'terminal.integrated.accessibleViewPreserveCursorPosition'?: false | true | 'always';
|
|
12547
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12548
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12549
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12550
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12551
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12552
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12553
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12554
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12555
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12556
|
+
readonly 'terminal.integrated.resizeDimensionsOverlay.enabled'?: boolean;
|
|
12557
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-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';
|
|
12558
|
+
}, 'chat.persistentProgress.enabled' | 'chat.speechToText.enabled' | 'chat.speechToText.mode' | 'chat.speechToText.model' | 'github.copilot.chat.claude48OpusPrompt.enabled' | 'github.copilot.chat.claudeSonnet5Prompt.enabled' | 'github.copilot.chat.conversationCompaction.model' | 'github.copilot.chat.conversationCompaction.prismModelFilter' | 'github.copilot.chat.conversationCompaction.usePrismCompaction'>;
|
|
12559
|
+
|
|
12560
|
+
// ── 1.132.0-insider+2026072905: +23, ~14 ──
|
|
12561
|
+
export type VscodeSettings_1_132_0_insider_2026072905 = Patch<VscodeSettings_1_132_0_insider_2026072817, {
|
|
12562
|
+
readonly 'chat.agent.collapseCompletedResponses'?: boolean;
|
|
12563
|
+
readonly 'chat.agentHost.defaultSessionsProvider'?: boolean;
|
|
12564
|
+
readonly 'chat.agentHost.forwardSSHAgent'?: boolean;
|
|
12565
|
+
readonly 'chat.agentHost.localFilePermissions'?: Record<string, unknown>;
|
|
12566
|
+
readonly 'chat.agentHost.runWorktreeCreatedTasks'?: boolean;
|
|
12567
|
+
readonly 'chat.agentSessions.scopedInputHistory'?: boolean;
|
|
12568
|
+
readonly 'chat.automations.enabled'?: boolean;
|
|
12569
|
+
readonly 'chat.automations.runTimeoutMinutes'?: number;
|
|
12570
|
+
readonly 'chat.promptTimeline.stickyHeader'?: boolean;
|
|
12571
|
+
readonly 'chat.remoteAgentHosts'?: (Record<string, unknown>)[];
|
|
12572
|
+
readonly 'chat.remoteAgentHostsAutoConnect'?: boolean;
|
|
12573
|
+
readonly 'chat.remoteAgentHostsEnabled'?: boolean;
|
|
12574
|
+
readonly 'chat.remoteAgentTunnels'?: (string)[];
|
|
12575
|
+
readonly 'chat.sshRemoteAgentHostCommand'?: string;
|
|
12576
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12577
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12578
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12579
|
+
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';
|
|
12580
|
+
readonly 'sessions.changes.openSingleFileDiff'?: boolean;
|
|
12581
|
+
readonly 'sessions.chat.claudeAgent.enabled'?: boolean;
|
|
12582
|
+
readonly 'sessions.chat.localAgent.enabled'?: boolean;
|
|
12583
|
+
readonly 'sessions.developerJoy.enabled'?: boolean;
|
|
12584
|
+
readonly 'sessions.github.copilot.multiChatSessions'?: boolean;
|
|
12585
|
+
readonly 'sessions.layout.autoCollapseSessionsSidebar'?: boolean;
|
|
12586
|
+
readonly 'sessions.layout.singlePaneDetailPanel'?: boolean;
|
|
12587
|
+
readonly 'sessions.list.showEmptyDefaultGroups'?: boolean;
|
|
12588
|
+
readonly 'sessions.promptTimeline.rail'?: 'off' | 'ruler' | 'dock';
|
|
12589
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12590
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12591
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12592
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12593
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12594
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12595
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12596
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12597
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12598
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'cloud-download-compact' | 'cloud-upload-compact' | 'mic-compact' | 'arrow-up-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';
|
|
12599
|
+
}, never>;
|
|
12600
|
+
|
|
12601
|
+
// ── 1.132.0-insider+2026072917: ~1, -6 ──
|
|
12602
|
+
export type VscodeSettings_1_132_0_insider_2026072917 = Patch<VscodeSettings_1_132_0_insider_2026072905, {
|
|
12603
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12604
|
+
}, 'chat.agent.sandbox.allowedNetworkDomains' | 'chat.agent.sandbox.deniedNetworkDomains' | 'chat.agent.sandboxFileSystem.linux' | 'chat.agent.sandboxFileSystem.mac' | 'chat.agent.sandboxNetwork.allowedDomains' | 'chat.agent.sandboxNetwork.deniedDomains'>;
|
|
12605
|
+
|
|
12606
|
+
// ── 1.132.0-insider+2026073016: +9, ~8 ──
|
|
12607
|
+
export type VscodeSettings_1_132_0_insider_2026073016 = Patch<VscodeSettings_1_132_0_insider_2026072917, {
|
|
12608
|
+
readonly 'chat.agentHost.cloudSandbox.enabled'?: boolean;
|
|
12609
|
+
readonly 'chat.agentHost.defaultSessionsProvider'?: boolean;
|
|
12610
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
12611
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
12612
|
+
readonly 'chat.editor.claude.preferAgentHost'?: boolean;
|
|
12613
|
+
readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
|
|
12614
|
+
readonly 'chat.tools.autoExpandFailures'?: boolean;
|
|
12615
|
+
readonly 'dictation.model'?: 'nemotron-speech-streaming-en-0.6b' | 'mai';
|
|
12616
|
+
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';
|
|
12617
|
+
readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
|
|
12618
|
+
readonly 'settingsSync.ignoredSettings'?: unknown[];
|
|
12619
|
+
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
12620
|
+
readonly 'terminal.explorerKind'?: 'integrated' | 'external' | 'both';
|
|
12621
|
+
readonly 'terminal.external.linuxExec'?: string;
|
|
12622
|
+
readonly 'terminal.external.osxExec'?: string;
|
|
12623
|
+
readonly 'terminal.external.windowsExec'?: string;
|
|
12624
|
+
readonly 'terminal.sourceControlRepositoriesKind'?: 'integrated' | 'external' | 'both';
|
|
12625
|
+
}, never>;
|
|
12626
|
+
|
|
12627
|
+
// ── 1.132.0-insider+2026080400: +5, ~29, -5 ──
|
|
12628
|
+
export type VscodeSettings_1_132_0_insider_2026080400 = Patch<VscodeSettings_1_132_0_insider_2026073016, {
|
|
12629
|
+
readonly 'accessibility.verbosity.automations'?: boolean;
|
|
12630
|
+
readonly 'accessibility.verbosity.browserElementCommenting'?: boolean;
|
|
12631
|
+
readonly 'agents.voice.agentProgress'?: boolean;
|
|
12632
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12633
|
+
readonly 'breadcrumbs.enabled'?: boolean;
|
|
12634
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12635
|
+
readonly 'chat.agentHost.copilot.toolSearch.deferThreshold'?: number;
|
|
12636
|
+
readonly 'chat.agentHost.copilot.toolSearch.enabled'?: boolean;
|
|
12637
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
12638
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
12639
|
+
readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
|
|
12640
|
+
readonly 'chat.mcp.access'?: 'none' | 'registry' | 'all';
|
|
12641
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
12642
|
+
readonly 'chat.subagents.useRichRendering'?: boolean;
|
|
12643
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12644
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12645
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12646
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
12647
|
+
readonly 'dictation.model'?: 'nemotron-3.5-asr-streaming-0.6b' | 'mai';
|
|
12648
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12649
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
12650
|
+
readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
|
|
12651
|
+
readonly 'github.copilot.chat.semanticSearchTool.mode'?: 'enabled' | 'disabled' | 'preferred';
|
|
12652
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12653
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12654
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12655
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12656
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12657
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12658
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12659
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12660
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12661
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'cloud-download-compact' | 'cloud-upload-compact' | 'mic-compact' | 'arrow-up-compact' | 'xai' | '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';
|
|
12662
|
+
readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
|
|
12663
|
+
}, 'chat.planReview.inlineEditor.enabled' | 'github.copilot.chat.semanticSearchTool.disabled' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
12664
|
+
|
|
12665
|
+
// ── 1.133.0-insider+2026080503: +9, ~7 ──
|
|
12666
|
+
export type VscodeSettings_1_133_0_insider_2026080503 = Patch<VscodeSettings_1_132_0_insider_2026080400, {
|
|
12667
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12668
|
+
readonly 'agents.voice.showButton'?: boolean;
|
|
12669
|
+
readonly 'chat.agentHost.allowSignedOutWhenUsable'?: boolean;
|
|
12670
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
12671
|
+
readonly 'chat.experimental.sessionArchiveActionWording'?: 'archive' | 'done';
|
|
12672
|
+
readonly 'chat.tools.terminal.autoApprove'?: Record<string, unknown>;
|
|
12673
|
+
readonly 'dictation.model'?: 'nemotron-3.5-asr-streaming-0.6b' | 'mai';
|
|
12674
|
+
readonly 'dictation.showButton'?: boolean;
|
|
12675
|
+
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';
|
|
12676
|
+
readonly 'github.copilot.chat.autoMode.v2.enabled'?: boolean;
|
|
12677
|
+
readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
|
|
12678
|
+
readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
|
|
12679
|
+
readonly 'settingsSync.ignoredSettings'?: unknown[];
|
|
12680
|
+
readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
|
|
12681
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12682
|
+
readonly 'workbench.browser.autoReloadOnFileChange'?: boolean;
|
|
12683
|
+
}, never>;
|
|
12684
|
+
|
|
12685
|
+
// ── 1.132.0: +14, ~38, -9 ──
|
|
12686
|
+
export type VscodeSettings_1_132_0 = Patch<VscodeSettings_1_131_0, {
|
|
12687
|
+
readonly 'accessibility.verbosity.automations'?: boolean;
|
|
12688
|
+
readonly 'accessibility.verbosity.browserElementCommenting'?: boolean;
|
|
12689
|
+
readonly 'agents.voice.agentProgress'?: boolean;
|
|
12690
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12691
|
+
readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
|
|
12692
|
+
readonly 'breadcrumbs.enabled'?: boolean;
|
|
12693
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12694
|
+
readonly 'chat.agent.collapseCompletedResponses'?: boolean;
|
|
12695
|
+
readonly 'chat.agentHost.cloudSandbox.enabled'?: boolean;
|
|
12696
|
+
readonly 'chat.agentHost.copilot.toolSearch.deferThreshold'?: number;
|
|
12697
|
+
readonly 'chat.agentHost.copilot.toolSearch.enabled'?: boolean;
|
|
12698
|
+
readonly 'chat.agentHost.defaultSessionsProvider'?: boolean;
|
|
12699
|
+
readonly 'chat.agentHost.enabled'?: boolean;
|
|
12700
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
12701
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
12702
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
12703
|
+
readonly 'chat.editor.claude.preferAgentHost'?: boolean;
|
|
12704
|
+
readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
|
|
12705
|
+
readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
|
|
12706
|
+
readonly 'chat.experimental.sessionArchiveActionWording'?: 'archive' | 'done';
|
|
12707
|
+
readonly 'chat.mcp.access'?: 'none' | 'registry' | 'all';
|
|
12708
|
+
readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
|
|
12709
|
+
readonly 'chat.promptTimeline.stickyHeader'?: boolean;
|
|
12710
|
+
readonly 'chat.subagents.useRichRendering'?: boolean;
|
|
12711
|
+
readonly 'chat.tools.autoExpandFailures'?: boolean;
|
|
12712
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12713
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12714
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12715
|
+
readonly 'chat.turnStatusPills'?: unknown;
|
|
12716
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
12717
|
+
readonly 'dictation.model'?: 'nemotron-3.5-asr-streaming-0.6b' | 'mai';
|
|
12718
|
+
readonly 'dictation.showTranscript'?: boolean;
|
|
12719
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12720
|
+
readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
|
|
12721
|
+
readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
|
|
12722
|
+
readonly 'github.copilot.chat.semanticSearchTool.mode'?: 'enabled' | 'disabled' | 'preferred';
|
|
12723
|
+
readonly 'terminal.explorerKind'?: 'integrated' | 'external' | 'both';
|
|
12724
|
+
readonly 'terminal.external.linuxExec'?: string;
|
|
12725
|
+
readonly 'terminal.external.osxExec'?: string;
|
|
12726
|
+
readonly 'terminal.external.windowsExec'?: string;
|
|
12727
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12728
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12729
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12730
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12731
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12732
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12733
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12734
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12735
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12736
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'cloud-download-compact' | 'cloud-upload-compact' | 'mic-compact' | 'arrow-up-compact' | 'xai' | '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';
|
|
12737
|
+
readonly 'terminal.sourceControlRepositoriesKind'?: 'integrated' | 'external' | 'both';
|
|
12738
|
+
readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
|
|
12739
|
+
}, 'chat.agent.sandbox.allowedNetworkDomains' | 'chat.agent.sandbox.deniedNetworkDomains' | 'chat.agent.sandboxFileSystem.linux' | 'chat.agent.sandboxFileSystem.mac' | 'chat.agent.sandboxNetwork.allowedDomains' | 'chat.agent.sandboxNetwork.deniedDomains' | 'chat.planReview.inlineEditor.enabled' | 'github.copilot.chat.semanticSearchTool.disabled' | 'sessions.promptTimeline.stickyHeader'>;
|
|
12740
|
+
|
|
12741
|
+
// ── 1.133.0-insider+2026080505: ~6 ──
|
|
12742
|
+
export type VscodeSettings_1_133_0_insider_2026080505 = Patch<VscodeSettings_1_133_0_insider_2026080503, {
|
|
12743
|
+
readonly 'chat.agent.terminal.autoApprove'?: unknown;
|
|
12744
|
+
readonly 'chat.tools.terminal.autoApprove'?: Record<string, unknown>;
|
|
12745
|
+
readonly 'chat.tools.terminal.blockDetectedFileWrites'?: 'never' | 'outsideWorkspace' | 'all';
|
|
12746
|
+
readonly 'chat.tools.terminal.enableAutoApprove'?: boolean;
|
|
12747
|
+
readonly 'chat.tools.terminal.ignoreDefaultAutoApproveRules'?: boolean;
|
|
12748
|
+
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';
|
|
12749
|
+
}, never>;
|
|
12750
|
+
|
|
12751
|
+
// ── 1.133.0-insider+2026080604: +2, ~36, -5 ──
|
|
12752
|
+
export type VscodeSettings_1_133_0_insider_2026080604 = Patch<VscodeSettings_1_133_0_insider_2026080505, {
|
|
12753
|
+
readonly 'agents.voice.agentProgress'?: boolean;
|
|
12754
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12755
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12756
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
12757
|
+
readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
|
|
12758
|
+
readonly 'chat.agentHost.codexAgent.sdkRoot'?: string;
|
|
12759
|
+
readonly 'chat.agentHost.copilot.reasoningEffortOverride'?: string;
|
|
12760
|
+
readonly 'chat.agentHost.defaultSessionsProvider'?: boolean;
|
|
12761
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
12762
|
+
readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
|
|
12763
|
+
readonly 'chat.agentSessions.migrateLegacyCopilotCli'?: boolean;
|
|
12764
|
+
readonly 'chat.agents.claude.preferAgentHost'?: boolean;
|
|
12765
|
+
readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
|
|
12766
|
+
readonly 'chat.autoReply'?: boolean;
|
|
12767
|
+
readonly 'chat.defaultToCopilotHarness'?: boolean;
|
|
12768
|
+
readonly 'chat.editor.codex.preferAgentHost'?: boolean;
|
|
12769
|
+
readonly 'chat.sessionSync.enabled'?: boolean;
|
|
12770
|
+
readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
|
|
12771
|
+
readonly 'chat.tools.global.autoApprove'?: boolean;
|
|
12772
|
+
readonly 'chat.tools.terminal.autoApprove'?: Record<string, unknown>;
|
|
12773
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12774
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12775
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12776
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12777
|
+
readonly 'notebook.cellToolbarLocation'?: Record<string, unknown>;
|
|
12778
|
+
readonly 'sessions.promptTimeline.rail'?: 'off' | 'ruler' | 'dock';
|
|
12779
|
+
readonly 'telemetry.editStats.enabled'?: boolean;
|
|
12780
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12781
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12782
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12783
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12784
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12785
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12786
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12787
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12788
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12789
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'cloud-download-compact' | 'cloud-upload-compact' | 'mic-compact' | 'arrow-up-compact' | 'xai' | 'arrow-circle-up-sparkle' | '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';
|
|
12790
|
+
readonly 'workbench.editor.autoLockGroups'?: Record<string, unknown>;
|
|
12791
|
+
}, 'chat.agentHost.enabled' | 'chat.agentHost.reasoningEffortOverride' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
|
|
12792
|
+
|
|
12793
|
+
// ── 1.133.0-insider+2026080717: +2, ~2, -4 ──
|
|
12794
|
+
export type VscodeSettings_1_133_0_insider_2026080717 = Patch<VscodeSettings_1_133_0_insider_2026080604, {
|
|
12795
|
+
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';
|
|
12796
|
+
readonly 'github.copilot.chat.autoMode.tiers.enabled'?: boolean;
|
|
12797
|
+
readonly 'github.copilot.chat.autoModeTierOverride'?: string | null;
|
|
12798
|
+
readonly 'workbench.iconTheme'?: null | 'vs-minimal' | 'vscode-modern-icons' | 'vs-seti';
|
|
12799
|
+
}, 'chat.agentHost.defaultSessionsProvider' | 'chat.agents.copilotCli.hideExtensionHost' | 'chat.editor.copilotCli.hideExtensionHost' | 'sessions.chat.localAgent.enabled'>;
|
|
12800
|
+
|
|
12801
|
+
// ── 1.133.0-insider+2026081005: +133, ~4, -15 ──
|
|
12802
|
+
export type VscodeSettings_1_133_0_insider_2026081005 = Patch<VscodeSettings_1_133_0_insider_2026080717, {
|
|
12803
|
+
readonly 'agents.voice.voice'?: 'harper_neutral' | 'birch_neutral' | 'junho_neutral' | 'oak_neutral';
|
|
12804
|
+
readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
|
|
12805
|
+
readonly 'chat.omni.enabled'?: boolean;
|
|
12806
|
+
readonly 'chat.stickyScroll.enabled'?: boolean;
|
|
12807
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12808
|
+
readonly 'github.copilot.chat.advanced.chatRequestPowerSaveBlocker'?: unknown;
|
|
12809
|
+
readonly 'github.copilot.chat.advanced.debug.collectFetcherTelemetry'?: unknown;
|
|
12810
|
+
readonly 'github.copilot.chat.advanced.debug.disableRepoInfoTelemetry'?: unknown;
|
|
12811
|
+
readonly 'github.copilot.chat.advanced.debug.overrideChatMaxTokenNum'?: unknown;
|
|
12812
|
+
readonly 'github.copilot.chat.advanced.debug.reportFeedback'?: unknown;
|
|
12813
|
+
readonly 'github.copilot.chat.advanced.debug.showNetworkStatus'?: unknown;
|
|
12814
|
+
readonly 'github.copilot.chat.advanced.debug.simulateWebSocketResponse'?: unknown;
|
|
12815
|
+
readonly 'github.copilot.chat.advanced.debug.useElectronFetcher'?: unknown;
|
|
12816
|
+
readonly 'github.copilot.chat.advanced.debug.useNodeFetchFetcher'?: unknown;
|
|
12817
|
+
readonly 'github.copilot.chat.advanced.debug.useNodeFetcher'?: unknown;
|
|
12818
|
+
readonly 'github.copilot.chat.advanced.gemini.functionCallingMode'?: unknown;
|
|
12819
|
+
readonly 'github.copilot.chat.advanced.inlineChat.useCodeMapper'?: unknown;
|
|
12820
|
+
readonly 'github.copilot.chat.advanced.inlineCompletions.defaultDiagnosticsOptionsString'?: unknown;
|
|
12821
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.absorbSubsequenceTyping'?: unknown;
|
|
12822
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.adaptiveAggressivenessConfigurationString'?: unknown;
|
|
12823
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.aggressiveness.highDebounceMs'?: unknown;
|
|
12824
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.aggressiveness.lowMinResponseTimeMs'?: unknown;
|
|
12825
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.aggressiveness.mediumMinResponseTimeMs'?: unknown;
|
|
12826
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.asyncCompletions'?: unknown;
|
|
12827
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.autoExpandEditWindowLines'?: unknown;
|
|
12828
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.backoffDebounceEnabled'?: unknown;
|
|
12829
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.cacheCursorDistanceCheck'?: unknown;
|
|
12830
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.cacheDelay'?: unknown;
|
|
12831
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.completionsProvider.url'?: unknown;
|
|
12832
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.debounce'?: unknown;
|
|
12833
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.debounceOnSelectionChange'?: unknown;
|
|
12834
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.debounceUseCoreRequestTime'?: unknown;
|
|
12835
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.excludedProviders'?: unknown;
|
|
12836
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.extraDebounceEndOfLine'?: unknown;
|
|
12837
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.extraDebounceInlineSuggestion'?: unknown;
|
|
12838
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.filterOutEditsWithSubstrings'?: unknown;
|
|
12839
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.githubCompletionsProvider.enabled'?: unknown;
|
|
12840
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.hideInternalInterface'?: unknown;
|
|
12841
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.ignoreCompletionsDisablement'?: unknown;
|
|
12842
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.ignoreWhenSuggestVisible'?: unknown;
|
|
12843
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.inlineCompletions.advancedDetection'?: unknown;
|
|
12844
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.inlineCompletions.enabled'?: unknown;
|
|
12845
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.inlineEditsDiagnosticsExplorationEnabled'?: unknown;
|
|
12846
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.jointCompletionsProvider.enabled'?: unknown;
|
|
12847
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.jointCompletionsProvider.strategy'?: unknown;
|
|
12848
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.jointCompletionsProvider.triggerChangeStrategy'?: unknown;
|
|
12849
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.logCancelledRequests'?: unknown;
|
|
12850
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.logContextRecorder.enabled'?: unknown;
|
|
12851
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.maxImperfectAgreementLength'?: unknown;
|
|
12852
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.modelPicker.enabled'?: unknown;
|
|
12853
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nesMimicGhostTextBehavior'?: unknown;
|
|
12854
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.apiKey'?: unknown;
|
|
12855
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.lintOptions'?: unknown;
|
|
12856
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.lintOptionsString'?: unknown;
|
|
12857
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.maxResponseTokens'?: unknown;
|
|
12858
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.modelName'?: unknown;
|
|
12859
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.recentSnippets.includeLineNumbers'?: unknown;
|
|
12860
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.url'?: unknown;
|
|
12861
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.nextCursorPrediction.useEndpointProvider'?: unknown;
|
|
12862
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.providerId'?: unknown;
|
|
12863
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.reanchorContentOnIndentationMismatch'?: unknown;
|
|
12864
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.rebasedCacheDelay'?: unknown;
|
|
12865
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.recordExpectedEdit.enabled'?: unknown;
|
|
12866
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.recordExpectedEdit.onReject'?: unknown;
|
|
12867
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.reverseAgreement'?: unknown;
|
|
12868
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.speculativeRequestDelay'?: unknown;
|
|
12869
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.speculativeRequests'?: unknown;
|
|
12870
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.speculativeRequestsAutoExpandEditWindowLines'?: unknown;
|
|
12871
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.speculativeRequestsCursorPlacement'?: unknown;
|
|
12872
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.subsequentCacheDelay'?: unknown;
|
|
12873
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.triggerOnEditorChangeStrategy'?: unknown;
|
|
12874
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.undoInsertionFiltering'?: unknown;
|
|
12875
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.unification'?: unknown;
|
|
12876
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.useSlashModels'?: unknown;
|
|
12877
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.verifyTextDocumentChanges'?: unknown;
|
|
12878
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.aggressivenessLevel'?: unknown;
|
|
12879
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.apiKey'?: unknown;
|
|
12880
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.currentFile.prioritizeAboveCursor'?: unknown;
|
|
12881
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.currentFile.useLeftoverBudgetFromAbove'?: unknown;
|
|
12882
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.currentFileMaxTokens'?: unknown;
|
|
12883
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.defaultModelConfigurationString'?: unknown;
|
|
12884
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffMaxTokens'?: unknown;
|
|
12885
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffMergeLineGap'?: unknown;
|
|
12886
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffMergeSplitAfterMs'?: unknown;
|
|
12887
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffMergeStrategy'?: unknown;
|
|
12888
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffNEntries'?: unknown;
|
|
12889
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffOnlyForDocsInPrompt'?: unknown;
|
|
12890
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffPatch.duplicateAdditionsMode'?: unknown;
|
|
12891
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffPatch.splitOnDiff'?: unknown;
|
|
12892
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffUseRelativePaths'?: unknown;
|
|
12893
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.earlyCursorLineDivergenceCancellation'?: unknown;
|
|
12894
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.editWindowMaxTokens'?: unknown;
|
|
12895
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.emitFastCursorLineChange'?: unknown;
|
|
12896
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.globalBudget'?: unknown;
|
|
12897
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.includeCursorTagInCurrentFile'?: unknown;
|
|
12898
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.includeLineNumbersInCurrentFile'?: unknown;
|
|
12899
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.includeTagsInCurrentFile'?: unknown;
|
|
12900
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.includeViewedFiles'?: unknown;
|
|
12901
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.languageContext.enabled'?: unknown;
|
|
12902
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.languageContext.enabledLanguages'?: unknown;
|
|
12903
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.languageContext.maxTokens'?: unknown;
|
|
12904
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.languageContext.traitsPosition'?: unknown;
|
|
12905
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.maxMergeConflictLines'?: unknown;
|
|
12906
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.modelConfigurationString'?: unknown;
|
|
12907
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nLinesAbove'?: unknown;
|
|
12908
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nLinesBelow'?: unknown;
|
|
12909
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nNonSignificantLinesToConverge'?: unknown;
|
|
12910
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nRecentlyViewedDocuments'?: unknown;
|
|
12911
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nSignificantLinesToConverge'?: unknown;
|
|
12912
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.neighborFiles.enabled'?: unknown;
|
|
12913
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.neighborFiles.includeRelatedFiles'?: unknown;
|
|
12914
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.neighborFiles.maxTokens'?: unknown;
|
|
12915
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.onlyMergeConflictLines'?: unknown;
|
|
12916
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.pageSize'?: unknown;
|
|
12917
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.patchFastYieldLineWithCursor'?: unknown;
|
|
12918
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.patchFastYieldLineWithCursorMultiLine'?: unknown;
|
|
12919
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.patchModelPredictionKind'?: unknown;
|
|
12920
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.recentlyViewedDocuments.clippingStrategy'?: unknown;
|
|
12921
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.recentlyViewedDocuments.includeLineNumbers'?: unknown;
|
|
12922
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.recentlyViewedDocuments.maxTokens'?: unknown;
|
|
12923
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.recentlyViewedDocuments.useLeftoverBudgetFromAbove'?: unknown;
|
|
12924
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.url'?: unknown;
|
|
12925
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.usePrediction'?: unknown;
|
|
12926
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.xtabProvider.useVaryingLinesAbove'?: unknown;
|
|
12927
|
+
readonly 'github.copilot.chat.advanced.inlineEdits.yieldToCopilot'?: unknown;
|
|
12928
|
+
readonly 'github.copilot.chat.advanced.instantApply.modelName'?: unknown;
|
|
12929
|
+
readonly 'github.copilot.chat.advanced.modelProviderPreference'?: unknown;
|
|
12930
|
+
readonly 'github.copilot.chat.advanced.promptRenderer.trace'?: unknown;
|
|
12931
|
+
readonly 'github.copilot.chat.advanced.readFileCodeFences'?: unknown;
|
|
12932
|
+
readonly 'github.copilot.chat.advanced.responsesApi.webSocket.enabled'?: unknown;
|
|
12933
|
+
readonly 'github.copilot.chat.advanced.sessionSync.maxEventsPerFlush'?: unknown;
|
|
12934
|
+
readonly 'github.copilot.chat.advanced.sessionSync.safetyIntervalMs'?: unknown;
|
|
12935
|
+
readonly 'github.copilot.chat.advanced.telemetry.useVSCodeTelemetryLibForGH'?: unknown;
|
|
12936
|
+
readonly 'github.copilot.chat.advanced.welcomePageHint.enabled'?: unknown;
|
|
12937
|
+
readonly 'github.copilot.chat.agent.modelDetails.enabled'?: boolean;
|
|
12938
|
+
readonly 'onboarding.developerModeVariations'?: Record<string, unknown>;
|
|
12939
|
+
readonly 'sessions.chatTimeline.display'?: 'off' | 'ruler' | 'gutter';
|
|
12940
|
+
}, 'chat.agents.claude.preferAgentHost' | 'chat.editor.claude.preferAgentHost' | 'chat.promptTimeline.stickyHeader' | 'github.copilot.chat.claudeAgent.allowAutoPermissions' | 'github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions' | 'github.copilot.chat.claudeAgent.enabled' | 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout' | 'github.copilot.chat.claudeAgent.useSdkExtension' | 'sessions.chat.claudeAgent.enabled' | 'sessions.promptTimeline.rail' | 'terminal.explorerKind' | 'terminal.external.linuxExec' | 'terminal.external.osxExec' | 'terminal.external.windowsExec' | 'terminal.sourceControlRepositoriesKind'>;
|
|
12941
|
+
|
|
12942
|
+
// ── 1.134.0-insider+2026081017: ~13 ──
|
|
12943
|
+
export type VscodeSettings_1_134_0_insider_2026081017 = Patch<VscodeSettings_1_133_0_insider_2026081005, {
|
|
12944
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
12945
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
12946
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
12947
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
12948
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
12949
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
12950
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
12951
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
12952
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
12953
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
12954
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
12955
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
12956
|
+
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' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'cloud-download-compact' | 'cloud-upload-compact' | 'mic-compact' | 'arrow-up-compact' | 'xai' | 'arrow-circle-up-sparkle' | 'close-small' | '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';
|
|
12957
|
+
}, never>;
|
|
12958
|
+
|
|
10856
12959
|
// ── Version map ──
|
|
10857
12960
|
// Stable entries map directly to their settings type.
|
|
10858
12961
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -10889,25 +12992,123 @@ interface VscodeVersionMap {
|
|
|
10889
12992
|
'1.115.0': VscodeSettings_1_115_0;
|
|
10890
12993
|
'1.116.0': VscodeSettings_1_116_0;
|
|
10891
12994
|
'1.120.0': VscodeSettings_1_120_0;
|
|
10892
|
-
'1.121.0
|
|
12995
|
+
'1.121.0': VscodeSettings_1_121_0;
|
|
12996
|
+
'1.122.0': VscodeSettings_1_122_0;
|
|
12997
|
+
'1.122.1': VscodeSettings_1_122_1;
|
|
12998
|
+
'1.123.0': VscodeSettings_1_123_0;
|
|
12999
|
+
'1.123.1': VscodeSettings_1_123_1;
|
|
13000
|
+
'1.123.2': VscodeSettings_1_123_2;
|
|
13001
|
+
'1.124.0': VscodeSettings_1_124_0;
|
|
13002
|
+
'1.124.1': VscodeSettings_1_124_1;
|
|
13003
|
+
'1.124.2': VscodeSettings_1_124_2;
|
|
13004
|
+
'1.125.0': VscodeSettings_1_125_0;
|
|
13005
|
+
'1.125.1': VscodeSettings_1_125_1;
|
|
13006
|
+
'1.126.0': VscodeSettings_1_126_0;
|
|
13007
|
+
'1.127.0': VscodeSettings_1_127_0;
|
|
13008
|
+
'1.128.0': VscodeSettings_1_128_0;
|
|
13009
|
+
'1.128.1': VscodeSettings_1_128_1;
|
|
13010
|
+
'1.129.0': VscodeSettings_1_129_0;
|
|
13011
|
+
'1.129.1': VscodeSettings_1_129_1;
|
|
13012
|
+
'1.130.0': VscodeSettings_1_130_0;
|
|
13013
|
+
'1.131.0': VscodeSettings_1_131_0;
|
|
13014
|
+
'1.132.0': VscodeSettings_1_132_0;
|
|
13015
|
+
'1.121.0-insider': InsiderBuilds<{
|
|
10893
13016
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
10894
13017
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
10895
13018
|
'2026051517': VscodeSettings_1_121_0_insider_2026051517;
|
|
10896
13019
|
'2026051823': VscodeSettings_1_121_0_insider_2026051823;
|
|
10897
13020
|
'2026051910': VscodeSettings_1_121_0_insider_2026051910;
|
|
10898
|
-
}
|
|
13021
|
+
}>;
|
|
13022
|
+
'1.122.0-insider': InsiderBuilds<{
|
|
13023
|
+
'2026052017': VscodeSettings_1_122_0_insider_2026052017;
|
|
13024
|
+
'2026052105': VscodeSettings_1_122_0_insider_2026052105;
|
|
13025
|
+
'2026052217': VscodeSettings_1_122_0_insider_2026052217;
|
|
13026
|
+
'2026052517': VscodeSettings_1_122_0_insider_2026052517;
|
|
13027
|
+
'2026052623': VscodeSettings_1_122_0_insider_2026052623;
|
|
13028
|
+
}>;
|
|
13029
|
+
'1.123.0-insider': InsiderBuilds<{
|
|
13030
|
+
'2026060105': VscodeSettings_1_123_0_insider_2026060105;
|
|
13031
|
+
}>;
|
|
13032
|
+
'1.124.0-insider': InsiderBuilds<{
|
|
13033
|
+
'2026060217': VscodeSettings_1_124_0_insider_2026060217;
|
|
13034
|
+
'2026060321': VscodeSettings_1_124_0_insider_2026060321;
|
|
13035
|
+
'2026060513': VscodeSettings_1_124_0_insider_2026060513;
|
|
13036
|
+
'2026060900': VscodeSettings_1_124_0_insider_2026060900;
|
|
13037
|
+
}>;
|
|
13038
|
+
'1.125.0-insider': InsiderBuilds<{
|
|
13039
|
+
'2026061105': VscodeSettings_1_125_0_insider_2026061105;
|
|
13040
|
+
'2026061205': VscodeSettings_1_125_0_insider_2026061205;
|
|
13041
|
+
'2026061217': VscodeSettings_1_125_0_insider_2026061217;
|
|
13042
|
+
'2026061505': VscodeSettings_1_125_0_insider_2026061505;
|
|
13043
|
+
'2026061523': VscodeSettings_1_125_0_insider_2026061523;
|
|
13044
|
+
}>;
|
|
13045
|
+
'1.126.0-insider': InsiderBuilds<{
|
|
13046
|
+
'2026061617': VscodeSettings_1_126_0_insider_2026061617;
|
|
13047
|
+
'2026061720': VscodeSettings_1_126_0_insider_2026061720;
|
|
13048
|
+
'2026061820': VscodeSettings_1_126_0_insider_2026061820;
|
|
13049
|
+
'2026061917': VscodeSettings_1_126_0_insider_2026061917;
|
|
13050
|
+
'2026062301': VscodeSettings_1_126_0_insider_2026062301;
|
|
13051
|
+
}>;
|
|
13052
|
+
'1.127.0-insider': InsiderBuilds<{
|
|
13053
|
+
'2026062317': VscodeSettings_1_127_0_insider_2026062317;
|
|
13054
|
+
'2026062521': VscodeSettings_1_127_0_insider_2026062521;
|
|
13055
|
+
'2026062621': VscodeSettings_1_127_0_insider_2026062621;
|
|
13056
|
+
'2026062905': VscodeSettings_1_127_0_insider_2026062905;
|
|
13057
|
+
}>;
|
|
13058
|
+
'1.128.0-insider': InsiderBuilds<{
|
|
13059
|
+
'2026063019': VscodeSettings_1_128_0_insider_2026063019;
|
|
13060
|
+
'2026070121': VscodeSettings_1_128_0_insider_2026070121;
|
|
13061
|
+
'2026070217': VscodeSettings_1_128_0_insider_2026070217;
|
|
13062
|
+
'2026070317': VscodeSettings_1_128_0_insider_2026070317;
|
|
13063
|
+
'2026070704': VscodeSettings_1_128_0_insider_2026070704;
|
|
13064
|
+
'2026070711': VscodeSettings_1_128_0_insider_2026070711;
|
|
13065
|
+
}>;
|
|
13066
|
+
'1.129.0-insider': InsiderBuilds<{
|
|
13067
|
+
'2026070910': VscodeSettings_1_129_0_insider_2026070910;
|
|
13068
|
+
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
13069
|
+
'2026071317': VscodeSettings_1_129_0_insider_2026071317;
|
|
13070
|
+
}>;
|
|
13071
|
+
'1.130.0-insider': InsiderBuilds<{
|
|
13072
|
+
'2026071611': VscodeSettings_1_130_0_insider_2026071611;
|
|
13073
|
+
'2026071716': VscodeSettings_1_130_0_insider_2026071716;
|
|
13074
|
+
'2026072017': VscodeSettings_1_130_0_insider_2026072017;
|
|
13075
|
+
}>;
|
|
13076
|
+
'1.131.0-insider': InsiderBuilds<{
|
|
13077
|
+
'2026072117': VscodeSettings_1_131_0_insider_2026072117;
|
|
13078
|
+
'2026072217': VscodeSettings_1_131_0_insider_2026072217;
|
|
13079
|
+
'2026072305': VscodeSettings_1_131_0_insider_2026072305;
|
|
13080
|
+
'2026072417': VscodeSettings_1_131_0_insider_2026072417;
|
|
13081
|
+
'2026072801': VscodeSettings_1_131_0_insider_2026072801;
|
|
13082
|
+
}>;
|
|
13083
|
+
'1.132.0-insider': InsiderBuilds<{
|
|
13084
|
+
'2026072817': VscodeSettings_1_132_0_insider_2026072817;
|
|
13085
|
+
'2026072905': VscodeSettings_1_132_0_insider_2026072905;
|
|
13086
|
+
'2026072917': VscodeSettings_1_132_0_insider_2026072917;
|
|
13087
|
+
'2026073016': VscodeSettings_1_132_0_insider_2026073016;
|
|
13088
|
+
'2026080400': VscodeSettings_1_132_0_insider_2026080400;
|
|
13089
|
+
}>;
|
|
13090
|
+
'1.133.0-insider': InsiderBuilds<{
|
|
13091
|
+
'2026080503': VscodeSettings_1_133_0_insider_2026080503;
|
|
13092
|
+
'2026080505': VscodeSettings_1_133_0_insider_2026080505;
|
|
13093
|
+
'2026080604': VscodeSettings_1_133_0_insider_2026080604;
|
|
13094
|
+
'2026080717': VscodeSettings_1_133_0_insider_2026080717;
|
|
13095
|
+
'2026081005': VscodeSettings_1_133_0_insider_2026081005;
|
|
13096
|
+
}>;
|
|
13097
|
+
'1.134.0-insider': InsiderBuilds<{
|
|
13098
|
+
'2026081017': VscodeSettings_1_134_0_insider_2026081017;
|
|
13099
|
+
}>;
|
|
10899
13100
|
}
|
|
10900
13101
|
|
|
10901
|
-
export type LatestVscodeSettings =
|
|
13102
|
+
export type LatestVscodeSettings = VscodeSettings_1_132_0;
|
|
10902
13103
|
|
|
10903
|
-
export type LatestInsiderVscodeSettings =
|
|
13104
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_134_0_insider_2026081017;
|
|
10904
13105
|
|
|
10905
13106
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
10906
13107
|
|
|
10907
13108
|
/** Build release dates available for a given version (`never` for stable). */
|
|
10908
13109
|
export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
|
|
10909
|
-
VscodeVersionMap[V] extends
|
|
10910
|
-
? Extract<keyof
|
|
13110
|
+
VscodeVersionMap[V] extends InsiderBuilds<infer B>
|
|
13111
|
+
? Extract<keyof B, string>
|
|
10911
13112
|
: never;
|
|
10912
13113
|
|
|
10913
13114
|
/**
|
|
@@ -10919,6 +13120,6 @@ export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
|
|
|
10919
13120
|
export type VscodeSettingsFor<
|
|
10920
13121
|
V extends VscodeVersion,
|
|
10921
13122
|
R extends VscodeBuildReleaseDateFor<V> = VscodeBuildReleaseDateFor<V>,
|
|
10922
|
-
> = VscodeVersionMap[V] extends
|
|
10923
|
-
?
|
|
13123
|
+
> = VscodeVersionMap[V] extends InsiderBuilds<infer B>
|
|
13124
|
+
? B[R & keyof B]
|
|
10924
13125
|
: VscodeVersionMap[V];
|