@codingame/monaco-vscode-api 30.0.1 → 31.0.1

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.
Files changed (669) hide show
  1. package/missing-services.js +137 -46
  2. package/package.json +9 -9
  3. package/services.d.ts +10 -1
  4. package/services.js +13 -4
  5. package/vscode/product.json.js +1 -1
  6. package/vscode/src/vs/base/browser/domStylesheets.js +2 -11
  7. package/vscode/src/vs/base/browser/overlayLayoutElement.d.ts +44 -0
  8. package/vscode/src/vs/base/browser/overlayLayoutElement.js +122 -0
  9. package/vscode/src/vs/base/browser/performance.d.ts +5 -0
  10. package/vscode/src/vs/base/browser/performance.js +4 -0
  11. package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +1 -0
  12. package/vscode/src/vs/base/browser/ui/findinput/findInput.js +17 -1
  13. package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +5 -0
  14. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +2 -0
  15. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +14 -8
  16. package/vscode/src/vs/base/common/async.d.ts +1 -0
  17. package/vscode/src/vs/base/common/defaultAccount.d.ts +1 -0
  18. package/vscode/src/vs/base/common/event.d.ts +6 -9
  19. package/vscode/src/vs/base/common/event.js +12 -8
  20. package/vscode/src/vs/base/common/htmlContent.d.ts +10 -0
  21. package/vscode/src/vs/base/common/htmlContent.js +8 -1
  22. package/vscode/src/vs/base/common/labels.d.ts +1 -1
  23. package/vscode/src/vs/base/common/labels.js +13 -3
  24. package/vscode/src/vs/base/common/observableInternal/index.d.ts +1 -1
  25. package/vscode/src/vs/base/common/observableInternal/index.js +1 -1
  26. package/vscode/src/vs/base/common/observableInternal/utils/utils.d.ts +6 -0
  27. package/vscode/src/vs/base/common/observableInternal/utils/utils.js +38 -1
  28. package/vscode/src/vs/base/common/performance.d.ts +3 -2
  29. package/vscode/src/vs/base/common/performance.js +32 -34
  30. package/vscode/src/vs/base/common/product.d.ts +31 -0
  31. package/vscode/src/vs/base/common/types.js +1 -1
  32. package/vscode/src/vs/base/common/uri.js +1 -1
  33. package/vscode/src/vs/editor/browser/view.js +2 -1
  34. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/diffEditorItemTemplate.js +30 -2
  35. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/workbenchUIElementFactory.d.ts +5 -0
  36. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +2 -1
  37. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +1 -0
  38. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineSuggestionsView.js +1 -1
  39. package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.js +1 -1
  40. package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +1 -0
  41. package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
  42. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +1 -0
  43. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +2 -1
  44. package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +1 -0
  45. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +4 -6
  46. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +204 -157
  47. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +25 -0
  48. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +15 -17
  49. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
  50. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  51. package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -0
  52. package/vscode/src/vs/platform/actions/common/actions.js +3 -0
  53. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  54. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  55. package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.d.ts +45 -0
  56. package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.js +77 -0
  57. package/vscode/src/vs/platform/agentHost/browser/nullSshRemoteAgentHostService.d.ts +18 -0
  58. package/vscode/src/vs/platform/agentHost/browser/nullSshRemoteAgentHostService.js +25 -0
  59. package/vscode/src/vs/platform/agentHost/common/agentHostUri.d.ts +58 -0
  60. package/vscode/src/vs/platform/agentHost/common/agentHostUri.js +73 -0
  61. package/vscode/src/vs/platform/agentHost/common/agentPluginManager.d.ts +11 -0
  62. package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +119 -0
  63. package/vscode/src/vs/platform/agentHost/common/agentService.service.js +6 -0
  64. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.d.ts +122 -0
  65. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.js +104 -0
  66. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.d.ts +54 -0
  67. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.js +6 -0
  68. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.d.ts +88 -0
  69. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.d.ts +89 -0
  70. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.js +6 -0
  71. package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +22 -0
  72. package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +234 -0
  73. package/vscode/src/vs/platform/agentHost/common/tunnelAgentHost.d.ts +91 -0
  74. package/vscode/src/vs/platform/agentHost/common/tunnelAgentHost.js +5 -0
  75. package/vscode/src/vs/platform/browserView/common/browserView.d.ts +28 -2
  76. package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.d.ts +34 -0
  77. package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.js +7 -0
  78. package/vscode/src/vs/platform/browserView/common/browserViewUri.d.ts +21 -0
  79. package/vscode/src/vs/platform/browserView/common/browserViewUri.js +34 -0
  80. package/vscode/src/vs/platform/browserView/common/cdp/types.d.ts +21 -10
  81. package/vscode/src/vs/platform/browserView/common/playwrightService.d.ts +7 -0
  82. package/vscode/src/vs/platform/browserView/common/playwrightService.service.d.ts +20 -5
  83. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  84. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -4
  85. package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -22
  86. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  87. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  88. package/vscode/src/vs/platform/dataChannel/browser/forwardingTelemetryService.d.ts +1 -0
  89. package/vscode/src/vs/platform/dataChannel/browser/forwardingTelemetryService.js +3 -0
  90. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +3 -1
  91. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +3 -1
  92. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  93. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  94. package/vscode/src/vs/platform/editor/common/editor.d.ts +11 -3
  95. package/vscode/src/vs/platform/environment/common/argv.d.ts +2 -1
  96. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
  97. package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -0
  98. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -0
  99. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  100. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  101. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +1 -0
  102. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +38 -16
  103. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  104. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
  105. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +1 -1
  106. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  107. package/vscode/src/vs/platform/files/common/files.js +6 -6
  108. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  109. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
  110. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  111. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  112. package/vscode/src/vs/platform/keybinding/common/keybindingResolver.js +4 -2
  113. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  114. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  115. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  116. package/vscode/src/vs/platform/log/common/log.js +6 -6
  117. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  118. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  119. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
  120. package/vscode/src/vs/platform/mcp/common/mcpPlatformTypes.d.ts +4 -0
  121. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
  122. package/vscode/src/vs/platform/native/common/native.d.ts +11 -1
  123. package/vscode/src/vs/platform/networkFilter/common/networkFilterService.service.d.ts +33 -0
  124. package/vscode/src/vs/platform/networkFilter/common/networkFilterService.service.js +6 -0
  125. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  126. package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +2 -10
  127. package/vscode/src/vs/platform/product/common/product.js +3 -3
  128. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  129. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  130. package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +4 -1
  131. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +39 -16
  132. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -1
  133. package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +4 -1
  134. package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +8 -0
  135. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  136. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  137. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  138. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
  139. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -0
  140. package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +6 -1
  141. package/vscode/src/vs/platform/request/common/request.js +20 -20
  142. package/vscode/src/vs/platform/sandbox/common/settings.d.ts +11 -0
  143. package/vscode/src/vs/platform/sandbox/common/settings.js +14 -0
  144. package/vscode/src/vs/{workbench/contrib/terminalContrib/chatAgentTools → platform/sandbox}/common/terminalSandboxService.service.d.ts +6 -6
  145. package/vscode/src/vs/{workbench/contrib/terminalContrib/chatAgentTools → platform/sandbox}/common/terminalSandboxService.service.js +1 -1
  146. package/vscode/src/vs/platform/telemetry/common/errorTelemetry.d.ts +82 -0
  147. package/vscode/src/vs/platform/telemetry/common/errorTelemetry.js +108 -0
  148. package/vscode/src/vs/platform/telemetry/common/telemetry.service.d.ts +5 -0
  149. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +1 -0
  150. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -1
  151. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -0
  152. package/vscode/src/vs/platform/terminal/common/terminal.js +5 -0
  153. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +31 -31
  154. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  155. package/vscode/src/vs/platform/theme/browser/defaultStyles.js +1 -1
  156. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  157. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
  158. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  159. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +97 -97
  160. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
  161. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  162. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +11 -11
  163. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  164. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  165. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  166. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  167. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  168. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
  169. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  170. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  171. package/vscode/src/vs/platform/update/common/update.d.ts +10 -3
  172. package/vscode/src/vs/platform/update/common/update.js +3 -1
  173. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  174. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  175. package/vscode/src/vs/platform/userDataSync/common/extensionsSync.d.ts +3 -1
  176. package/vscode/src/vs/platform/userDataSync/common/extensionsSync.js +14 -8
  177. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  178. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  179. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  180. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  181. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  182. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
  183. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +39 -11
  184. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +67 -14
  185. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  186. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +36 -13
  187. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +164 -26
  188. package/vscode/src/vs/workbench/api/common/extHostChatDebug.d.ts +4 -0
  189. package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +7 -0
  190. package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +22 -5
  191. package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +278 -42
  192. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  193. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
  194. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.d.ts +2 -2
  195. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +18 -35
  196. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
  197. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +4 -2
  198. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +1 -1
  199. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  200. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +2 -2
  201. package/vscode/src/vs/workbench/api/common/extHostMcp.js +6 -4
  202. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  203. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  204. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
  205. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  206. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  207. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +3 -2
  208. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +16 -3
  209. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +2 -8
  210. package/vscode/src/vs/workbench/api/common/extHostTypes.js +6 -11
  211. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
  212. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  213. package/vscode/src/vs/workbench/browser/actions/developerActions.js +58 -32
  214. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +153 -148
  215. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  216. package/vscode/src/vs/workbench/browser/actions/windowActions.js +34 -34
  217. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +39 -39
  218. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  219. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  220. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  221. package/vscode/src/vs/workbench/browser/media/style.css +1 -0
  222. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +33 -31
  223. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
  224. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +5 -5
  225. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  226. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  227. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  228. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
  229. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  230. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  231. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  232. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  233. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  234. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  235. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
  236. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +135 -135
  237. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.d.ts +1 -0
  238. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +47 -26
  239. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  240. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  241. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +13 -13
  242. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  243. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.d.ts +4 -0
  244. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +21 -4
  245. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  246. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +11 -12
  247. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  248. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +2 -2
  249. package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +14 -5
  250. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +12 -0
  251. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +117 -13
  252. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.d.ts +1 -3
  253. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +2 -23
  254. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +1 -1
  255. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  256. package/vscode/src/vs/workbench/browser/web.api.d.ts +69 -0
  257. package/vscode/src/vs/workbench/common/contextkeys.d.ts +2 -0
  258. package/vscode/src/vs/workbench/common/contextkeys.js +41 -39
  259. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  260. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  261. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  262. package/vscode/src/vs/workbench/common/editor.js +4 -4
  263. package/vscode/src/vs/workbench/common/theme.js +161 -161
  264. package/vscode/src/vs/workbench/common/views.d.ts +2 -2
  265. package/vscode/src/vs/workbench/common/views.js +4 -4
  266. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +2 -1
  267. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +163 -155
  268. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  269. package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.d.ts +61 -0
  270. package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.js +267 -0
  271. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +8 -5
  272. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -76
  273. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionWorkingDirectoryResolver.service.d.ts +8 -0
  274. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionWorkingDirectoryResolver.service.js +6 -0
  275. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +14 -14
  276. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +1 -1
  277. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +7 -1
  278. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +12 -8
  279. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  280. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +7 -1
  281. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  282. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
  283. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +1 -3
  284. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +88 -66
  285. package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.d.ts +65 -0
  286. package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +66 -0
  287. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.d.ts +7 -0
  288. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +38 -17
  289. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +6 -2
  290. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +92 -85
  291. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.d.ts +8 -0
  292. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +5 -1
  293. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +7 -3
  294. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +18 -4
  295. package/vscode/src/vs/workbench/contrib/chat/common/chat.js +6 -0
  296. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.d.ts +32 -1
  297. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.d.ts +25 -6
  298. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +8 -0
  299. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +17 -5
  300. package/vscode/src/vs/workbench/contrib/chat/common/chatPerf.js +29 -13
  301. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +98 -8
  302. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.js +11 -4
  303. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +6 -5
  304. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +4 -10
  305. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +11 -4
  306. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +6 -3
  307. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +16 -5
  308. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +16 -14
  309. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +78 -18
  310. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +47 -84
  311. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  312. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  313. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +1 -0
  314. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +49 -57
  315. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +54 -15
  316. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +99 -25
  317. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatPlanReviewData.d.ts +26 -0
  318. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatPlanReviewData.js +44 -0
  319. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +7 -1
  320. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +4 -2
  321. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.d.ts +12 -2
  322. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +16 -1
  323. package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.d.ts +31 -5
  324. package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.js +26 -6
  325. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +12 -0
  326. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +6 -0
  327. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.service.d.ts +2 -1
  328. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginGitService.service.d.ts +19 -0
  329. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginGitService.service.js +6 -0
  330. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +16 -23
  331. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +150 -89
  332. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.d.ts +9 -18
  333. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +22 -21
  334. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
  335. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +77 -77
  336. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +6 -0
  337. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +9 -2
  338. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +1 -2
  339. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +167 -15
  340. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +19 -7
  341. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +18 -20
  342. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.d.ts +2 -0
  343. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +1 -1
  344. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +10 -0
  345. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +61 -8
  346. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +12 -11
  347. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.d.ts +25 -0
  348. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.js +176 -0
  349. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.d.ts +18 -6
  350. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +140 -59
  351. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.d.ts +11 -0
  352. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.js +90 -0
  353. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.d.ts +4 -1
  354. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +34 -7
  355. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +12 -2
  356. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +2 -0
  357. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
  358. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +9 -0
  359. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +4 -10
  360. package/vscode/src/vs/workbench/contrib/chat/common/tools/terminalToolIds.d.ts +20 -0
  361. package/vscode/src/vs/workbench/contrib/chat/common/tools/terminalToolIds.js +17 -0
  362. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
  363. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  364. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  365. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  366. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  367. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  368. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  369. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  370. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  371. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  372. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  373. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  374. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  375. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +133 -15
  376. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  377. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  378. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  379. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  380. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
  381. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  382. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  383. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  384. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  385. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  386. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  387. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  388. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  389. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.d.ts +4 -1
  390. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +17 -14
  391. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  392. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  393. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  394. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  395. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  396. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  397. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +36 -31
  398. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +17 -14
  399. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  400. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  401. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  402. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  403. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  404. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  405. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  406. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  407. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  408. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  409. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  410. package/vscode/src/vs/workbench/contrib/debug/browser/media/repl.css +2 -0
  411. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  412. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  413. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  414. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  415. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
  416. package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +11 -5
  417. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.d.ts +1 -1
  418. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +16 -8
  419. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  420. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  421. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  422. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  423. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  424. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  425. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
  426. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  427. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  428. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +41 -41
  429. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  430. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  431. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  432. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +151 -150
  433. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.d.ts +10 -5
  434. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +460 -189
  435. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  436. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  437. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  438. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
  439. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  440. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  441. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
  442. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +5 -5
  443. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +32 -32
  444. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.d.ts +2 -1
  445. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +120 -102
  446. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  447. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  448. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  449. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  450. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  451. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  452. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  453. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
  454. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  455. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  456. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  457. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  458. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  459. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  460. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  461. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  462. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  463. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  464. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  465. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  466. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
  467. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +56 -53
  468. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  469. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  470. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  471. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  472. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
  473. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  474. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  475. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  476. package/vscode/src/vs/workbench/contrib/files/common/files.js +19 -16
  477. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  478. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  479. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  480. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  481. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +7 -4
  482. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  483. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  484. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
  485. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
  486. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +34 -34
  487. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
  488. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
  489. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
  490. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +53 -40
  491. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.d.ts +5 -1
  492. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
  493. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +9 -0
  494. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +5 -4
  495. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +1 -1
  496. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  497. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  498. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  499. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  500. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
  501. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
  502. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  503. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.js +5 -2
  504. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  505. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  506. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.d.ts +1 -0
  507. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +22 -17
  508. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  509. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  510. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  511. package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebook.css +63 -10
  512. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  513. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  514. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.d.ts +4 -4
  515. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +52 -75
  516. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  517. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  518. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  519. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  520. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  521. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  522. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  523. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  524. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  525. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  526. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  527. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  528. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  529. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  530. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  531. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  532. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  533. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  534. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
  535. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  536. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  537. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  538. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  539. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  540. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  541. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  542. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  543. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +12 -9
  544. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  545. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  546. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +17 -14
  547. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  548. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  549. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  550. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  551. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  552. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  553. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  554. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  555. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  556. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  557. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  558. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  559. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  560. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  561. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  562. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  563. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +9 -5
  564. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.d.ts +1 -1
  565. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  566. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +2 -2
  567. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  568. package/vscode/src/vs/workbench/contrib/terminal/browser/agentHostTerminalService.service.d.ts +44 -0
  569. package/vscode/src/vs/workbench/contrib/terminal/browser/agentHostTerminalService.service.js +6 -0
  570. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +27 -1
  571. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +16 -2
  572. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  573. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  574. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  575. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  576. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.d.ts +2 -0
  577. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +12 -10
  578. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +8 -0
  579. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  580. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  581. package/vscode/src/vs/workbench/contrib/terminal/common/terminalEnvironment.d.ts +38 -0
  582. package/vscode/src/vs/workbench/contrib/terminal/common/terminalEnvironment.js +321 -0
  583. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  584. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +6 -11
  585. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +6 -11
  586. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  587. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  588. package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.d.ts +78 -0
  589. package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +83 -0
  590. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +7 -12
  591. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +137 -151
  592. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  593. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  594. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.d.ts +2 -1
  595. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +16 -1
  596. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  597. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  598. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  599. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  600. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  601. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  602. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +5 -3
  603. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  604. package/vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.d.ts +4 -4
  605. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  606. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  607. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  608. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.d.ts +1 -0
  609. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +6 -9
  610. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingService.service.d.ts +13 -0
  611. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingService.service.js +6 -0
  612. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.d.ts +52 -0
  613. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +74 -0
  614. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  615. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +3 -1
  616. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +72 -48
  617. package/vscode/src/vs/workbench/services/agentHost/common/agentHostFileSystemService.service.d.ts +17 -0
  618. package/vscode/src/vs/workbench/services/agentHost/common/agentHostFileSystemService.service.js +6 -0
  619. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.d.ts +1 -1
  620. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +13 -13
  621. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +1 -1
  622. package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +1 -1
  623. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  624. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +22 -4
  625. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +61 -19
  626. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +1 -0
  627. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  628. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  629. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  630. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +16 -0
  631. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  632. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  633. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  634. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  635. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
  636. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.d.ts +2 -1
  637. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +18 -6
  638. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -0
  639. package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +6 -0
  640. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  641. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  642. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  643. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  644. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  645. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
  646. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
  647. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  648. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  649. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  650. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +10 -10
  651. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  652. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  653. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  654. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  655. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  656. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  657. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  658. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  659. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  660. package/vscode-dts/vscode.proposed.authIssuers.d.ts +12 -0
  661. package/vscode-dts/vscode.proposed.chatDebug.d.ts +11 -0
  662. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +8 -0
  663. package/vscode-dts/vscode.proposed.chatPromptFiles.d.ts +316 -8
  664. package/vscode-dts/vscode.proposed.chatSessionCustomizationProvider.d.ts +6 -4
  665. package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +92 -44
  666. package/vscode-dts/vscode.proposed.mcpServerDefinitions.d.ts +4 -1
  667. package/vscode-dts/vscode.proposed.toolInvocationApproveCombination.d.ts +13 -4
  668. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +0 -12
  669. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.js +0 -6
