@vscode/vscode-settings-history 0.0.2-65 → 0.0.2-66
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 +94 -0
- package/dist/vscode-settings.d.ts +9 -1
- package/package.json +1 -1
package/dist/history.json
CHANGED
|
@@ -460957,5 +460957,99 @@
|
|
|
460957
460957
|
}
|
|
460958
460958
|
}
|
|
460959
460959
|
]
|
|
460960
|
+
},
|
|
460961
|
+
{
|
|
460962
|
+
"version": "1.134.0-insider+2026081421",
|
|
460963
|
+
"base": {
|
|
460964
|
+
"version": "1.134.0-insider+2026081414"
|
|
460965
|
+
},
|
|
460966
|
+
"patch": [
|
|
460967
|
+
{
|
|
460968
|
+
"op": "remove",
|
|
460969
|
+
"path": "/github.copilot.chat.preferLongContext.enabled"
|
|
460970
|
+
},
|
|
460971
|
+
{
|
|
460972
|
+
"op": "add",
|
|
460973
|
+
"path": "/chat.agentHost.experimental.markdownPlanRichLinks",
|
|
460974
|
+
"value": {
|
|
460975
|
+
"type": "boolean",
|
|
460976
|
+
"description": "When enabled, agents receive guidance for using rich links to issues, pull requests, commits, sessions, and chats, plus running task markers, when creating or editing Markdown plan documents.",
|
|
460977
|
+
"default": false,
|
|
460978
|
+
"scope": 1,
|
|
460979
|
+
"tags": [
|
|
460980
|
+
"experimental",
|
|
460981
|
+
"advanced",
|
|
460982
|
+
"onExP"
|
|
460983
|
+
],
|
|
460984
|
+
"experiment": {
|
|
460985
|
+
"mode": "auto"
|
|
460986
|
+
},
|
|
460987
|
+
"agentHost": {
|
|
460988
|
+
"key": "markdownPlanRichLinksEnabled"
|
|
460989
|
+
},
|
|
460990
|
+
"section": {
|
|
460991
|
+
"id": "chatAgentHostStarter",
|
|
460992
|
+
"title": "Chat Agent Host Starter"
|
|
460993
|
+
},
|
|
460994
|
+
"defaultDefaultValue": false,
|
|
460995
|
+
"restricted": false
|
|
460996
|
+
}
|
|
460997
|
+
},
|
|
460998
|
+
{
|
|
460999
|
+
"op": "add",
|
|
461000
|
+
"path": "/chat.experimental.richLinks.enabled",
|
|
461001
|
+
"value": {
|
|
461002
|
+
"type": "boolean",
|
|
461003
|
+
"description": "Controls whether supported links in chat are rendered as rich links with live metadata. Enabling this may make authenticated requests to services such as GitHub.",
|
|
461004
|
+
"default": false,
|
|
461005
|
+
"tags": [
|
|
461006
|
+
"experimental",
|
|
461007
|
+
"onExP"
|
|
461008
|
+
],
|
|
461009
|
+
"experiment": {
|
|
461010
|
+
"mode": "auto"
|
|
461011
|
+
},
|
|
461012
|
+
"section": {
|
|
461013
|
+
"id": "chatSidebar",
|
|
461014
|
+
"title": "Chat"
|
|
461015
|
+
},
|
|
461016
|
+
"defaultDefaultValue": false,
|
|
461017
|
+
"scope": 4,
|
|
461018
|
+
"restricted": false
|
|
461019
|
+
}
|
|
461020
|
+
},
|
|
461021
|
+
{
|
|
461022
|
+
"op": "add",
|
|
461023
|
+
"path": "/markdown.experimental.richLinks.enabled",
|
|
461024
|
+
"value": {
|
|
461025
|
+
"type": "boolean",
|
|
461026
|
+
"default": false,
|
|
461027
|
+
"description": "Controls whether supported links in the Markdown editor are rendered as rich links with live metadata. Enabling this may make authenticated requests to services such as GitHub.",
|
|
461028
|
+
"scope": 4,
|
|
461029
|
+
"tags": [
|
|
461030
|
+
"experimental",
|
|
461031
|
+
"onExP"
|
|
461032
|
+
],
|
|
461033
|
+
"experiment": {
|
|
461034
|
+
"mode": "startup"
|
|
461035
|
+
},
|
|
461036
|
+
"section": {
|
|
461037
|
+
"id": "vscode.markdown-language-features",
|
|
461038
|
+
"title": "Language Features",
|
|
461039
|
+
"order": 20,
|
|
461040
|
+
"extensionInfo": {
|
|
461041
|
+
"id": "vscode.markdown-language-features",
|
|
461042
|
+
"displayName": "Markdown Language Features"
|
|
461043
|
+
}
|
|
461044
|
+
},
|
|
461045
|
+
"source": {
|
|
461046
|
+
"id": "vscode.markdown-language-features",
|
|
461047
|
+
"displayName": "Markdown Language Features"
|
|
461048
|
+
},
|
|
461049
|
+
"defaultDefaultValue": false,
|
|
461050
|
+
"restricted": false
|
|
461051
|
+
}
|
|
461052
|
+
}
|
|
461053
|
+
]
|
|
460960
461054
|
}
|
|
460961
461055
|
]
|
|
@@ -13197,6 +13197,13 @@ export type VscodeSettings_1_134_0_insider_2026081414 = Patch<VscodeSettings_1_1
|
|
|
13197
13197
|
readonly 'workbench.editor.tabActionReserveSpace'?: boolean;
|
|
13198
13198
|
}, 'github.copilot.chat.autoMode.v2.enabled'>;
|
|
13199
13199
|
|
|
13200
|
+
// ── 1.134.0-insider+2026081421: +3, -1 ──
|
|
13201
|
+
export type VscodeSettings_1_134_0_insider_2026081421 = Patch<VscodeSettings_1_134_0_insider_2026081414, {
|
|
13202
|
+
readonly 'chat.agentHost.experimental.markdownPlanRichLinks'?: boolean;
|
|
13203
|
+
readonly 'chat.experimental.richLinks.enabled'?: boolean;
|
|
13204
|
+
readonly 'markdown.experimental.richLinks.enabled'?: boolean;
|
|
13205
|
+
}, 'github.copilot.chat.preferLongContext.enabled'>;
|
|
13206
|
+
|
|
13200
13207
|
// ── Version map ──
|
|
13201
13208
|
// Stable entries map directly to their settings type.
|
|
13202
13209
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -13342,12 +13349,13 @@ interface VscodeVersionMap {
|
|
|
13342
13349
|
'2026081219': VscodeSettings_1_134_0_insider_2026081219;
|
|
13343
13350
|
'2026081318': VscodeSettings_1_134_0_insider_2026081318;
|
|
13344
13351
|
'2026081414': VscodeSettings_1_134_0_insider_2026081414;
|
|
13352
|
+
'2026081421': VscodeSettings_1_134_0_insider_2026081421;
|
|
13345
13353
|
}>;
|
|
13346
13354
|
}
|
|
13347
13355
|
|
|
13348
13356
|
export type LatestVscodeSettings = VscodeSettings_1_133_0;
|
|
13349
13357
|
|
|
13350
|
-
export type LatestInsiderVscodeSettings =
|
|
13358
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_134_0_insider_2026081421;
|
|
13351
13359
|
|
|
13352
13360
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
13353
13361
|
|