@vscode/vscode-settings-history 0.0.2-73 → 0.0.2-75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/history.json +6632 -0
- package/dist/vscode-settings.d.ts +86 -2
- package/package.json +1 -1
|
@@ -13356,6 +13356,85 @@ export type VscodeSettings_1_135_0_insider_2026082511 = Patch<VscodeSettings_1_1
|
|
|
13356
13356
|
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';
|
|
13357
13357
|
}, never>;
|
|
13358
13358
|
|
|
13359
|
+
// ── 1.135.0: +20, ~28, -9 ──
|
|
13360
|
+
export type VscodeSettings_1_135_0 = Patch<VscodeSettings_1_134_0, {
|
|
13361
|
+
readonly 'accessibility.verbosity.chatPetAchievements'?: boolean;
|
|
13362
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
13363
|
+
readonly 'chat.agentHost.cloudSandbox.enabled'?: boolean;
|
|
13364
|
+
readonly 'chat.agentHost.copilot.mapLegacySettingsToManagedSettings'?: boolean;
|
|
13365
|
+
readonly 'chat.agentHost.copilot.multiTurnContextRouting.enabled'?: boolean;
|
|
13366
|
+
readonly 'chat.agentHost.githubMcpServer.enabled'?: boolean;
|
|
13367
|
+
readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on';
|
|
13368
|
+
readonly 'chat.agentMerge.addressReviews'?: boolean;
|
|
13369
|
+
readonly 'chat.agentMerge.enabled'?: boolean;
|
|
13370
|
+
readonly 'chat.agentMerge.fixCI'?: boolean;
|
|
13371
|
+
readonly 'chat.agentMerge.mergeMethod'?: 'auto' | 'squash' | 'merge' | 'rebase';
|
|
13372
|
+
readonly 'chat.agentMerge.mergePullRequest'?: boolean;
|
|
13373
|
+
readonly 'chat.agentMerge.replyAttribution'?: boolean;
|
|
13374
|
+
readonly 'chat.agentMerge.resolveConflicts'?: boolean;
|
|
13375
|
+
readonly 'chat.agentSessions.showExternal'?: 'none' | 'recent' | 'last24Hours' | 'last7Days' | 'last30Days';
|
|
13376
|
+
readonly 'chat.artifactTools.enabled'?: boolean;
|
|
13377
|
+
readonly 'chat.copilot.semanticSearch.enabled'?: boolean;
|
|
13378
|
+
readonly 'chat.copilot.subagentModelGuidance.enabled'?: boolean;
|
|
13379
|
+
readonly 'chat.customizations.promptMigration.enabled'?: boolean;
|
|
13380
|
+
readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
|
|
13381
|
+
readonly 'chat.experimental.stickyScroll.enabled'?: boolean;
|
|
13382
|
+
readonly 'chat.inlineChat.agentHost.enabled'?: boolean;
|
|
13383
|
+
readonly 'chat.pasteAsAttachmentThreshold'?: number;
|
|
13384
|
+
readonly 'chat.terminal.agentHost.enabled'?: boolean;
|
|
13385
|
+
readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
|
|
13386
|
+
readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
|
|
13387
|
+
readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
|
|
13388
|
+
readonly 'dictation.experimental.llmCleanupModel'?: 'auto' | 'copilot-utility-small' | 'gpt-5.6-luna';
|
|
13389
|
+
readonly 'editor.selectionHighlightMaxLength'?: number;
|
|
13390
|
+
readonly 'extensions.autoUpdateDelay'?: number;
|
|
13391
|
+
readonly 'github.copilot.chat.chatCompletionsTokenParameter'?: 'max_completion_tokens' | 'max_tokens';
|
|
13392
|
+
readonly 'github.copilot.chat.languageContext.typescript7.enabled'?: boolean;
|
|
13393
|
+
readonly 'http.noProxy'?: (string)[];
|
|
13394
|
+
readonly 'http.proxy'?: string;
|
|
13395
|
+
readonly 'http.proxyKerberosServicePrincipal'?: string;
|
|
13396
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
13397
|
+
readonly 'sessions.layout.singlePaneDetailPanel'?: boolean;
|
|
13398
|
+
readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
|
|
13399
|
+
readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
|
|
13400
|
+
readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
|
|
13401
|
+
readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
|
|
13402
|
+
readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
|
|
13403
|
+
readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
|
|
13404
|
+
readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
|
|
13405
|
+
readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
|
|
13406
|
+
readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
|
|
13407
|
+
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' | 'book-compact' | 'mic-off' | 'mic-off-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';
|
|
13408
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
13409
|
+
}, 'chat.agentHost.agentMerge.addressReviews' | 'chat.agentHost.agentMerge.enabled' | 'chat.agentHost.agentMerge.fixCI' | 'chat.agentHost.agentMerge.mergeMethod' | 'chat.agentHost.agentMerge.mergePullRequest' | 'chat.agentHost.agentMerge.replyAttribution' | 'chat.agentHost.agentMerge.resolveConflicts' | 'chat.omni.enabled' | 'github.copilot.chat.semanticSearchTool.mode'>;
|
|
13410
|
+
|
|
13411
|
+
// ── 1.136.0-insider+2026082613: +4, ~5, -6 ──
|
|
13412
|
+
export type VscodeSettings_1_136_0_insider_2026082613 = Patch<VscodeSettings_1_135_0_insider_2026082511, {
|
|
13413
|
+
readonly 'chat.agentSessions.backgroundImageLayout'?: 'repeat' | 'stretch' | 'center' | 'top' | 'top-right' | 'top-left' | 'bottom' | 'bottom-right' | 'bottom-left' | 'left' | 'right';
|
|
13414
|
+
readonly 'chat.agentSessions.preferredDarkBackgroundImage'?: string;
|
|
13415
|
+
readonly 'chat.agentSessions.preferredLightBackgroundImage'?: string;
|
|
13416
|
+
readonly 'chat.agentSessions.showExternal'?: 'none' | 'recent' | 'last24Hours' | 'last7Days' | 'last30Days';
|
|
13417
|
+
readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
|
|
13418
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
13419
|
+
readonly 'http.systemCertificatesNode'?: boolean;
|
|
13420
|
+
readonly 'markdown.experimental.richLinks.enabled'?: boolean;
|
|
13421
|
+
readonly 'window.density.layout'?: 'default' | 'compact';
|
|
13422
|
+
}, 'github.copilot.chat.cli.showExternalSessions' | 'terminal.explorerKind' | 'terminal.external.linuxExec' | 'terminal.external.osxExec' | 'terminal.external.windowsExec' | 'terminal.sourceControlRepositoriesKind'>;
|
|
13423
|
+
|
|
13424
|
+
// ── 1.136.0-insider+2026082717: +6, ~4 ──
|
|
13425
|
+
export type VscodeSettings_1_136_0_insider_2026082717 = Patch<VscodeSettings_1_136_0_insider_2026082613, {
|
|
13426
|
+
readonly 'chat.agentHost.localFilePermissions'?: Record<string, unknown>;
|
|
13427
|
+
readonly 'chat.wslRemoteAgentHostCommand'?: string;
|
|
13428
|
+
readonly 'dictation.experimental.llmCleanup'?: boolean;
|
|
13429
|
+
readonly 'dictation.model'?: 'nemotron-3.5-asr-streaming-0.6b' | 'mai';
|
|
13430
|
+
readonly 'terminal.explorerKind'?: 'integrated' | 'external' | 'both';
|
|
13431
|
+
readonly 'terminal.external.linuxExec'?: string;
|
|
13432
|
+
readonly 'terminal.external.osxExec'?: string;
|
|
13433
|
+
readonly 'terminal.external.windowsExec'?: string;
|
|
13434
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
13435
|
+
readonly 'terminal.sourceControlRepositoriesKind'?: 'integrated' | 'external' | 'both';
|
|
13436
|
+
}, never>;
|
|
13437
|
+
|
|
13359
13438
|
// ── Version map ──
|
|
13360
13439
|
// Stable entries map directly to their settings type.
|
|
13361
13440
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -13415,6 +13494,7 @@ interface VscodeVersionMap {
|
|
|
13415
13494
|
'1.132.1': VscodeSettings_1_132_1;
|
|
13416
13495
|
'1.133.0': VscodeSettings_1_133_0;
|
|
13417
13496
|
'1.134.0': VscodeSettings_1_134_0;
|
|
13497
|
+
'1.135.0': VscodeSettings_1_135_0;
|
|
13418
13498
|
'1.121.0-insider': InsiderBuilds<{
|
|
13419
13499
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
13420
13500
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
@@ -13513,11 +13593,15 @@ interface VscodeVersionMap {
|
|
|
13513
13593
|
'2026082500': VscodeSettings_1_135_0_insider_2026082500;
|
|
13514
13594
|
'2026082511': VscodeSettings_1_135_0_insider_2026082511;
|
|
13515
13595
|
}>;
|
|
13596
|
+
'1.136.0-insider': InsiderBuilds<{
|
|
13597
|
+
'2026082613': VscodeSettings_1_136_0_insider_2026082613;
|
|
13598
|
+
'2026082717': VscodeSettings_1_136_0_insider_2026082717;
|
|
13599
|
+
}>;
|
|
13516
13600
|
}
|
|
13517
13601
|
|
|
13518
|
-
export type LatestVscodeSettings =
|
|
13602
|
+
export type LatestVscodeSettings = VscodeSettings_1_135_0;
|
|
13519
13603
|
|
|
13520
|
-
export type LatestInsiderVscodeSettings =
|
|
13604
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_136_0_insider_2026082717;
|
|
13521
13605
|
|
|
13522
13606
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
13523
13607
|
|