@codingame/monaco-vscode-api 29.1.1 → 30.0.0

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