@codingame/monaco-vscode-api 32.0.1 → 33.0.3

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 (630) hide show
  1. package/missing-services.js +51 -7
  2. package/package.json +8 -8
  3. package/service-override/tools/views.d.ts +2 -2
  4. package/services.d.ts +3 -0
  5. package/services.js +8 -3
  6. package/vscode/product.json.js +1 -1
  7. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  8. package/vscode/src/vs/base/common/arrays.js +5 -1
  9. package/vscode/src/vs/base/common/async.js +94 -1
  10. package/vscode/src/vs/base/common/cache.js +22 -1
  11. package/vscode/src/vs/base/common/defaultAccount.d.ts +63 -0
  12. package/vscode/src/vs/base/common/policy.d.ts +1 -1
  13. package/vscode/src/vs/base/common/product.d.ts +0 -2
  14. package/vscode/src/vs/base/parts/ipc/common/ipc.net.d.ts +12 -0
  15. package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +1 -1
  16. package/vscode/src/vs/editor/common/config/editorOptions.js +1 -1
  17. package/vscode/src/vs/editor/common/textModelEditSource.js +18 -1
  18. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +2 -2
  19. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -0
  20. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +22 -2
  21. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +1 -0
  22. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +58 -17
  23. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  24. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  25. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  26. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  27. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  28. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  29. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  30. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  31. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  32. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  33. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  34. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  35. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  36. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  37. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  38. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/textualHighlightProvider.js +6 -3
  39. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  40. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  41. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +3 -0
  42. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  43. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  44. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +7 -0
  45. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +24 -10
  46. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +1 -0
  47. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +12 -12
  48. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
  49. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  50. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  51. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  52. package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.d.ts +1 -1
  53. package/vscode/src/vs/platform/agentHost/common/agentHostUri.js +3 -0
  54. package/vscode/src/vs/platform/agentHost/common/agentPluginManager.d.ts +1 -1
  55. package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +1 -1
  56. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.d.ts +13 -4
  57. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.js +8 -3
  58. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.d.ts +17 -1
  59. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.d.ts +27 -0
  60. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.d.ts +20 -1
  61. package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +1 -1
  62. package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.d.ts +1054 -0
  63. package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.js +59 -0
  64. package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.d.ts +17 -1
  65. package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +6 -2
  66. package/vscode/src/vs/platform/agentHost/common/state/protocol/state.d.ts +5 -0
  67. package/vscode/src/vs/platform/agentHost/common/state/protocolUpgrade.d.ts +73 -0
  68. package/vscode/src/vs/platform/agentHost/common/state/sessionState.d.ts +139 -0
  69. package/vscode/src/vs/platform/agentHost/common/state/sessionState.js +24 -0
  70. package/vscode/src/vs/platform/browserView/common/browserView.d.ts +20 -0
  71. package/vscode/src/vs/platform/browserView/common/browserView.js +1 -0
  72. package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.d.ts +3 -1
  73. package/vscode/src/vs/platform/configuration/common/configuration.js +1 -1
  74. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  75. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  76. package/vscode/src/vs/platform/contextkey/common/contextkey.js +10 -10
  77. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  78. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  79. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +16 -1
  80. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.js +8 -0
  81. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +9 -1
  82. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  83. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  84. package/vscode/src/vs/platform/environment/common/argv.d.ts +0 -2
  85. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  86. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  87. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
  88. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  89. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  90. package/vscode/src/vs/platform/files/common/files.js +6 -6
  91. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  92. package/vscode/src/vs/platform/hover/browser/hoverService.js +1 -1
  93. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
  94. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  95. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  96. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  97. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  98. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  99. package/vscode/src/vs/platform/log/common/log.js +6 -6
  100. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  101. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  102. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
  103. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
  104. package/vscode/src/vs/platform/networkFilter/common/networkFilterService.service.d.ts +2 -4
  105. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  106. package/vscode/src/vs/platform/policy/common/policy.d.ts +1 -1
  107. package/vscode/src/vs/platform/product/common/product.js +3 -3
  108. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  109. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  110. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
  111. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -1
  112. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  113. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  114. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  115. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
  116. package/vscode/src/vs/platform/request/common/request.js +20 -20
  117. package/vscode/src/vs/platform/telemetry/common/telemetry.js +4 -1
  118. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
  119. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +34 -34
  120. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  121. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  122. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +19 -19
  123. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +9 -9
  124. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  125. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
  126. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  127. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  128. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  129. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  130. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +10 -10
  131. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  132. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  133. package/vscode/src/vs/platform/theme/common/sizeUtils.d.ts +5 -3
  134. package/vscode/src/vs/platform/theme/common/sizeUtils.js +17 -3
  135. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
  136. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  137. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  138. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  139. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  140. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  141. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  142. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  143. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  144. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  145. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
  146. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +7 -1
  147. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  148. package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.d.ts +2 -2
  149. package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.js +2 -2
  150. package/vscode/src/vs/workbench/api/common/extHostChatStatus.js +9 -1
  151. package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +1 -0
  152. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  153. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
  154. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
  155. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -4
  156. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  157. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  158. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  159. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +4 -1
  160. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  161. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  162. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +12 -0
  163. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +98 -38
  164. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  165. package/vscode/src/vs/workbench/browser/actions/developerActions.js +35 -35
  166. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +127 -127
  167. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  168. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  169. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  170. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  171. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  172. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  173. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +23 -23
  174. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
  175. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
  176. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  177. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  178. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  179. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
  180. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  181. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  182. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  183. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  184. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  185. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  186. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +19 -9
  187. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +1 -2
  188. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +139 -176
  189. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +28 -27
  190. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  191. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  192. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
  193. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  194. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +16 -10
  195. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  196. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  197. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  198. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +3 -3
  199. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +24 -7
  200. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  201. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  202. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  203. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  204. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  205. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
  206. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +22 -22
  207. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  208. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
  209. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +13 -13
  210. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  211. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
  212. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
  213. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
  214. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
  215. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  216. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +27 -27
  217. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
  218. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  219. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  220. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +10 -10
  221. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +15 -15
  222. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +2 -2
  223. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  224. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +7 -7
  225. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +4 -4
  226. package/vscode/src/vs/workbench/browser/parts/views/viewMenuActions.d.ts +7 -2
  227. package/vscode/src/vs/workbench/browser/parts/views/viewMenuActions.js +28 -5
  228. package/vscode/src/vs/workbench/browser/parts/views/viewPane.d.ts +7 -0
  229. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +11 -5
  230. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +12 -9
  231. package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
  232. package/vscode/src/vs/workbench/browser/window.js +14 -14
  233. package/vscode/src/vs/workbench/browser/workbench.contribution.js +225 -225
  234. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  235. package/vscode/src/vs/workbench/common/contextkeys.js +82 -82
  236. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  237. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  238. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  239. package/vscode/src/vs/workbench/common/editor.js +4 -4
  240. package/vscode/src/vs/workbench/common/theme.js +161 -161
  241. package/vscode/src/vs/workbench/common/views.js +4 -4
  242. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +156 -156
  243. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  244. package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.js +1 -1
  245. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.js +10 -7
  246. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -66
  247. package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.d.ts +8 -0
  248. package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.js +6 -0
  249. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.d.ts +70 -0
  250. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.js +6 -0
  251. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +12 -12
  252. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +1 -1
  253. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +3 -3
  254. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  255. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  256. package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.d.ts +4 -2
  257. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
  258. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +43 -43
  259. package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -1
  260. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.service.d.ts +7 -0
  261. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.service.js +6 -0
  262. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +9 -9
  263. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +1 -0
  264. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +93 -86
  265. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +2 -2
  266. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +4 -6
  267. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +29 -21
  268. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +7 -8
  269. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +1 -1
  270. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +41 -2
  271. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
  272. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +3 -0
  273. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +1 -1
  274. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  275. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  276. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +17 -4
  277. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +152 -49
  278. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +20 -0
  279. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +3 -0
  280. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +17 -8
  281. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
  282. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +21 -19
  283. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
  284. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
  285. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +79 -79
  286. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +10 -10
  287. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.d.ts +92 -0
  288. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.js +329 -0
  289. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.d.ts +5 -44
  290. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +33 -276
  291. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.js +1 -1
  292. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +8 -8
  293. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
  294. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.js +7 -7
  295. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +2 -2
  296. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.js +3 -3
  297. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +4 -4
  298. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
  299. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +2 -1
  300. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +6 -5
  301. package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.service.d.ts +2 -1
  302. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  303. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  304. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  305. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  306. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  307. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  308. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  309. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  310. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  311. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  312. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  313. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  314. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +12 -12
  315. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  316. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  317. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  318. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  319. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
  320. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  321. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  322. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  323. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  324. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  325. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  326. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  327. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  328. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  329. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  330. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  331. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  332. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  333. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.d.ts +7 -12
  334. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.js +68 -64
  335. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  336. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  337. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
  338. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  339. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  340. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  341. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  342. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  343. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  344. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  345. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  346. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  347. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  348. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  349. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  350. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  351. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  352. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  353. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  354. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
  355. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +6 -6
  356. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  357. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  358. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  359. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  360. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  361. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  362. package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.d.ts +15 -0
  363. package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.js +85 -0
  364. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  365. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  366. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +41 -41
  367. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  368. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  369. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  370. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +149 -151
  371. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +179 -179
  372. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  373. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  374. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  375. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
  376. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  377. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  378. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
  379. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +6 -6
  380. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
  381. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +79 -76
  382. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  383. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  384. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  385. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  386. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  387. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  388. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  389. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  390. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  391. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  392. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  393. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  394. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  395. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  396. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  397. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  398. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  399. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  400. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  401. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +28 -28
  402. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
  403. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  404. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  405. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  406. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  407. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
  408. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  409. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  410. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  411. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  412. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  413. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  414. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  415. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  416. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  417. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.d.ts +17 -0
  418. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.js +108 -0
  419. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +8 -0
  420. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +49 -0
  421. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  422. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  423. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
  424. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
  425. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +42 -42
  426. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
  427. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
  428. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  429. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  430. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  431. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  432. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
  433. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
  434. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  435. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  436. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  437. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  438. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.d.ts +26 -0
  439. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +746 -0
  440. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  441. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  442. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  443. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +13 -0
  444. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +300 -0
  445. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +8 -0
  446. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +55 -0
  447. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +273 -0
  448. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +1963 -0
  449. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +50 -0
  450. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +314 -0
  451. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +258 -0
  452. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +886 -0
  453. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +41 -0
  454. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +118 -0
  455. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +17 -0
  456. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +71 -0
  457. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +27 -0
  458. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +40 -0
  459. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +23 -0
  460. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +313 -0
  461. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +51 -0
  462. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +265 -0
  463. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +24 -0
  464. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +185 -0
  465. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +28 -0
  466. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +104 -0
  467. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +10 -0
  468. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +43 -0
  469. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +21 -0
  470. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +41 -0
  471. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +25 -0
  472. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +69 -0
  473. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +469 -0
  474. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +149 -0
  475. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +933 -0
  476. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +180 -0
  477. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +32 -0
  478. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +102 -0
  479. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +643 -0
  480. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +30 -0
  481. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +197 -0
  482. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +75 -0
  483. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +539 -0
  484. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +13 -0
  485. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +39 -0
  486. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  487. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  488. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  489. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  490. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  491. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  492. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  493. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  494. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  495. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  496. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  497. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  498. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  499. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  500. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  501. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  502. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  503. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +19 -0
  504. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +90 -0
  505. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +26 -0
  506. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +92 -0
  507. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  508. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.d.ts +1 -0
  509. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.js +44 -0
  510. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  511. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  512. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  513. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
  514. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  515. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  516. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  517. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  518. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  519. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  520. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  521. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  522. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  523. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  524. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  525. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  526. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  527. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  528. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  529. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  530. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  531. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  532. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  533. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  534. package/vscode/src/vs/workbench/contrib/search/common/search.d.ts +2 -0
  535. package/vscode/src/vs/workbench/contrib/search/common/search.js +9 -1
  536. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  537. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  538. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  539. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  540. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  541. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  542. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  543. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +6 -6
  544. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  545. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  546. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  547. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  548. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  549. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  550. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
  551. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  552. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  553. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  554. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  555. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  556. package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +9 -9
  557. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +2 -0
  558. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +104 -74
  559. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  560. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  561. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +2 -2
  562. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  563. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  564. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  565. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  566. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  567. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  568. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  569. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  570. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  571. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  572. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  573. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  574. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +14 -14
  575. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  576. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +2 -1
  577. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +14 -3
  578. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +31 -25
  579. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +15 -0
  580. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  581. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +11 -2
  582. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +65 -22
  583. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +2 -0
  584. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  585. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  586. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  587. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +15 -3
  588. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +19 -3
  589. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +2 -2
  590. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  591. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  592. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  593. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
  594. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  595. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  596. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  597. package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.js +1 -1
  598. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  599. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  600. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  601. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
  602. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
  603. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  604. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  605. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  606. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  607. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  608. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  609. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  610. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  611. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  612. package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +7 -0
  613. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  614. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  615. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  616. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  617. package/vscode-dts/vscode.proposed.authIssuers.d.ts +14 -0
  618. package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +23 -3
  619. package/vscode-dts/vscode.proposed.chatProvider.d.ts +0 -9
  620. package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +5 -0
  621. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.d.ts +0 -7
  622. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.js +0 -6
  623. package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.d.ts +0 -39
  624. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.d.ts +0 -4
  625. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +0 -9
  626. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.d.ts +0 -76
  627. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +0 -470
  628. package/vscode/src/vs/workbench/contrib/extensions/browser/media/runtimeExtensionsEditor.css +0 -86
  629. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.d.ts +0 -15
  630. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +0 -47