@@ -63,6 +63,7 @@ var AccessibilityVerbositySettingId;
63
63
  AccessibilityVerbositySettingId["Walkthrough"] = "accessibility.verbosity.walkthrough";
64
64
  AccessibilityVerbositySettingId["SourceControl"] = "accessibility.verbosity.sourceControl";
65
65
  AccessibilityVerbositySettingId["Find"] = "accessibility.verbosity.find";
66
+ AccessibilityVerbositySettingId["SessionsChat"] = "accessibility.verbosity.sessionsChat";
66
67
  })(AccessibilityVerbositySettingId || (AccessibilityVerbositySettingId = {}));
67
68
  const baseVerbosityProperty = {
68
69
  type: "boolean",
@@ -71,14 +72,14 @@ const baseVerbosityProperty = {
71
72
  };
72
73
  const accessibilityConfigurationNodeBase = ( Object.freeze({
73
74
  id: "accessibility",
74
- title: ( localize(4328, "Accessibility")),
75
+ title: ( localize(4330, "Accessibility")),
75
76
  type: "object"
76
77
  }));
77
78
  const soundFeatureBase = {
78
79
  "type": "string",
79
80
  "enum": ["auto", "on", "off"],
80
81
  "default": "auto",
81
- "enumDescriptions": [( localize(4329, "Enable sound when a screen reader is attached.")), ( localize(4330, "Enable sound.")), ( localize(4331, "Disable sound."))],
82
+ "enumDescriptions": [( localize(4331, "Enable sound when a screen reader is attached.")), ( localize(4332, "Enable sound.")), ( localize(4333, "Disable sound."))],
82
83
  tags: ["accessibility"]
83
84
  };
84
85
  const signalFeatureBase = {
@@ -95,9 +96,9 @@ const announcementFeatureBase = {
95
96
  "enum": ["auto", "off"],
96
97
  "default": "auto",
97
98
  "enumDescriptions": [( localize(
98
- 4332,
99
+ 4334,
99
100
  "Enable announcement, will only play when in screen reader optimized mode."
100
- )), ( localize(4333, "Disable announcement."))],
101
+ )), ( localize(4335, "Disable announcement."))],
101
102
  tags: ["accessibility"]