@@ -73,14 +73,14 @@ const baseVerbosityProperty = {
73
73
  };
74
74
  const accessibilityConfigurationNodeBase = ( Object.freeze({
75
75
  id: "accessibility",
76
- title: ( localize(4380, "Accessibility")),
76
+ title: ( localize(4402, "Accessibility")),
77
77
  type: "object"
78
78
  }));
79
79
  const soundFeatureBase = {
80
80
  "type": "string",
81
81
  "enum": ["auto", "on", "off"],
82
82
  "default": "auto",
83
- "enumDescriptions": [( localize(4381, "Enable sound when a screen reader is attached.")), ( localize(4382, "Enable sound.")), ( localize(4383, "Disable sound."))],
83
+ "enumDescriptions": [( localize(4403, "Enable sound when a screen reader is attached.")), ( localize(4404, "Enable sound.")), ( localize(4405, "Disable sound."))],
84
84
  tags: ["accessibility"]
85
85
  };
86
86
  const signalFeatureBase = {
@@ -97,9 +97,9 @@ const announcementFeatureBase = {
97
97
  "enum": ["auto", "off"],
98
98
  "default": "auto",
99
99
  "enumDescriptions": [( localize(
100
- 4384,
100
+ 4406,
101
101
  "Enable announcement, will only play when in screen reader optimized mode."
102
- )), ( localize(4385, "Disable announcement."))],
102
+ )), ( localize(4407, "Disable announcement."))],
103
103
  tags: ["accessibility"]
104
104
  };
105
105
  const defaultNoAnnouncement = {
@@ -116,116 +116,116 @@ const configuration = {
116
116
  properties: {
117
117
  [AccessibilityVerbositySettingId.Terminal]: {
118
118
  description: ( localize(
119
- 4386,
119
+ 4408,
120
120
  "Provide information about how to access the terminal accessibility help menu when the terminal is focused."
121
121
  )),
122
122
  ...baseVerbosityProperty
123
123
  },
124
124
  [AccessibilityVerbositySettingId.DiffEditor]: {
125
125
  description: ( localize(
126
- 4387,
126
+ 4409,
127
127
  "Provide information about how to navigate changes in the diff editor when it is focused."
128
128
  )),
129
129
  ...baseVerbosityProperty
130
130
  },
131
131
  [AccessibilityVerbositySettingId.Chat]: {
132
132
  description: ( localize(
133
- 4388,
133
+ 4410,
134
134
  "Provide information about how to access the chat help menu when the chat input is focused."
135
135
  )),
136
136
  ...baseVerbosityProperty
137
137
  },
138
138
  [AccessibilityVerbositySettingId.InlineChat]: {
139
139
  description: ( localize(
140
- 4389,
140
+ 4411,
141
141
  "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."
142
142
  )),
143
143
  ...baseVerbosityProperty
144
144
  },
145
145
  [AccessibilityVerbositySettingId.TerminalChatOutput]: {
146
146
  description: ( localize(
147
- 4390,
147
+ 4412,
148
148
  "Provide information about how to open the chat terminal output in the Accessible View."
149
149
  )),
150
150
  ...baseVerbosityProperty
151
151
  },
152
152
  [AccessibilityVerbositySettingId.InlineCompletions]: {
153
153
  description: ( localize(
154
- 4391,
154
+ 4413,
155
155
  "Provide information about how to access the inline completions hover and Accessible View."
156
156
  )),
157
157
  ...baseVerbosityProperty
158
158
  },
159
159
  [AccessibilityVerbositySettingId.KeybindingsEditor]: {
160
160
  description: ( localize(
161
- 4392,
161
+ 4414,
162
162
  "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."
163
163
  )),
164
164
  ...baseVerbosityProperty
165
165
  },
166
166
  [AccessibilityVerbositySettingId.Notebook]: {
167
167
  description: ( localize(
168
- 4393,
168
+ 4415,
169
169
  "Provide information about how to focus the cell container or inner editor when a notebook cell is focused."
170
170
  )),
171
171
  ...baseVerbosityProperty
172
172
  },
173
173
  [AccessibilityVerbositySettingId.Hover]: {
174
174
  description: ( localize(
175
- 4394,
175
+ 4416,
176
176
  "Provide information about how to open the hover in an Accessible View."
177
177
  )),
178
178
  ...baseVerbosityProperty
179
179
  },
180
180
  [AccessibilityVerbositySettingId.Notification]: {
181
181
  description: ( localize(
182
- 4395,
182
+ 4417,
183
183
  "Provide information about how to open the notification in an Accessible View."
184
184
  )),
185
185
  ...baseVerbosityProperty
186
186
  },
187
187
  [AccessibilityVerbositySettingId.EmptyEditorHint]: {
188
188
  description: ( localize(
189
- 4396,
189
+ 4418,
190
190
  "Provide information about relevant actions in an empty text editor."
191
191
  )),
192
192
  ...baseVerbosityProperty
193
193
  },
194
194
  [AccessibilityVerbositySettingId.ReplEditor]: {
195
195
  description: ( localize(
196
- 4397,
196
+ 4419,
197
197
  "Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused."
198
198
  )),
199
199
  ...baseVerbosityProperty
200
200
  },
201
201
  [AccessibilityVerbositySettingId.Comments]: {
202
202
  description: ( localize(
203
- 4398,
203
+ 4420,
204
204
  "Provide information about actions that can be taken in the comment widget or in a file which contains comments."
205
205
  )),
206
206
  ...baseVerbosityProperty
207
207
  },
208
208
  [AccessibilityVerbositySettingId.DiffEditorActive]: {
209
- description: ( localize(4399, "Indicate when a diff editor becomes the active editor.")),
209
+ description: ( localize(4421, "Indicate when a diff editor becomes the active editor.")),
210
210
  ...baseVerbosityProperty
211
211
  },
212
212
  [AccessibilityVerbositySettingId.Debug]: {
213
213
  description: ( localize(
214
- 4400,
214
+ 4422,
215
215
  "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."
216
216
  )),
217
217
  ...baseVerbosityProperty
218
218
  },
219
219
  [AccessibilityVerbositySettingId.Walkthrough]: {
220
220
  description: ( localize(
221
- 4401,
221
+ 4423,
222
222
  "Provide information about how to open the walkthrough in an Accessible View."
223
223
  )),
224
224
  ...baseVerbosityProperty
225
225
  },
226
226
  [AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
227
227
  markdownDescription: ( localize(
228
- 4402,
228
+ 4424,
229
229
  "On keypress, close the Accessible View and focus the element from which it was invoked."
230
230
  )),
231
231
  type: "boolean",
@@ -233,34 +233,34 @@ const configuration = {
233
233
  },
234
234
  [AccessibilityVerbositySettingId.SourceControl]: {
235
235
  description: ( localize(
236
- 4403,
236
+ 4425,
237
237
  "Provide information about how to access the source control accessibility help menu when the input is focused."
238
238
  )),
239
239
  ...baseVerbosityProperty
240
240
  },
241
241
  [AccessibilityVerbositySettingId.Find]: {
242
242
  description: ( localize(
243
- 4404,
243
+ 4426,
244
244
  "Provide information about how to access the find accessibility help menu when the find input is focused."
245
245
  )),
246
246
  ...baseVerbosityProperty
247
247
  },
248
248
  [AccessibilityVerbositySettingId.SessionsChat]: {
249
249
  description: ( localize(
250
- 4405,
250
+ 4427,
251
251
  "Provide information about how to access the Agents window accessibility help menu when the chat input is focused."
252
252
  )),
253
253
  ...baseVerbosityProperty
254
254
  },
255
255
  [AccessibilityVerbositySettingId.ChatQuestionCarousel]: {
256
256
  description: ( localize(
257
- 4406,
257
+ 4428,
258
258
  "Provide information about how to navigate and interact with the chat question carousel, including how to focus the terminal when applicable."
259
259
  )),
260
260
  ...baseVerbosityProperty
261
261
  },
262
262
  "accessibility.signalOptions.volume": {
263
- "description": ( localize(4407, "The volume of the sounds in percent (0-100).")),
263
+ "description": ( localize(4429, "The volume of the sounds in percent (0-100).")),
264
264
  "type": "number",
265
265
  "minimum": 0,
266
266
  "maximum": 100,
@@ -268,7 +268,7 @@ const configuration = {
268
268
  "tags": ["accessibility"]
269
269
  },
270
270
  "accessibility.signalOptions.debouncePositionChanges": {
271
- "description": ( localize(4408, "Whether or not position changes should be debounced")),
271
+ "description": ( localize(4430, "Whether or not position changes should be debounced")),
272
272
  "type": "boolean",
273
273
  "default": false,
274
274
  "tags": ["accessibility"]
@@ -279,13 +279,13 @@ const configuration = {
279
279
  "additionalProperties": false,
280
280
  "properties": {
281
281
  "announcement": {
282
- "description": ( localize(4409, "The delay in milliseconds before an announcement is made.")),
282
+ "description": ( localize(4431, "The delay in milliseconds before an announcement is made.")),
283
283
  "type": "number",
284
284
  "minimum": 0,
285
285
  "default": 3000
286
286
  },
287
287
  "sound": {
288
- "description": ( localize(4410, "The delay in milliseconds before a sound is played.")),
288
+ "description": ( localize(4432, "The delay in milliseconds before a sound is played.")),
289
289
  "type": "number",
290
290
  "minimum": 0,
291
291
  "default": 400
@@ -299,7 +299,7 @@ const configuration = {
299
299
  "properties": {
300
300
  "announcement": {
301
301
  "description": ( localize(
302
- 4411,
302
+ 4433,
303
303
  "The delay in milliseconds before an announcement is made when there's a warning at the position."
304
304
  )),
305
305
  "type": "number",
@@ -308,7 +308,7 @@ const configuration = {
308
308
  },
309
309
  "sound": {
310
310
  "description": ( localize(
311
- 4412,
311
+ 4434,
312
312
  "The delay in milliseconds before a sound is played when there's a warning at the position."
313
313
  )),
314
314
  "type": "number",
@@ -324,7 +324,7 @@ const configuration = {
324
324
  "properties": {
325
325
  "announcement": {
326
326
  "description": ( localize(
327
- 4413,
327
+ 4435,
328
328
  "The delay in milliseconds before an announcement is made when there's an error at the position."
329
329
  )),
330
330
  "type": "number",
@@ -333,7 +333,7 @@ const configuration = {
333
333
  },
334
334
  "sound": {
335
335
  "description": ( localize(
336
- 4414,
336
+ 4436,
337
337
  "The delay in milliseconds before a sound is played when there's an error at the position."
338
338
  )),
339
339
  "type": "number",
@@ -346,16 +346,16 @@ const configuration = {
346
346
  "accessibility.signals.lineHasBreakpoint": {
347
347
  ...signalFeatureBase,
348
348
  "description": ( localize(
349
- 4415,
349
+ 4437,
350
350
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
351
351
  )),
352
352
  "properties": {
353
353
  "sound": {
354
- "description": ( localize(4416, "Plays a sound when the active line has a breakpoint.")),
354
+ "description": ( localize(4438, "Plays a sound when the active line has a breakpoint.")),
355
355
  ...soundFeatureBase
356
356
  },
357
357
  "announcement": {
358
- "description": ( localize(4417, "Announces when the active line has a breakpoint.")),
358
+ "description": ( localize(4439, "Announces when the active line has a breakpoint.")),
359
359
  ...announcementFeatureBase
360
360
  }
361
361
  }
@@ -363,12 +363,12 @@ const configuration = {
363
363
  "accessibility.signals.lineHasInlineSuggestion": {
364
364
  ...defaultNoAnnouncement,
365
365
  "description": ( localize(
366
- 4418,
366
+ 4440,
367
367
  "Plays a sound / audio cue when the active line has an inline suggestion."
368
368
  )),
369
369
  "properties": {
370
370
  "sound": {
371
- "description": ( localize(4419, "Plays a sound when the active line has an inline suggestion.")),
371
+ "description": ( localize(4441, "Plays a sound when the active line has an inline suggestion.")),
372
372
  ...soundFeatureBase,
373
373
  "default": "off"
374
374
  }
@@ -377,16 +377,16 @@ const configuration = {
377
377
  "accessibility.signals.nextEditSuggestion": {
378
378
  ...signalFeatureBase,
379
379
  "description": ( localize(
380
- 4420,
380
+ 4442,
381
381
  "Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
382
382
  )),
383
383
  "properties": {
384
384
  "sound": {
385
- "description": ( localize(4421, "Plays a sound when there is a next edit suggestion.")),
385
+ "description": ( localize(4443, "Plays a sound when there is a next edit suggestion.")),
386
386
  ...soundFeatureBase
387
387
  },
388
388
  "announcement": {
389
- "description": ( localize(4422, "Announces when there is a next edit suggestion.")),
389
+ "description": ( localize(4444, "Announces when there is a next edit suggestion.")),
390
390
  ...announcementFeatureBase
391
391
  }
392
392
  }
@@ -394,16 +394,16 @@ const configuration = {
394
394
  "accessibility.signals.lineHasError": {
395
395
  ...signalFeatureBase,
396
396
  "description": ( localize(
397
- 4423,
397
+ 4445,
398
398
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
399
399
  )),
400
400
  "properties": {
401
401
  "sound": {
402
- "description": ( localize(4424, "Plays a sound when the active line has an error.")),
402
+ "description": ( localize(4446, "Plays a sound when the active line has an error.")),
403
403
  ...soundFeatureBase
404
404
  },
405
405
  "announcement": {
406
- "description": ( localize(4425, "Announces when the active line has an error.")),
406
+ "description": ( localize(4447, "Announces when the active line has an error.")),
407
407
  ...announcementFeatureBase,
408
408
  default: "off"
409
409
  }
@@ -412,13 +412,13 @@ const configuration = {
412
412
  "accessibility.signals.lineHasFoldedArea": {
413
413
  ...signalFeatureBase,
414
414
  "description": ( localize(
415
- 4426,
415
+ 4448,
416
416
  "Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
417
417
  )),
418
418
  "properties": {
419
419
  "sound": {
420
420
  "description": ( localize(
421
- 4427,
421
+ 4449,
422
422
  "Plays a sound when the active line has a folded area that can be unfolded."
423
423
  )),
424
424
  ...soundFeatureBase,
@@ -426,7 +426,7 @@ const configuration = {
426
426
  },
427
427
  "announcement": {
428
428
  "description": ( localize(
429
- 4428,
429
+ 4450,
430
430
  "Announces when the active line has a folded area that can be unfolded."
431
431
  )),
432
432
  ...announcementFeatureBase
@@ -436,16 +436,16 @@ const configuration = {
436
436
  "accessibility.signals.lineHasWarning": {
437
437
  ...signalFeatureBase,
438
438
  "description": ( localize(
439
- 4429,
439
+ 4451,
440
440
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
441
441
  )),
442
442
  "properties": {
443
443
  "sound": {
444
- "description": ( localize(4430, "Plays a sound when the active line has a warning.")),
444
+ "description": ( localize(4452, "Plays a sound when the active line has a warning.")),
445
445
  ...soundFeatureBase
446
446
  },
447
447
  "announcement": {
448
- "description": ( localize(4431, "Announces when the active line has a warning.")),
448
+ "description": ( localize(4453, "Announces when the active line has a warning.")),
449
449
  ...announcementFeatureBase,
450
450
  default: "off"
451
451
  }
@@ -454,16 +454,16 @@ const configuration = {
454
454
  "accessibility.signals.positionHasError": {
455
455
  ...signalFeatureBase,
456
456
  "description": ( localize(
457
- 4432,
457
+ 4454,
458
458
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
459
459
  )),
460
460
  "properties": {
461
461
  "sound": {
462
- "description": ( localize(4433, "Plays a sound when the active line has a warning.")),
462
+ "description": ( localize(4455, "Plays a sound when the active line has a warning.")),
463
463
  ...soundFeatureBase
464
464
  },
465
465
  "announcement": {
466
- "description": ( localize(4434, "Announces when the active line has a warning.")),
466
+ "description": ( localize(4456, "Announces when the active line has a warning.")),
467
467
  ...announcementFeatureBase,
468
468
  default: "on"
469
469
  }
@@ -472,16 +472,16 @@ const configuration = {
472
472
  "accessibility.signals.positionHasWarning": {
473
473
  ...signalFeatureBase,
474
474
  "description": ( localize(
475
- 4435,
475
+ 4457,
476
476
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
477
477
  )),
478
478
  "properties": {
479
479
  "sound": {
480
- "description": ( localize(4436, "Plays a sound when the active line has a warning.")),
480
+ "description": ( localize(4458, "Plays a sound when the active line has a warning.")),
481
481
  ...soundFeatureBase
482
482
  },
483
483
  "announcement": {
484
- "description": ( localize(4437, "Announces when the active line has a warning.")),
484
+ "description": ( localize(4459, "Announces when the active line has a warning.")),
485
485
  ...announcementFeatureBase,
486
486
  default: "on"
487
487
  }
@@ -490,16 +490,16 @@ const configuration = {
490
490
  "accessibility.signals.onDebugBreak": {
491
491
  ...signalFeatureBase,
492
492
  "description": ( localize(
493
- 4438,
493
+ 4460,
494
494
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
495
495
  )),
496
496
  "properties": {
497
497
  "sound": {
498
- "description": ( localize(4439, "Plays a sound when the debugger stopped on a breakpoint.")),
498
+ "description": ( localize(4461, "Plays a sound when the debugger stopped on a breakpoint.")),
499
499
  ...soundFeatureBase
500
500
  },
501
501
  "announcement": {
502
- "description": ( localize(4440, "Announces when the debugger stopped on a breakpoint.")),
502
+ "description": ( localize(4462, "Announces when the debugger stopped on a breakpoint.")),
503
503
  ...announcementFeatureBase
504
504
  }
505
505
  }
@@ -507,20 +507,20 @@ const configuration = {
507
507
  "accessibility.signals.noInlayHints": {
508
508
  ...signalFeatureBase,
509
509
  "description": ( localize(
510
- 4441,
510
+ 4463,
511
511
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
512
512
  )),
513
513
  "properties": {
514
514
  "sound": {
515
515
  "description": ( localize(
516
- 4442,
516
+ 4464,
517
517
  "Plays a sound when trying to read a line with inlay hints that has no inlay hints."
518
518
  )),
519
519
  ...soundFeatureBase
520
520
  },
521
521
  "announcement": {
522
522
  "description": ( localize(
523
- 4443,
523
+ 4465,
524
524
  "Announces when trying to read a line with inlay hints that has no inlay hints."
525
525
  )),
526
526
  ...announcementFeatureBase
@@ -530,16 +530,16 @@ const configuration = {
530
530
  "accessibility.signals.taskCompleted": {
531
531
  ...signalFeatureBase,
532
532
  "description": ( localize(
533
- 4444,
533
+ 4466,
534
534
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
535
535
  )),
536
536
  "properties": {
537
537
  "sound": {
538
- "description": ( localize(4445, "Plays a sound when a task is completed.")),
538
+ "description": ( localize(4467, "Plays a sound when a task is completed.")),
539
539
  ...soundFeatureBase
540
540
  },
541
541
  "announcement": {
542
- "description": ( localize(4446, "Announces when a task is completed.")),
542
+ "description": ( localize(4468, "Announces when a task is completed.")),
543
543
  ...announcementFeatureBase
544
544
  }
545
545
  }
@@ -547,16 +547,16 @@ const configuration = {
547
547
  "accessibility.signals.taskFailed": {
548
548
  ...signalFeatureBase,
549
549
  "description": ( localize(
550
- 4447,
550
+ 4469,
551
551
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
552
552
  )),
553
553
  "properties": {
554
554
  "sound": {
555
- "description": ( localize(4448, "Plays a sound when a task fails (non-zero exit code).")),
555
+ "description": ( localize(4470, "Plays a sound when a task fails (non-zero exit code).")),
556
556
  ...soundFeatureBase
557
557
  },
558
558
  "announcement": {
559
- "description": ( localize(4449, "Announces when a task fails (non-zero exit code).")),
559
+ "description": ( localize(4471, "Announces when a task fails (non-zero exit code).")),
560
560
  ...announcementFeatureBase
561
561
  }
562
562
  }
@@ -564,20 +564,20 @@ const configuration = {
564
564
  "accessibility.signals.terminalCommandFailed": {
565
565
  ...signalFeatureBase,
566
566
  "description": ( localize(
567
- 4450,
567
+ 4472,
568
568
  "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."
569
569
  )),
570
570
  "properties": {
571
571
  "sound": {
572
572
  "description": ( localize(
573
- 4451,
573
+ 4473,
574
574
  "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."
575
575
  )),
576
576
  ...soundFeatureBase
577
577
  },
578
578
  "announcement": {
579
579
  "description": ( localize(
580
- 4452,
580
+ 4474,
581
581
  "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."
582
582
  )),
583
583
  ...announcementFeatureBase
@@ -587,20 +587,20 @@ const configuration = {
587
587
  "accessibility.signals.terminalCommandSucceeded": {
588
588
  ...signalFeatureBase,
589
589
  "description": ( localize(
590
- 4453,
590
+ 4475,
591
591
  "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."
592
592
  )),
593
593
  "properties": {
594
594
  "sound": {
595
595
  "description": ( localize(
596
- 4454,
596
+ 4476,
597
597
  "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."
598
598
  )),
599
599
  ...soundFeatureBase
600
600
  },
601
601
  "announcement": {
602
602
  "description": ( localize(
603
- 4455,
603
+ 4477,
604
604
  "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."
605
605
  )),
606
606
  ...announcementFeatureBase
@@ -610,16 +610,16 @@ const configuration = {
610
610
  "accessibility.signals.terminalQuickFix": {
611
611
  ...signalFeatureBase,
612
612
  "description": ( localize(
613
- 4456,
613
+ 4478,
614
614
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
615
615
  )),
616
616
  "properties": {
617
617
  "sound": {
618
- "description": ( localize(4457, "Plays a sound when terminal Quick Fixes are available.")),
618
+ "description": ( localize(4479, "Plays a sound when terminal Quick Fixes are available.")),
619
619
  ...soundFeatureBase
620
620
  },
621
621
  "announcement": {
622
- "description": ( localize(4458, "Announces when terminal Quick Fixes are available.")),
622
+ "description": ( localize(4480, "Announces when terminal Quick Fixes are available.")),
623
623
  ...announcementFeatureBase
624
624
  }
625
625
  }
@@ -627,16 +627,16 @@ const configuration = {
627
627
  "accessibility.signals.terminalBell": {
628
628
  ...signalFeatureBase,
629
629
  "description": ( localize(
630
- 4459,
630
+ 4481,
631
631
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
632
632
  )),
633
633
  "properties": {
634
634
  "sound": {
635
- "description": ( localize(4460, "Plays a sound when the terminal bell is ringing.")),
635
+ "description": ( localize(4482, "Plays a sound when the terminal bell is ringing.")),
636
636
  ...soundFeatureBase
637
637
  },
638
638
  "announcement": {
639
- "description": ( localize(4461, "Announces when the terminal bell is ringing.")),
639
+ "description": ( localize(4483, "Announces when the terminal bell is ringing.")),
640
640
  ...announcementFeatureBase
641
641
  }
642
642
  }
@@ -644,13 +644,13 @@ const configuration = {
644
644
  "accessibility.signals.diffLineInserted": {
645
645
  ...defaultNoAnnouncement,
646
646
  "description": ( localize(
647
- 4462,
647
+ 4484,
648
648
  "Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
649
649
  )),
650
650
  "properties": {
651
651
  "sound": {
652
652
  "description": ( localize(
653
- 4463,
653
+ 4485,
654
654
  "Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
655
655
  )),
656
656
  ...soundFeatureBase
@@ -660,13 +660,13 @@ const configuration = {
660
660
  "accessibility.signals.diffLineModified": {
661
661
  ...defaultNoAnnouncement,
662
662
  "description": ( localize(
663
- 4464,
663
+ 4486,
664
664
  "Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
665
665
  )),
666
666
  "properties": {
667
667
  "sound": {
668
668
  "description": ( localize(
669
- 4465,
669
+ 4487,
670
670
  "Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
671
671
  )),
672
672
  ...soundFeatureBase
@@ -676,13 +676,13 @@ const configuration = {
676
676
  "accessibility.signals.diffLineDeleted": {
677
677
  ...defaultNoAnnouncement,
678
678
  "description": ( localize(
679
- 4466,
679
+ 4488,
680
680
  "Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
681
681
  )),
682
682
  "properties": {
683
683
  "sound": {
684
684
  "description": ( localize(
685
- 4467,
685
+ 4489,
686
686
  "Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
687
687
  )),
688
688
  ...soundFeatureBase
@@ -692,12 +692,12 @@ const configuration = {
692
692
  "accessibility.signals.chatEditModifiedFile": {
693
693
  ...defaultNoAnnouncement,
694
694
  "description": ( localize(
695
- 4468,
695
+ 4490,
696
696
  "Plays a sound / audio cue when revealing a file with changes from chat edits"
697
697
  )),
698
698
  "properties": {
699
699
  "sound": {
700
- "description": ( localize(4469, "Plays a sound when revealing a file with changes from chat edits")),
700
+ "description": ( localize(4491, "Plays a sound when revealing a file with changes from chat edits")),
701
701
  ...soundFeatureBase
702
702
  }
703
703
  }
@@ -705,20 +705,20 @@ const configuration = {
705
705
  "accessibility.signals.notebookCellCompleted": {
706
706
  ...signalFeatureBase,
707
707
  "description": ( localize(
708
- 4470,
708
+ 4492,
709
709
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
710
710
  )),
711
711
  "properties": {
712
712
  "sound": {
713
713
  "description": ( localize(
714
- 4471,
714
+ 4493,
715
715
  "Plays a sound when a notebook cell execution is successfully completed."
716
716
  )),
717
717
  ...soundFeatureBase
718
718
  },
719
719
  "announcement": {
720
720
  "description": ( localize(
721
- 4472,
721
+ 4494,
722
722
  "Announces when a notebook cell execution is successfully completed."
723
723
  )),
724
724
  ...announcementFeatureBase
@@ -728,16 +728,16 @@ const configuration = {
728
728
  "accessibility.signals.notebookCellFailed": {
729
729
  ...signalFeatureBase,
730
730
  "description": ( localize(
731
- 4473,
731
+ 4495,
732
732
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
733
733
  )),
734
734
  "properties": {
735
735
  "sound": {
736
- "description": ( localize(4474, "Plays a sound when a notebook cell execution fails.")),
736
+ "description": ( localize(4496, "Plays a sound when a notebook cell execution fails.")),
737
737
  ...soundFeatureBase
738
738
  },
739
739
  "announcement": {
740
- "description": ( localize(4475, "Announces when a notebook cell execution fails.")),
740
+ "description": ( localize(4497, "Announces when a notebook cell execution fails.")),
741
741
  ...announcementFeatureBase
742
742
  }
743
743
  }
@@ -745,7 +745,7 @@ const configuration = {
745
745
  "accessibility.signals.progress": {
746
746
  ...signalFeatureBase,
747
747
  "description": ( localize(
748
- 4476,
748
+ 4498,
749
749
  "Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
750
750
  )),
751
751
  "default": {
@@ -754,11 +754,11 @@ const configuration = {
754
754
  },
755
755
  "properties": {
756
756
  "sound": {
757
- "description": ( localize(4477, "Plays a sound on loop while progress is occurring.")),
757
+ "description": ( localize(4499, "Plays a sound on loop while progress is occurring.")),
758
758
  ...soundFeatureBase
759
759
  },
760
760
  "announcement": {
761
- "description": ( localize(4478, "Alerts on loop while progress is occurring.")),
761
+ "description": ( localize(4500, "Alerts on loop while progress is occurring.")),
762
762
  ...announcementFeatureBase
763
763
  }
764
764
  }
@@ -766,56 +766,56 @@ const configuration = {
766
766
  "accessibility.signals.chatRequestSent": {
767
767
  ...signalFeatureBase,
768
768
  "description": ( localize(
769
- 4479,
769
+ 4501,
770
770
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
771
771
  )),
772
772
  "properties": {
773
773
  "sound": {
774
- "description": ( localize(4480, "Plays a sound when a chat request is made.")),
774
+ "description": ( localize(4502, "Plays a sound when a chat request is made.")),
775
775
  ...soundFeatureBase
776
776
  },
777
777
  "announcement": {
778
- "description": ( localize(4481, "Announces when a chat request is made.")),
778
+ "description": ( localize(4503, "Announces when a chat request is made.")),
779
779
  ...announcementFeatureBase
780
780
  }
781
781
  }
782
782
  },
783
783
  "accessibility.signals.chatResponseReceived": {
784
784
  ...defaultNoAnnouncement,
785
- "description": ( localize(4482, "Plays a sound / audio cue when the response has been received.")),
785
+ "description": ( localize(4504, "Plays a sound / audio cue when the response has been received.")),
786
786
  "properties": {
787
787
  "sound": {
788
- "description": ( localize(4483, "Plays a sound on when the response has been received.")),
788
+ "description": ( localize(4505, "Plays a sound on when the response has been received.")),
789
789
  ...soundFeatureBase
790
790
  }
791
791
  }
792
792
  },
793
793
  "accessibility.signals.codeActionTriggered": {
794
794
  ...defaultNoAnnouncement,
795
- "description": ( localize(4484, "Plays a sound / audio cue - when a code action has been triggered.")),
795
+ "description": ( localize(4506, "Plays a sound / audio cue - when a code action has been triggered.")),
796
796
  "properties": {
797
797
  "sound": {
798
- "description": ( localize(4485, "Plays a sound when a code action has been triggered.")),
798
+ "description": ( localize(4507, "Plays a sound when a code action has been triggered.")),
799
799
  ...soundFeatureBase
800
800
  }
801
801
  }
802
802
  },
803
803
  "accessibility.signals.codeActionApplied": {
804
804
  ...defaultNoAnnouncement,
805
- "description": ( localize(4486, "Plays a sound / audio cue when the code action has been applied.")),
805
+ "description": ( localize(4508, "Plays a sound / audio cue when the code action has been applied.")),
806
806
  "properties": {
807
807
  "sound": {
808
- "description": ( localize(4487, "Plays a sound when the code action has been applied.")),
808
+ "description": ( localize(4509, "Plays a sound when the code action has been applied.")),
809
809
  ...soundFeatureBase
810
810
  }
811
811
  }
812
812
  },
813
813
  "accessibility.signals.voiceRecordingStarted": {
814
814
  ...defaultNoAnnouncement,
815
- "description": ( localize(4488, "Plays a sound / audio cue when the voice recording has started.")),
815
+ "description": ( localize(4510, "Plays a sound / audio cue when the voice recording has started.")),
816
816
  "properties": {
817
817
  "sound": {
818
- "description": ( localize(4489, "Plays a sound when the voice recording has started.")),
818
+ "description": ( localize(4511, "Plays a sound when the voice recording has started.")),
819
819
  ...soundFeatureBase
820
820
  }
821
821
  },
@@ -825,10 +825,10 @@ const configuration = {
825
825
  },
826
826
  "accessibility.signals.voiceRecordingStopped": {
827
827
  ...defaultNoAnnouncement,
828
- "description": ( localize(4490, "Plays a sound / audio cue when the voice recording has stopped.")),
828
+ "description": ( localize(4512, "Plays a sound / audio cue when the voice recording has stopped.")),
829
829
  "properties": {
830
830
  "sound": {
831
- "description": ( localize(4491, "Plays a sound when the voice recording has stopped.")),
831
+ "description": ( localize(4513, "Plays a sound when the voice recording has stopped.")),
832
832
  ...soundFeatureBase,
833
833
  default: "off"
834
834
  }
@@ -837,16 +837,16 @@ const configuration = {
837
837
  "accessibility.signals.clear": {
838
838
  ...signalFeatureBase,
839
839
  "description": ( localize(
840
- 4492,
840
+ 4514,
841
841
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
842
842
  )),
843
843
  "properties": {
844
844
  "sound": {
845
- "description": ( localize(4493, "Plays a sound when a feature is cleared.")),
845
+ "description": ( localize(4515, "Plays a sound when a feature is cleared.")),
846
846
  ...soundFeatureBase
847
847
  },
848
848
  "announcement": {
849
- "description": ( localize(4494, "Announces when a feature is cleared.")),
849
+ "description": ( localize(4516, "Announces when a feature is cleared.")),
850
850
  ...announcementFeatureBase
851
851
  }
852
852
  }
@@ -854,16 +854,16 @@ const configuration = {
854
854
  "accessibility.signals.editsUndone": {
855
855
  ...signalFeatureBase,
856
856
  "description": ( localize(
857
- 4495,
857
+ 4517,
858
858
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
859
859
  )),
860
860
  "properties": {
861
861
  "sound": {
862
- "description": ( localize(4496, "Plays a sound when edits have been undone.")),
862
+ "description": ( localize(4518, "Plays a sound when edits have been undone.")),
863
863
  ...soundFeatureBase
864
864
  },
865
865
  "announcement": {
866
- "description": ( localize(4497, "Announces when edits have been undone.")),
866
+ "description": ( localize(4519, "Announces when edits have been undone.")),
867
867
  ...announcementFeatureBase
868
868
  }
869
869
  }
@@ -871,16 +871,16 @@ const configuration = {
871
871
  "accessibility.signals.editsKept": {
872
872
  ...signalFeatureBase,
873
873
  "description": ( localize(
874
- 4498,
874
+ 4520,
875
875
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
876
876
  )),
877
877
  "properties": {
878
878
  "sound": {
879
- "description": ( localize(4499, "Plays a sound when edits are kept.")),
879
+ "description": ( localize(4521, "Plays a sound when edits are kept.")),
880
880
  ...soundFeatureBase
881
881
  },
882
882
  "announcement": {
883
- "description": ( localize(4500, "Announces when edits are kept.")),
883
+ "description": ( localize(4522, "Announces when edits are kept.")),
884
884
  ...announcementFeatureBase
885
885
  }
886
886
  }
@@ -890,23 +890,23 @@ const configuration = {
890
890
  "tags": ["accessibility"],
891
891
  additionalProperties: false,
892
892
  "markdownDescription": ( localize(
893
- 4501,
893
+ 4523,
894
894
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
895
895
  )),
896
896
  "properties": {
897
897
  "sound": {
898
- "description": ( localize(4502, "Plays a sound when a file is saved.")),
898
+ "description": ( localize(4524, "Plays a sound when a file is saved.")),
899
899
  "type": "string",
900
900
  "enum": ["userGesture", "always", "never"],
901
901
  "default": "never",
902
- "enumDescriptions": [( localize(4503, "Plays the sound when a user explicitly saves a file.")), ( localize(4504, "Plays the sound whenever a file is saved, including auto save.")), ( localize(4505, "Never plays the sound."))]
902
+ "enumDescriptions": [( localize(4525, "Plays the sound when a user explicitly saves a file.")), ( localize(4526, "Plays the sound whenever a file is saved, including auto save.")), ( localize(4527, "Never plays the sound."))]
903
903
  },
904
904
  "announcement": {
905
- "description": ( localize(4506, "Announces when a file is saved.")),
905
+ "description": ( localize(4528, "Announces when a file is saved.")),
906
906
  "type": "string",
907
907
  "enum": ["userGesture", "always", "never"],
908
908
  "default": "never",
909
- "enumDescriptions": [( localize(4507, "Announces when a user explicitly saves a file.")), ( localize(4508, "Announces whenever a file is saved, including auto save.")), ( localize(4509, "Never plays the announcement."))]
909
+ "enumDescriptions": [( localize(4529, "Announces when a user explicitly saves a file.")), ( localize(4530, "Announces whenever a file is saved, including auto save.")), ( localize(4531, "Never plays the announcement."))]
910
910
  }
911
911
  },
912
912
  default: {
@@ -919,29 +919,29 @@ const configuration = {
919
919
  "tags": ["accessibility"],
920
920
  additionalProperties: false,
921
921
  "markdownDescription": ( localize(
922
- 4510,
922
+ 4532,
923
923
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
924
924
  )),
925
925
  "properties": {
926
926
  "sound": {
927
- "description": ( localize(4511, "Plays a sound when a file or notebook is formatted.")),
927
+ "description": ( localize(4533, "Plays a sound when a file or notebook is formatted.")),
928
928
  "type": "string",
929
929
  "enum": ["userGesture", "always", "never"],
930
930
  "default": "never",
931
- "enumDescriptions": [( localize(4512, "Plays the sound when a user explicitly formats a file.")), ( localize(
932
- 4513,
931
+ "enumDescriptions": [( localize(4534, "Plays the sound when a user explicitly formats a file.")), ( localize(
932
+ 4535,
933
933
  "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."
934
- )), ( localize(4514, "Never plays the sound."))]
934
+ )), ( localize(4536, "Never plays the sound."))]
935
935
  },
936
936
  "announcement": {
937
- "description": ( localize(4515, "Announces when a file or notebook is formatted.")),
937
+ "description": ( localize(4537, "Announces when a file or notebook is formatted.")),
938
938
  "type": "string",
939
939
  "enum": ["userGesture", "always", "never"],
940
940
  "default": "never",
941
- "enumDescriptions": [( localize(4516, "Announces when a user explicitly formats a file.")), ( localize(
942
- 4517,
941
+ "enumDescriptions": [( localize(4538, "Announces when a user explicitly formats a file.")), ( localize(
942
+ 4539,
943
943
  "Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
944
- )), ( localize(4518, "Never announces."))]
944
+ )), ( localize(4540, "Never announces."))]
945
945
  }
946
946
  },
947
947
  default: {
@@ -952,19 +952,19 @@ const configuration = {
952
952
  "accessibility.signals.chatUserActionRequired": {
953
953
  ...signalFeatureBase,
954
954
  "markdownDescription": ( localize(
955
- 4519,
955
+ 4541,
956
956
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
957
957
  )),
958
958
  "properties": {
959
959
  "sound": {
960
- "description": ( localize(4520, "Plays a sound when user action is required in the chat.")),
960
+ "description": ( localize(4542, "Plays a sound when user action is required in the chat.")),
961
961
  "type": "string",
962
962
  "enum": ["auto", "on", "off"],
963
- "enumDescriptions": [( localize(4521, "Enable sound when a screen reader is attached.")), ( localize(4382, "Enable sound.")), ( localize(4383, "Disable sound."))]
963
+ "enumDescriptions": [( localize(4543, "Enable sound when a screen reader is attached.")), ( localize(4404, "Enable sound.")), ( localize(4405, "Disable sound."))]
964
964
  },
965
965
  "announcement": {
966
966
  "description": ( localize(
967
- 4522,
967
+ 4544,
968
968
  "Announces when a user action is required in the chat - including information about the action and how to take it."
969
969
  )),
970
970
  ...announcementFeatureBase
@@ -978,13 +978,13 @@ const configuration = {
978
978
  },
979
979
  "accessibility.underlineLinks": {
980
980
  "type": "boolean",
981
- "description": ( localize(4523, "Controls whether links should be underlined in the workbench.")),
981
+ "description": ( localize(4545, "Controls whether links should be underlined in the workbench.")),
982
982
  "default": false
983
983
  },
984
984
  "accessibility.debugWatchVariableAnnouncements": {
985
985
  "type": "boolean",
986
986
  "description": ( localize(
987
- 4524,
987
+ 4546,
988
988
  "Controls whether variable changes should be announced in the debug watch view."
989
989
  )),
990
990
  "default": true
@@ -992,7 +992,7 @@ const configuration = {
992
992
  "accessibility.replEditor.readLastExecutionOutput": {
993
993
  "type": "boolean",
994
994
  "description": ( localize(
995
- 4525,
995
+ 4547,
996
996
  "Controls whether the output from an execution in the native REPL will be announced."
997
997
  )),
998
998
  "default": true
@@ -1002,7 +1002,7 @@ const configuration = {
1002
1002
  enum: ["none", "input", "lastExecution"],
1003
1003
  default: "input",
1004
1004
  description: ( localize(
1005
- 4526,
1005
+ 4548,
1006
1006
  "Control whether focus should automatically be sent to the REPL when code is executed."
1007
1007
  ))
1008
1008
  },
@@ -1010,7 +1010,7 @@ const configuration = {
1010
1010
  "type": "boolean",
1011
1011
  "default": true,
1012
1012
  "markdownDescription": ( localize(
1013
- 4527,
1013
+ 4549,
1014
1014
  "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.",
1015
1015
  "`#window.title#`",
1016
1016
  "`activeEditorState`"
@@ -1020,7 +1020,7 @@ const configuration = {
1020
1020
  "type": "boolean",
1021
1021
  "default": false,
1022
1022
  "markdownDescription": ( localize(
1023
- 4528,
1023
+ 4550,
1024
1024
  "Controls whether files should be opened when the chat agent has applied edits to them."
1025
1025
  ))
1026
1026
  },
@@ -1028,7 +1028,7 @@ const configuration = {
1028
1028
  "type": "boolean",
1029
1029
  "default": true,
1030
1030
  "markdownDescription": ( localize(
1031
- 4529,
1031
+ 4551,
1032
1032
  "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>."
1033
1033
  ))
1034
1034
  }
@@ -1042,7 +1042,7 @@ function registerAccessibilityConfiguration() {
1042
1042
  properties: {
1043
1043
  [AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
1044
1044
  description: ( localize(
1045
- 4530,
1045
+ 4552,
1046
1046
  "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."
1047
1047
  )),
1048
1048
  type: "boolean",
@@ -1052,7 +1052,7 @@ function registerAccessibilityConfiguration() {
1052
1052
  },
1053
1053
  [AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
1054
1054
  markdownDescription: ( localize(
1055
- 4531,
1055
+ 4553,
1056
1056
  "The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.",
1057
1057
  `\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
1058
1058
  )),
@@ -1064,7 +1064,7 @@ function registerAccessibilityConfiguration() {
1064
1064
  scope: ConfigurationScope.APPLICATION
1065
1065
  },
1066
1066
  [AccessibilityWorkbenchSettingId.HideAccessibleView]: {
1067
- description: ( localize(4532, "Controls whether the Accessible View is hidden.")),
1067
+ description: ( localize(4554, "Controls whether the Accessible View is hidden.")),
1068
1068
  type: "boolean",
1069
1069
  default: false,
1070
1070
  tags: ["accessibility"]
@@ -1073,7 +1073,7 @@ function registerAccessibilityConfiguration() {
1073
1073
  "type": "boolean",
1074
1074
  "default": true,
1075
1075
  "markdownDescription": ( localize(
1076
- 4529,
1076
+ 4551,
1077
1077
  "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>."
1078
1078
  ))
1079
1079
  },
@@ -1082,7 +1082,7 @@ function registerAccessibilityConfiguration() {
1082
1082
  "default": false,
1083
1083
  "tags": ["accessibility"],
1084
1084
  "markdownDescription": ( localize(
1085
- 4533,
1085
+ 4555,
1086
1086
  "Controls whether checkmark icons are shown on completed tool calls and other collapsible items in chat responses."
1087
1087
  ))
1088
1088
  }
@@ -1116,7 +1116,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1116
1116
  properties: {
1117
1117
  [AccessibilityVoiceSettingId.SpeechTimeout]: {
1118
1118
  "markdownDescription": ( localize(
1119
- 4534,
1119
+ 4556,
1120
1120
  "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."
1121
1121
  )),
1122
1122
  "type": "number",
@@ -1125,14 +1125,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1125
1125
  "tags": ["accessibility"]
1126
1126
  },
1127
1127
  [AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
1128
- "markdownDescription": ( localize(4535, "Whether to ignore code snippets in text-to-speech synthesis.")),
1128
+ "markdownDescription": ( localize(4557, "Whether to ignore code snippets in text-to-speech synthesis.")),
1129
1129
  "type": "boolean",
1130
1130
  "default": false,
1131
1131
  "tags": ["accessibility"]
1132
1132
  },
1133
1133
  [AccessibilityVoiceSettingId.SpeechLanguage]: {
1134
1134
  "markdownDescription": ( localize(
1135
- 4536,
1135
+ 4558,
1136
1136
  "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."
1137
1137
  )),
1138
1138
  "type": "string",
@@ -1146,11 +1146,11 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1146
1146
  "type": "string",
1147
1147
  "enum": ["on", "off"],
1148
1148
  "enumDescriptions": [( localize(
1149
- 4537,
1149
+ 4559,
1150
1150
  "Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
1151
- )), ( localize(4538, "Disable the feature."))],
1151
+ )), ( localize(4560, "Disable the feature."))],
1152
1152
  "markdownDescription": ( localize(
1153
- 4539,
1153
+ 4561,
1154
1154
  "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."
1155
1155
  )),
1156
1156
  "default": "off",
@@ -1162,7 +1162,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1162
1162
  getLanguages() {
1163
1163
  return {
1164
1164
  ["auto"]: {
1165
- name: ( localize(4540, "Auto (Use Display Language)"))
1165
+ name: ( localize(4562, "Auto (Use Display Language)"))
1166
1166
  },
1167
1167
  ...SPEECH_LANGUAGES
1168
1168
  };