102
103
  };
103
104
  const defaultNoAnnouncement = {
@@ -114,116 +115,116 @@ const configuration = {
114
115
  properties: {
115
116
  [AccessibilityVerbositySettingId.Terminal]: {
116
117
  description: ( localize(
117
- 4334,
118
+ 4336,
118
119
  "Provide information about how to access the terminal accessibility help menu when the terminal is focused."
119
120
  )),
120
121
  ...baseVerbosityProperty
121
122
  },
122
123
  [AccessibilityVerbositySettingId.DiffEditor]: {
123
124
  description: ( localize(
124
- 4335,
125
+ 4337,
125
126
  "Provide information about how to navigate changes in the diff editor when it is focused."
126
127
  )),
127
128
  ...baseVerbosityProperty
128
129
  },
129
130
  [AccessibilityVerbositySettingId.Chat]: {
130
131
  description: ( localize(
131
- 4336,
132
+ 4338,
132
133
  "Provide information about how to access the chat help menu when the chat input is focused."
133
134
  )),
134
135
  ...baseVerbosityProperty
135
136
  },
136
137
  [AccessibilityVerbositySettingId.InlineChat]: {
137
138
  description: ( localize(
138
- 4337,
139
+ 4339,
139
140
  "Provide information about how to access the inline editor chat accessibility help menu and alert with hints that describe how to use the feature when the input is focused."
140
141
  )),
141
142
  ...baseVerbosityProperty
142
143
  },
143
144
  [AccessibilityVerbositySettingId.TerminalChatOutput]: {
144
145
  description: ( localize(
145
- 4338,
146
+ 4340,
146
147
  "Provide information about how to open the chat terminal output in the Accessible View."
147
148
  )),
148
149
  ...baseVerbosityProperty
149
150
  },
150
151
  [AccessibilityVerbositySettingId.InlineCompletions]: {
151
152
  description: ( localize(
152
- 4339,
153
+ 4341,
153
154
  "Provide information about how to access the inline completions hover and Accessible View."
154
155
  )),
155
156
  ...baseVerbosityProperty
156
157
  },
157
158
  [AccessibilityVerbositySettingId.KeybindingsEditor]: {
158
159
  description: ( localize(
159
- 4340,
160
- "Provide information about how to change a keybinding in the keybindings editor when a row is focused."
160
+ 4342,
161
+ "Provide information about how to change a keybinding in the keybindings editor when a row is focused and how to navigate to the results table."
161
162
  )),
162
163
  ...baseVerbosityProperty
163
164
  },
164
165
  [AccessibilityVerbositySettingId.Notebook]: {
165
166
  description: ( localize(
166
- 4341,
167
+ 4343,
167
168
  "Provide information about how to focus the cell container or inner editor when a notebook cell is focused."
168
169
  )),
169
170
  ...baseVerbosityProperty
170
171
  },
171
172
  [AccessibilityVerbositySettingId.Hover]: {
172
173
  description: ( localize(
173
- 4342,
174
+ 4344,
174
175
  "Provide information about how to open the hover in an Accessible View."
175
176
  )),
176
177
  ...baseVerbosityProperty
177
178
  },
178
179
  [AccessibilityVerbositySettingId.Notification]: {
179
180
  description: ( localize(
180
- 4343,
181
+ 4345,
181
182
  "Provide information about how to open the notification in an Accessible View."
182
183
  )),
183
184
  ...baseVerbosityProperty
184
185
  },
185
186
  [AccessibilityVerbositySettingId.EmptyEditorHint]: {
186
187
  description: ( localize(
187
- 4344,
188
+ 4346,
188
189
  "Provide information about relevant actions in an empty text editor."
189
190
  )),
190
191
  ...baseVerbosityProperty
191
192
  },
192
193
  [AccessibilityVerbositySettingId.ReplEditor]: {
193
194
  description: ( localize(
194
- 4345,
195
+ 4347,
195
196
  "Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused."
196
197
  )),
197
198
  ...baseVerbosityProperty
198
199
  },
199
200
  [AccessibilityVerbositySettingId.Comments]: {
200
201
  description: ( localize(
201
- 4346,
202
+ 4348,
202
203
  "Provide information about actions that can be taken in the comment widget or in a file which contains comments."
203
204
  )),
204
205
  ...baseVerbosityProperty
205
206
  },
206
207
  [AccessibilityVerbositySettingId.DiffEditorActive]: {
207
- description: ( localize(4347, "Indicate when a diff editor becomes the active editor.")),
208
+ description: ( localize(4349, "Indicate when a diff editor becomes the active editor.")),
208
209
  ...baseVerbosityProperty
209
210
  },
210
211
  [AccessibilityVerbositySettingId.Debug]: {
211
212
  description: ( localize(
212
- 4348,
213
+ 4350,
213
214
  "Provide information about how to access the debug console accessibility help dialog when the debug console or run and debug viewlet is focused. Note that a reload of the window is required for this to take effect."
214
215
  )),
215
216
  ...baseVerbosityProperty
216
217
  },
217
218
  [AccessibilityVerbositySettingId.Walkthrough]: {
218
219
  description: ( localize(
219
- 4349,
220
+ 4351,
220
221
  "Provide information about how to open the walkthrough in an Accessible View."
221
222
  )),
222
223
  ...baseVerbosityProperty
223
224
  },
224
225
  [AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
225
226
  markdownDescription: ( localize(
226
- 4350,
227
+ 4352,
227
228
  "On keypress, close the Accessible View and focus the element from which it was invoked."
228
229
  )),
229
230
  type: "boolean",
@@ -231,20 +232,27 @@ const configuration = {
231
232
  },
232
233
  [AccessibilityVerbositySettingId.SourceControl]: {
233
234
  description: ( localize(
234
- 4351,
235
+ 4353,
235
236
  "Provide information about how to access the source control accessibility help menu when the input is focused."
236
237
  )),
237
238
  ...baseVerbosityProperty
238
239
  },
239
240
  [AccessibilityVerbositySettingId.Find]: {
240
241
  description: ( localize(
241
- 4352,
242
+ 4354,
242
243
  "Provide information about how to access the find accessibility help menu when the find input is focused."
243
244
  )),
244
245
  ...baseVerbosityProperty
245
246
  },
247
+ [AccessibilityVerbositySettingId.SessionsChat]: {
248
+ description: ( localize(
249
+ 4355,
250
+ "Provide information about how to access the Agents app accessibility help menu when the chat input is focused."
251
+ )),
252
+ ...baseVerbosityProperty
253
+ },
246
254
  "accessibility.signalOptions.volume": {
247
- "description": ( localize(4353, "The volume of the sounds in percent (0-100).")),
255
+ "description": ( localize(4356, "The volume of the sounds in percent (0-100).")),
248
256
  "type": "number",
249
257
  "minimum": 0,
250
258
  "maximum": 100,
@@ -252,7 +260,7 @@ const configuration = {
252
260
  "tags": ["accessibility"]
253
261
  },
254
262
  "accessibility.signalOptions.debouncePositionChanges": {
255
- "description": ( localize(4354, "Whether or not position changes should be debounced")),
263
+ "description": ( localize(4357, "Whether or not position changes should be debounced")),
256
264
  "type": "boolean",
257
265
  "default": false,
258
266
  "tags": ["accessibility"]
@@ -263,13 +271,13 @@ const configuration = {
263
271
  "additionalProperties": false,
264
272
  "properties": {
265
273
  "announcement": {
266
- "description": ( localize(4355, "The delay in milliseconds before an announcement is made.")),
274
+ "description": ( localize(4358, "The delay in milliseconds before an announcement is made.")),
267
275
  "type": "number",
268
276
  "minimum": 0,
269
277
  "default": 3000
270
278
  },
271
279
  "sound": {
272
- "description": ( localize(4356, "The delay in milliseconds before a sound is played.")),
280
+ "description": ( localize(4359, "The delay in milliseconds before a sound is played.")),
273
281
  "type": "number",
274
282
  "minimum": 0,
275
283
  "default": 400
@@ -283,7 +291,7 @@ const configuration = {
283
291
  "properties": {
284
292
  "announcement": {
285
293
  "description": ( localize(
286
- 4357,
294
+ 4360,
287
295
  "The delay in milliseconds before an announcement is made when there's a warning at the position."
288
296
  )),
289
297
  "type": "number",
@@ -292,7 +300,7 @@ const configuration = {
292
300
  },
293
301
  "sound": {
294
302
  "description": ( localize(
295
- 4358,
303
+ 4361,
296
304
  "The delay in milliseconds before a sound is played when there's a warning at the position."
297
305
  )),
298
306
  "type": "number",
@@ -308,7 +316,7 @@ const configuration = {
308
316
  "properties": {
309
317
  "announcement": {
310
318
  "description": ( localize(
311
- 4359,
319
+ 4362,
312
320
  "The delay in milliseconds before an announcement is made when there's an error at the position."
313
321
  )),
314
322
  "type": "number",
@@ -317,7 +325,7 @@ const configuration = {
317
325
  },
318
326
  "sound": {
319
327
  "description": ( localize(
320
- 4360,
328
+ 4363,
321
329
  "The delay in milliseconds before a sound is played when there's an error at the position."
322
330
  )),
323
331
  "type": "number",
@@ -330,16 +338,16 @@ const configuration = {
330
338
  "accessibility.signals.lineHasBreakpoint": {
331
339
  ...signalFeatureBase,
332
340
  "description": ( localize(
333
- 4361,
341
+ 4364,
334
342
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
335
343
  )),
336
344
  "properties": {
337
345
  "sound": {
338
- "description": ( localize(4362, "Plays a sound when the active line has a breakpoint.")),
346
+ "description": ( localize(4365, "Plays a sound when the active line has a breakpoint.")),
339
347
  ...soundFeatureBase
340
348
  },
341
349
  "announcement": {
342
- "description": ( localize(4363, "Announces when the active line has a breakpoint.")),
350
+ "description": ( localize(4366, "Announces when the active line has a breakpoint.")),
343
351
  ...announcementFeatureBase
344
352
  }
345
353
  }
@@ -347,12 +355,12 @@ const configuration = {
347
355
  "accessibility.signals.lineHasInlineSuggestion": {
348
356
  ...defaultNoAnnouncement,
349
357
  "description": ( localize(
350
- 4364,
358
+ 4367,
351
359
  "Plays a sound / audio cue when the active line has an inline suggestion."
352
360
  )),
353
361
  "properties": {
354
362
  "sound": {
355
- "description": ( localize(4365, "Plays a sound when the active line has an inline suggestion.")),
363
+ "description": ( localize(4368, "Plays a sound when the active line has an inline suggestion.")),
356
364
  ...soundFeatureBase,
357
365
  "default": "off"
358
366
  }
@@ -361,16 +369,16 @@ const configuration = {
361
369
  "accessibility.signals.nextEditSuggestion": {
362
370
  ...signalFeatureBase,
363
371
  "description": ( localize(
364
- 4366,
372
+ 4369,
365
373
  "Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
366
374
  )),
367
375
  "properties": {
368
376
  "sound": {
369
- "description": ( localize(4367, "Plays a sound when there is a next edit suggestion.")),
377
+ "description": ( localize(4370, "Plays a sound when there is a next edit suggestion.")),
370
378
  ...soundFeatureBase
371
379
  },
372
380
  "announcement": {
373
- "description": ( localize(4368, "Announces when there is a next edit suggestion.")),
381
+ "description": ( localize(4371, "Announces when there is a next edit suggestion.")),
374
382
  ...announcementFeatureBase
375
383
  }
376
384
  }
@@ -378,16 +386,16 @@ const configuration = {
378
386
  "accessibility.signals.lineHasError": {
379
387
  ...signalFeatureBase,
380
388
  "description": ( localize(
381
- 4369,
389
+ 4372,
382
390
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
383
391
  )),
384
392
  "properties": {
385
393
  "sound": {
386
- "description": ( localize(4370, "Plays a sound when the active line has an error.")),
394
+ "description": ( localize(4373, "Plays a sound when the active line has an error.")),
387
395
  ...soundFeatureBase
388
396
  },
389
397
  "announcement": {
390
- "description": ( localize(4371, "Announces when the active line has an error.")),
398
+ "description": ( localize(4374, "Announces when the active line has an error.")),
391
399
  ...announcementFeatureBase,
392
400
  default: "off"
393
401
  }
@@ -396,13 +404,13 @@ const configuration = {
396
404
  "accessibility.signals.lineHasFoldedArea": {
397
405
  ...signalFeatureBase,
398
406
  "description": ( localize(
399
- 4372,
407
+ 4375,
400
408
  "Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
401
409
  )),
402
410
  "properties": {
403
411
  "sound": {
404
412
  "description": ( localize(
405
- 4373,
413
+ 4376,
406
414
  "Plays a sound when the active line has a folded area that can be unfolded."
407
415
  )),
408
416
  ...soundFeatureBase,
@@ -410,7 +418,7 @@ const configuration = {
410
418
  },
411
419
  "announcement": {
412
420
  "description": ( localize(
413
- 4374,
421
+ 4377,
414
422
  "Announces when the active line has a folded area that can be unfolded."
415
423
  )),
416
424
  ...announcementFeatureBase
@@ -420,16 +428,16 @@ const configuration = {
420
428
  "accessibility.signals.lineHasWarning": {
421
429
  ...signalFeatureBase,
422
430
  "description": ( localize(
423
- 4375,
431
+ 4378,
424
432
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
425
433
  )),
426
434
  "properties": {
427
435
  "sound": {
428
- "description": ( localize(4376, "Plays a sound when the active line has a warning.")),
436
+ "description": ( localize(4379, "Plays a sound when the active line has a warning.")),
429
437
  ...soundFeatureBase
430
438
  },
431
439
  "announcement": {
432
- "description": ( localize(4377, "Announces when the active line has a warning.")),
440
+ "description": ( localize(4380, "Announces when the active line has a warning.")),
433
441
  ...announcementFeatureBase,
434
442
  default: "off"
435
443
  }
@@ -438,16 +446,16 @@ const configuration = {
438
446
  "accessibility.signals.positionHasError": {
439
447
  ...signalFeatureBase,
440
448
  "description": ( localize(
441
- 4378,
449
+ 4381,
442
450
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
443
451
  )),
444
452
  "properties": {
445
453
  "sound": {
446
- "description": ( localize(4379, "Plays a sound when the active line has a warning.")),
454
+ "description": ( localize(4382, "Plays a sound when the active line has a warning.")),
447
455
  ...soundFeatureBase
448
456
  },
449
457
  "announcement": {
450
- "description": ( localize(4380, "Announces when the active line has a warning.")),
458
+ "description": ( localize(4383, "Announces when the active line has a warning.")),
451
459
  ...announcementFeatureBase,
452
460
  default: "on"
453
461
  }
@@ -456,16 +464,16 @@ const configuration = {
456
464
  "accessibility.signals.positionHasWarning": {
457
465
  ...signalFeatureBase,
458
466
  "description": ( localize(
459
- 4381,
467
+ 4384,
460
468
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
461
469
  )),
462
470
  "properties": {
463
471
  "sound": {
464
- "description": ( localize(4382, "Plays a sound when the active line has a warning.")),
472
+ "description": ( localize(4385, "Plays a sound when the active line has a warning.")),
465
473
  ...soundFeatureBase
466
474
  },
467
475
  "announcement": {
468
- "description": ( localize(4383, "Announces when the active line has a warning.")),
476
+ "description": ( localize(4386, "Announces when the active line has a warning.")),
469
477
  ...announcementFeatureBase,
470
478
  default: "on"
471
479
  }
@@ -474,16 +482,16 @@ const configuration = {
474
482
  "accessibility.signals.onDebugBreak": {
475
483
  ...signalFeatureBase,
476
484
  "description": ( localize(
477
- 4384,
485
+ 4387,
478
486
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
479
487
  )),
480
488
  "properties": {
481
489
  "sound": {
482
- "description": ( localize(4385, "Plays a sound when the debugger stopped on a breakpoint.")),
490
+ "description": ( localize(4388, "Plays a sound when the debugger stopped on a breakpoint.")),
483
491
  ...soundFeatureBase
484
492
  },
485
493
  "announcement": {
486
- "description": ( localize(4386, "Announces when the debugger stopped on a breakpoint.")),
494
+ "description": ( localize(4389, "Announces when the debugger stopped on a breakpoint.")),
487
495
  ...announcementFeatureBase
488
496
  }
489
497
  }
@@ -491,20 +499,20 @@ const configuration = {
491
499
  "accessibility.signals.noInlayHints": {
492
500
  ...signalFeatureBase,
493
501
  "description": ( localize(
494
- 4387,
502
+ 4390,
495
503
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
496
504
  )),
497
505
  "properties": {
498
506
  "sound": {
499
507
  "description": ( localize(
500
- 4388,
508
+ 4391,
501
509
  "Plays a sound when trying to read a line with inlay hints that has no inlay hints."
502
510
  )),
503
511
  ...soundFeatureBase
504
512
  },
505
513
  "announcement": {
506
514
  "description": ( localize(
507
- 4389,
515
+ 4392,
508
516
  "Announces when trying to read a line with inlay hints that has no inlay hints."
509
517
  )),
510
518
  ...announcementFeatureBase
@@ -514,16 +522,16 @@ const configuration = {
514
522
  "accessibility.signals.taskCompleted": {
515
523
  ...signalFeatureBase,
516
524
  "description": ( localize(
517
- 4390,
525
+ 4393,
518
526
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
519
527
  )),
520
528
  "properties": {
521
529
  "sound": {
522
- "description": ( localize(4391, "Plays a sound when a task is completed.")),
530
+ "description": ( localize(4394, "Plays a sound when a task is completed.")),
523
531
  ...soundFeatureBase
524
532
  },
525
533
  "announcement": {
526
- "description": ( localize(4392, "Announces when a task is completed.")),
534
+ "description": ( localize(4395, "Announces when a task is completed.")),
527
535
  ...announcementFeatureBase
528
536
  }
529
537
  }
@@ -531,16 +539,16 @@ const configuration = {
531
539
  "accessibility.signals.taskFailed": {
532
540
  ...signalFeatureBase,
533
541
  "description": ( localize(
534
- 4393,
542
+ 4396,
535
543
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
536
544
  )),
537
545
  "properties": {
538
546
  "sound": {
539
- "description": ( localize(4394, "Plays a sound when a task fails (non-zero exit code).")),
547
+ "description": ( localize(4397, "Plays a sound when a task fails (non-zero exit code).")),
540
548
  ...soundFeatureBase
541
549
  },
542
550
  "announcement": {
543
- "description": ( localize(4395, "Announces when a task fails (non-zero exit code).")),
551
+ "description": ( localize(4398, "Announces when a task fails (non-zero exit code).")),
544
552
  ...announcementFeatureBase
545
553
  }
546
554
  }
@@ -548,20 +556,20 @@ const configuration = {
548
556
  "accessibility.signals.terminalCommandFailed": {
549
557
  ...signalFeatureBase,
550
558
  "description": ( localize(
551
- 4396,
559
+ 4399,
552
560
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
553
561
  )),
554
562
  "properties": {
555
563
  "sound": {
556
564
  "description": ( localize(
557
- 4397,
565
+ 4400,
558
566
  "Plays a sound when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
559
567
  )),
560
568
  ...soundFeatureBase
561
569
  },
562
570
  "announcement": {
563
571
  "description": ( localize(
564
- 4398,
572
+ 4401,
565
573
  "Announces when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
566
574
  )),
567
575
  ...announcementFeatureBase
@@ -571,20 +579,20 @@ const configuration = {
571
579
  "accessibility.signals.terminalCommandSucceeded": {
572
580
  ...signalFeatureBase,
573
581
  "description": ( localize(
574
- 4399,
582
+ 4402,
575
583
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
576
584
  )),
577
585
  "properties": {
578
586
  "sound": {
579
587
  "description": ( localize(
580
- 4400,
588
+ 4403,
581
589
  "Plays a sound when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
582
590
  )),
583
591
  ...soundFeatureBase
584
592
  },
585
593
  "announcement": {
586
594
  "description": ( localize(
587
- 4401,
595
+ 4404,
588
596
  "Announces when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
589
597
  )),
590
598
  ...announcementFeatureBase
@@ -594,16 +602,16 @@ const configuration = {
594
602
  "accessibility.signals.terminalQuickFix": {
595
603
  ...signalFeatureBase,
596
604
  "description": ( localize(
597
- 4402,
605
+ 4405,
598
606
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
599
607
  )),
600
608
  "properties": {
601
609
  "sound": {
602
- "description": ( localize(4403, "Plays a sound when terminal Quick Fixes are available.")),
610
+ "description": ( localize(4406, "Plays a sound when terminal Quick Fixes are available.")),
603
611
  ...soundFeatureBase
604
612
  },
605
613
  "announcement": {
606
- "description": ( localize(4404, "Announces when terminal Quick Fixes are available.")),
614
+ "description": ( localize(4407, "Announces when terminal Quick Fixes are available.")),
607
615
  ...announcementFeatureBase
608
616
  }
609
617
  }
@@ -611,16 +619,16 @@ const configuration = {
611
619
  "accessibility.signals.terminalBell": {
612
620
  ...signalFeatureBase,
613
621
  "description": ( localize(
614
- 4405,
622
+ 4408,
615
623
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
616
624
  )),
617
625
  "properties": {
618
626
  "sound": {
619
- "description": ( localize(4406, "Plays a sound when the terminal bell is ringing.")),
627
+ "description": ( localize(4409, "Plays a sound when the terminal bell is ringing.")),
620
628
  ...soundFeatureBase
621
629
  },
622
630
  "announcement": {
623
- "description": ( localize(4407, "Announces when the terminal bell is ringing.")),
631
+ "description": ( localize(4410, "Announces when the terminal bell is ringing.")),
624
632
  ...announcementFeatureBase
625
633
  }
626
634
  }
@@ -628,13 +636,13 @@ const configuration = {
628
636
  "accessibility.signals.diffLineInserted": {
629
637
  ...defaultNoAnnouncement,
630
638
  "description": ( localize(
631
- 4408,
639
+ 4411,
632
640
  "Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
633
641
  )),
634
642
  "properties": {
635
643
  "sound": {
636
644
  "description": ( localize(
637
- 4409,
645
+ 4412,
638
646
  "Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
639
647
  )),
640
648
  ...soundFeatureBase
@@ -644,13 +652,13 @@ const configuration = {
644
652
  "accessibility.signals.diffLineModified": {
645
653
  ...defaultNoAnnouncement,
646
654
  "description": ( localize(
647
- 4410,
655
+ 4413,
648
656
  "Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
649
657
  )),
650
658
  "properties": {
651
659
  "sound": {
652
660
  "description": ( localize(
653
- 4411,
661
+ 4414,
654
662
  "Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
655
663
  )),
656
664
  ...soundFeatureBase
@@ -660,13 +668,13 @@ const configuration = {
660
668
  "accessibility.signals.diffLineDeleted": {
661
669
  ...defaultNoAnnouncement,
662
670
  "description": ( localize(
663
- 4412,
671
+ 4415,
664
672
  "Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
665
673
  )),
666
674
  "properties": {
667
675
  "sound": {
668
676
  "description": ( localize(
669
- 4413,
677
+ 4416,
670
678
  "Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
671
679
  )),
672
680
  ...soundFeatureBase
@@ -676,12 +684,12 @@ const configuration = {
676
684
  "accessibility.signals.chatEditModifiedFile": {
677
685
  ...defaultNoAnnouncement,
678
686
  "description": ( localize(
679
- 4414,
687
+ 4417,
680
688
  "Plays a sound / audio cue when revealing a file with changes from chat edits"
681
689
  )),
682
690
  "properties": {
683
691
  "sound": {
684
- "description": ( localize(4415, "Plays a sound when revealing a file with changes from chat edits")),
692
+ "description": ( localize(4418, "Plays a sound when revealing a file with changes from chat edits")),
685
693
  ...soundFeatureBase
686
694
  }
687
695
  }
@@ -689,20 +697,20 @@ const configuration = {
689
697
  "accessibility.signals.notebookCellCompleted": {
690
698
  ...signalFeatureBase,
691
699
  "description": ( localize(
692
- 4416,
700
+ 4419,
693
701
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
694
702
  )),
695
703
  "properties": {
696
704
  "sound": {
697
705
  "description": ( localize(
698
- 4417,
706
+ 4420,
699
707
  "Plays a sound when a notebook cell execution is successfully completed."
700
708
  )),
701
709
  ...soundFeatureBase
702
710
  },
703
711
  "announcement": {
704
712
  "description": ( localize(
705
- 4418,
713
+ 4421,
706
714
  "Announces when a notebook cell execution is successfully completed."
707
715
  )),
708
716
  ...announcementFeatureBase
@@ -712,16 +720,16 @@ const configuration = {
712
720
  "accessibility.signals.notebookCellFailed": {
713
721
  ...signalFeatureBase,
714
722
  "description": ( localize(
715
- 4419,
723
+ 4422,
716
724
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
717
725
  )),
718
726
  "properties": {
719
727
  "sound": {
720
- "description": ( localize(4420, "Plays a sound when a notebook cell execution fails.")),
728
+ "description": ( localize(4423, "Plays a sound when a notebook cell execution fails.")),
721
729
  ...soundFeatureBase
722
730
  },
723
731
  "announcement": {
724
- "description": ( localize(4421, "Announces when a notebook cell execution fails.")),
732
+ "description": ( localize(4424, "Announces when a notebook cell execution fails.")),
725
733
  ...announcementFeatureBase
726
734
  }
727
735
  }
@@ -729,7 +737,7 @@ const configuration = {
729
737
  "accessibility.signals.progress": {
730
738
  ...signalFeatureBase,
731
739
  "description": ( localize(
732
- 4422,
740
+ 4425,
733
741
  "Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
734
742
  )),
735
743
  "default": {
@@ -738,11 +746,11 @@ const configuration = {
738
746
  },
739
747
  "properties": {
740
748
  "sound": {
741
- "description": ( localize(4423, "Plays a sound on loop while progress is occurring.")),
749
+ "description": ( localize(4426, "Plays a sound on loop while progress is occurring.")),
742
750
  ...soundFeatureBase
743
751
  },
744
752
  "announcement": {
745
- "description": ( localize(4424, "Alerts on loop while progress is occurring.")),
753
+ "description": ( localize(4427, "Alerts on loop while progress is occurring.")),
746
754
  ...announcementFeatureBase
747
755
  }
748
756
  }
@@ -750,56 +758,56 @@ const configuration = {
750
758
  "accessibility.signals.chatRequestSent": {
751
759
  ...signalFeatureBase,
752
760
  "description": ( localize(
753
- 4425,
761
+ 4428,
754
762
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
755
763
  )),
756
764
  "properties": {
757
765
  "sound": {
758
- "description": ( localize(4426, "Plays a sound when a chat request is made.")),
766
+ "description": ( localize(4429, "Plays a sound when a chat request is made.")),
759
767
  ...soundFeatureBase
760
768
  },
761
769
  "announcement": {
762
- "description": ( localize(4427, "Announces when a chat request is made.")),
770
+ "description": ( localize(4430, "Announces when a chat request is made.")),
763
771
  ...announcementFeatureBase
764
772
  }
765
773
  }
766
774
  },
767
775
  "accessibility.signals.chatResponseReceived": {
768
776
  ...defaultNoAnnouncement,
769
- "description": ( localize(4428, "Plays a sound / audio cue when the response has been received.")),
777
+ "description": ( localize(4431, "Plays a sound / audio cue when the response has been received.")),
770
778
  "properties": {
771
779
  "sound": {
772
- "description": ( localize(4429, "Plays a sound on when the response has been received.")),
780
+ "description": ( localize(4432, "Plays a sound on when the response has been received.")),
773
781
  ...soundFeatureBase
774
782
  }
775
783
  }
776
784
  },
777
785
  "accessibility.signals.codeActionTriggered": {
778
786
  ...defaultNoAnnouncement,
779
- "description": ( localize(4430, "Plays a sound / audio cue - when a code action has been triggered.")),
787
+ "description": ( localize(4433, "Plays a sound / audio cue - when a code action has been triggered.")),
780
788
  "properties": {
781
789
  "sound": {
782
- "description": ( localize(4431, "Plays a sound when a code action has been triggered.")),
790
+ "description": ( localize(4434, "Plays a sound when a code action has been triggered.")),
783
791
  ...soundFeatureBase
784
792
  }
785
793
  }
786
794
  },
787
795
  "accessibility.signals.codeActionApplied": {
788
796
  ...defaultNoAnnouncement,
789
- "description": ( localize(4432, "Plays a sound / audio cue when the code action has been applied.")),
797
+ "description": ( localize(4435, "Plays a sound / audio cue when the code action has been applied.")),
790
798
  "properties": {
791
799
  "sound": {
792
- "description": ( localize(4433, "Plays a sound when the code action has been applied.")),
800
+ "description": ( localize(4436, "Plays a sound when the code action has been applied.")),
793
801
  ...soundFeatureBase
794
802
  }
795
803
  }
796
804
  },
797
805
  "accessibility.signals.voiceRecordingStarted": {
798
806
  ...defaultNoAnnouncement,
799
- "description": ( localize(4434, "Plays a sound / audio cue when the voice recording has started.")),
807
+ "description": ( localize(4437, "Plays a sound / audio cue when the voice recording has started.")),
800
808
  "properties": {
801
809
  "sound": {
802
- "description": ( localize(4435, "Plays a sound when the voice recording has started.")),
810
+ "description": ( localize(4438, "Plays a sound when the voice recording has started.")),
803
811
  ...soundFeatureBase
804
812
  }
805
813
  },
@@ -809,10 +817,10 @@ const configuration = {
809
817
  },
810
818
  "accessibility.signals.voiceRecordingStopped": {
811
819
  ...defaultNoAnnouncement,
812
- "description": ( localize(4436, "Plays a sound / audio cue when the voice recording has stopped.")),
820
+ "description": ( localize(4439, "Plays a sound / audio cue when the voice recording has stopped.")),
813
821
  "properties": {
814
822
  "sound": {
815
- "description": ( localize(4437, "Plays a sound when the voice recording has stopped.")),
823
+ "description": ( localize(4440, "Plays a sound when the voice recording has stopped.")),
816
824
  ...soundFeatureBase,
817
825
  default: "off"
818
826
  }
@@ -821,16 +829,16 @@ const configuration = {
821
829
  "accessibility.signals.clear": {
822
830
  ...signalFeatureBase,
823
831
  "description": ( localize(
824
- 4438,
832
+ 4441,
825
833
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
826
834
  )),
827
835
  "properties": {
828
836
  "sound": {
829
- "description": ( localize(4439, "Plays a sound when a feature is cleared.")),
837
+ "description": ( localize(4442, "Plays a sound when a feature is cleared.")),
830
838
  ...soundFeatureBase
831
839
  },
832
840
  "announcement": {
833
- "description": ( localize(4440, "Announces when a feature is cleared.")),
841
+ "description": ( localize(4443, "Announces when a feature is cleared.")),
834
842
  ...announcementFeatureBase
835
843
  }
836
844
  }
@@ -838,16 +846,16 @@ const configuration = {
838
846
  "accessibility.signals.editsUndone": {
839
847
  ...signalFeatureBase,
840
848
  "description": ( localize(
841
- 4441,
849
+ 4444,
842
850
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
843
851
  )),
844
852
  "properties": {
845
853
  "sound": {
846
- "description": ( localize(4442, "Plays a sound when edits have been undone.")),
854
+ "description": ( localize(4445, "Plays a sound when edits have been undone.")),
847
855
  ...soundFeatureBase
848
856
  },
849
857
  "announcement": {
850
- "description": ( localize(4443, "Announces when edits have been undone.")),
858
+ "description": ( localize(4446, "Announces when edits have been undone.")),
851
859
  ...announcementFeatureBase
852
860
  }
853
861
  }
@@ -855,16 +863,16 @@ const configuration = {
855
863
  "accessibility.signals.editsKept": {
856
864
  ...signalFeatureBase,
857
865
  "description": ( localize(
858
- 4444,
866
+ 4447,
859
867
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
860
868
  )),
861
869
  "properties": {
862
870
  "sound": {
863
- "description": ( localize(4445, "Plays a sound when edits are kept.")),
871
+ "description": ( localize(4448, "Plays a sound when edits are kept.")),
864
872
  ...soundFeatureBase
865
873
  },
866
874
  "announcement": {
867
- "description": ( localize(4446, "Announces when edits are kept.")),
875
+ "description": ( localize(4449, "Announces when edits are kept.")),
868
876
  ...announcementFeatureBase
869
877
  }
870
878
  }
@@ -874,23 +882,23 @@ const configuration = {
874
882
  "tags": ["accessibility"],
875
883
  additionalProperties: false,
876
884
  "markdownDescription": ( localize(
877
- 4447,
885
+ 4450,
878
886
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
879
887
  )),
880
888
  "properties": {
881
889
  "sound": {
882
- "description": ( localize(4448, "Plays a sound when a file is saved.")),
890
+ "description": ( localize(4451, "Plays a sound when a file is saved.")),
883
891
  "type": "string",
884
892
  "enum": ["userGesture", "always", "never"],
885
893
  "default": "never",
886
- "enumDescriptions": [( localize(4449, "Plays the sound when a user explicitly saves a file.")), ( localize(4450, "Plays the sound whenever a file is saved, including auto save.")), ( localize(4451, "Never plays the sound."))]
894
+ "enumDescriptions": [( localize(4452, "Plays the sound when a user explicitly saves a file.")), ( localize(4453, "Plays the sound whenever a file is saved, including auto save.")), ( localize(4454, "Never plays the sound."))]
887
895
  },
888
896
  "announcement": {
889
- "description": ( localize(4452, "Announces when a file is saved.")),
897
+ "description": ( localize(4455, "Announces when a file is saved.")),
890
898
  "type": "string",
891
899
  "enum": ["userGesture", "always", "never"],
892
900
  "default": "never",
893
- "enumDescriptions": [( localize(4453, "Announces when a user explicitly saves a file.")), ( localize(4454, "Announces whenever a file is saved, including auto save.")), ( localize(4455, "Never plays the announcement."))]
901
+ "enumDescriptions": [( localize(4456, "Announces when a user explicitly saves a file.")), ( localize(4457, "Announces whenever a file is saved, including auto save.")), ( localize(4458, "Never plays the announcement."))]
894
902
  }
895
903
  },
896
904
  default: {
@@ -903,29 +911,29 @@ const configuration = {
903
911
  "tags": ["accessibility"],
904
912
  additionalProperties: false,
905
913
  "markdownDescription": ( localize(
906
- 4456,
914
+ 4459,
907
915
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
908
916
  )),
909
917
  "properties": {
910
918
  "sound": {
911
- "description": ( localize(4457, "Plays a sound when a file or notebook is formatted.")),
919
+ "description": ( localize(4460, "Plays a sound when a file or notebook is formatted.")),
912
920
  "type": "string",
913
921
  "enum": ["userGesture", "always", "never"],
914
922
  "default": "never",
915
- "enumDescriptions": [( localize(4458, "Plays the sound when a user explicitly formats a file.")), ( localize(
916
- 4459,
923
+ "enumDescriptions": [( localize(4461, "Plays the sound when a user explicitly formats a file.")), ( localize(
924
+ 4462,
917
925
  "Plays the sound whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
918
- )), ( localize(4460, "Never plays the sound."))]
926
+ )), ( localize(4463, "Never plays the sound."))]
919
927
  },
920
928
  "announcement": {
921
- "description": ( localize(4461, "Announces when a file or notebook is formatted.")),
929
+ "description": ( localize(4464, "Announces when a file or notebook is formatted.")),
922
930
  "type": "string",
923
931
  "enum": ["userGesture", "always", "never"],
924
932
  "default": "never",
925
- "enumDescriptions": [( localize(4462, "Announces when a user explicitly formats a file.")), ( localize(
926
- 4463,
933
+ "enumDescriptions": [( localize(4465, "Announces when a user explicitly formats a file.")), ( localize(
934
+ 4466,
927
935
  "Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
928
- )), ( localize(4464, "Never announces."))]
936
+ )), ( localize(4467, "Never announces."))]
929
937
  }
930
938
  },
931
939
  default: {
@@ -936,19 +944,19 @@ const configuration = {
936
944
  "accessibility.signals.chatUserActionRequired": {
937
945
  ...signalFeatureBase,
938
946
  "markdownDescription": ( localize(
939
- 4465,
947
+ 4468,
940
948
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
941
949
  )),
942
950
  "properties": {
943
951
  "sound": {
944
- "description": ( localize(4466, "Plays a sound when user action is required in the chat.")),
952
+ "description": ( localize(4469, "Plays a sound when user action is required in the chat.")),
945
953
  "type": "string",
946
954
  "enum": ["auto", "on", "off"],
947
- "enumDescriptions": [( localize(4467, "Enable sound when a screen reader is attached.")), ( localize(4330, "Enable sound.")), ( localize(4331, "Disable sound."))]
955
+ "enumDescriptions": [( localize(4470, "Enable sound when a screen reader is attached.")), ( localize(4332, "Enable sound.")), ( localize(4333, "Disable sound."))]
948
956
  },
949
957
  "announcement": {
950
958
  "description": ( localize(
951
- 4468,
959
+ 4471,
952
960
  "Announces when a user action is required in the chat - including information about the action and how to take it."
953
961
  )),
954
962
  ...announcementFeatureBase
@@ -962,13 +970,13 @@ const configuration = {
962
970
  },
963
971
  "accessibility.underlineLinks": {
964
972
  "type": "boolean",
965
- "description": ( localize(4469, "Controls whether links should be underlined in the workbench.")),
973
+ "description": ( localize(4472, "Controls whether links should be underlined in the workbench.")),
966
974
  "default": false
967
975
  },
968
976
  "accessibility.debugWatchVariableAnnouncements": {
969
977
  "type": "boolean",
970
978
  "description": ( localize(
971
- 4470,
979
+ 4473,
972
980
  "Controls whether variable changes should be announced in the debug watch view."
973
981
  )),
974
982
  "default": true
@@ -976,7 +984,7 @@ const configuration = {
976
984
  "accessibility.replEditor.readLastExecutionOutput": {
977
985
  "type": "boolean",
978
986
  "description": ( localize(
979
- 4471,
987
+ 4474,
980
988
  "Controls whether the output from an execution in the native REPL will be announced."
981
989
  )),
982
990
  "default": true
@@ -986,7 +994,7 @@ const configuration = {
986
994
  enum: ["none", "input", "lastExecution"],
987
995
  default: "input",
988
996
  description: ( localize(
989
- 4472,
997
+ 4475,
990
998
  "Control whether focus should automatically be sent to the REPL when code is executed."
991
999
  ))
992
1000
  },
@@ -994,7 +1002,7 @@ const configuration = {
994
1002
  "type": "boolean",
995
1003
  "default": true,
996
1004
  "markdownDescription": ( localize(
997
- 4473,
1005
+ 4476,
998
1006
  "Controls whether the {0} should be optimized for screen readers when in screen reader mode. When enabled, the window title will have {1} appended to the end.",
999
1007
  "`#window.title#`",
1000
1008
  "`activeEditorState`"
@@ -1004,7 +1012,7 @@ const configuration = {
1004
1012
  "type": "boolean",
1005
1013
  "default": false,
1006
1014
  "markdownDescription": ( localize(
1007
- 4474,
1015
+ 4477,
1008
1016
  "Controls whether files should be opened when the chat agent has applied edits to them."
1009
1017
  ))
1010
1018
  },
@@ -1012,7 +1020,7 @@ const configuration = {
1012
1020
  "type": "boolean",
1013
1021
  "default": true,
1014
1022
  "markdownDescription": ( localize(
1015
- 4475,
1023
+ 4478,
1016
1024
  "Controls whether verbose progress announcements should be made when a chat request is in progress, including information like searched text for <search term> with X results, created file <file_name>, or read file <file path>."
1017
1025
  ))
1018
1026
  }
@@ -1026,7 +1034,7 @@ function registerAccessibilityConfiguration() {
1026
1034
  properties: {
1027
1035
  [AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
1028
1036
  description: ( localize(
1029
- 4476,
1037
+ 4479,
1030
1038
  "Whether to dim unfocused editors and terminals, which makes it more clear where typed input will go to. This works with the majority of editors with the notable exceptions of those that utilize iframes like notebooks and extension webview editors."
1031
1039
  )),
1032
1040
  type: "boolean",
@@ -1036,7 +1044,7 @@ function registerAccessibilityConfiguration() {
1036
1044
  },
1037
1045
  [AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
1038
1046
  markdownDescription: ( localize(
1039
- 4477,
1047
+ 4480,
1040
1048
  "The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.",
1041
1049
  `\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
1042
1050
  )),
@@ -1048,7 +1056,7 @@ function registerAccessibilityConfiguration() {
1048
1056
  scope: ConfigurationScope.APPLICATION
1049
1057
  },
1050
1058
  [AccessibilityWorkbenchSettingId.HideAccessibleView]: {
1051
- description: ( localize(4478, "Controls whether the Accessible View is hidden.")),
1059
+ description: ( localize(4481, "Controls whether the Accessible View is hidden.")),
1052
1060
  type: "boolean",
1053
1061
  default: false,
1054
1062
  tags: ["accessibility"]
@@ -1057,7 +1065,7 @@ function registerAccessibilityConfiguration() {
1057
1065
  "type": "boolean",
1058
1066
  "default": true,
1059
1067
  "markdownDescription": ( localize(
1060
- 4475,
1068
+ 4478,
1061
1069
  "Controls whether verbose progress announcements should be made when a chat request is in progress, including information like searched text for <search term> with X results, created file <file_name>, or read file <file path>."
1062
1070
  ))
1063
1071
  },
@@ -1066,7 +1074,7 @@ function registerAccessibilityConfiguration() {
1066
1074
  "default": false,
1067
1075
  "tags": ["accessibility"],
1068
1076
  "markdownDescription": ( localize(
1069
- 4479,
1077
+ 4482,
1070
1078
  "Controls whether checkmark icons are shown on completed tool calls and other collapsible items in chat responses."
1071
1079
  ))
1072
1080
  }
@@ -1100,7 +1108,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1100
1108
  properties: {
1101
1109
  [AccessibilityVoiceSettingId.SpeechTimeout]: {
1102
1110
  "markdownDescription": ( localize(
1103
- 4480,
1111
+ 4483,
1104
1112
  "The duration in milliseconds that voice speech recognition remains active after you stop speaking. For example in a chat session, the transcribed text is submitted automatically after the timeout is met. Set to `0` to disable this feature."
1105
1113
  )),
1106
1114
  "type": "number",
@@ -1109,14 +1117,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1109
1117
  "tags": ["accessibility"]
1110
1118
  },
1111
1119
  [AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
1112
- "markdownDescription": ( localize(4481, "Whether to ignore code snippets in text-to-speech synthesis.")),
1120
+ "markdownDescription": ( localize(4484, "Whether to ignore code snippets in text-to-speech synthesis.")),
1113
1121
  "type": "boolean",
1114
1122
  "default": false,
1115
1123
  "tags": ["accessibility"]
1116
1124
  },
1117
1125
  [AccessibilityVoiceSettingId.SpeechLanguage]: {
1118
1126
  "markdownDescription": ( localize(
1119
- 4482,
1127
+ 4485,
1120
1128
  "The language that text-to-speech and speech-to-text should use. Select `auto` to use the configured display language if possible. Note that not all display languages maybe supported by speech recognition and synthesizers."
1121
1129
  )),
1122
1130
  "type": "string",
@@ -1130,11 +1138,11 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1130
1138
  "type": "string",
1131
1139
  "enum": ["on", "off"],
1132
1140
  "enumDescriptions": [( localize(
1133
- 4483,
1141
+ 4486,
1134
1142
  "Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
1135
- )), ( localize(4484, "Disable the feature."))],
1143
+ )), ( localize(4487, "Disable the feature."))],
1136
1144
  "markdownDescription": ( localize(
1137
- 4485,
1145
+ 4488,
1138
1146
  "Whether a textual response should automatically be read out aloud when speech was used as input. For example in a chat session, a response is automatically synthesized when voice was used as chat request."
1139
1147
  )),
1140
1148
  "default": "off",
@@ -1146,7 +1154,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1146
1154
  getLanguages() {
1147
1155
  return {
1148
1156
  ["auto"]: {
1149
- name: ( localize(4486, "Auto (Use Display Language)"))
1157
+ name: ( localize(4489, "Auto (Use Display Language)"))
1150
1158
  },
1151
1159
  ...SPEECH_LANGUAGES
1152
1160
  };