@codingame/monaco-vscode-api 29.1.0 → 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
@@ -76,7 +76,7 @@ let LanguageConfigurationFileHandler = LanguageConfigurationFileHandler_1 = clas
76
76
  let configuration = parse(contents, errors);
77
77
  if (errors.length) {
78
78
  console.error(( localize(
79
- 7736,
79
+ 7801,
80
80
  "Errors parsing {0}: {1}",
81
81
  (configFileLocation.toString()),
82
82
  ( errors.map(e => (`[${e.offset}, ${e.length}] ${getParseErrorMessage(e.error)}`))).join("\n")
@@ -84,7 +84,7 @@ let LanguageConfigurationFileHandler = LanguageConfigurationFileHandler_1 = clas
84
84
  }
85
85
  if (getNodeType(configuration) !== "object") {
86
86
  console.error(( localize(
87
- 7737,
87
+ 7802,
88
88
  "{0}: Invalid format, JSON object expected.",
89
89
  (configFileLocation.toString())
90
90
  )));
@@ -532,11 +532,11 @@ const schema = {
532
532
  definitions: {
533
533
  openBracket: {
534
534
  type: "string",
535
- description: ( localize(7738, "The opening bracket character or string sequence."))
535
+ description: ( localize(7803, "The opening bracket character or string sequence."))
536
536
  },
537
537
  closeBracket: {
538
538
  type: "string",
539
- description: ( localize(7739, "The closing bracket character or string sequence."))
539
+ description: ( localize(7804, "The closing bracket character or string sequence."))
540
540
  },
541
541
  bracketPair: {
542
542
  type: "array",
@@ -556,32 +556,32 @@ const schema = {
556
556
  noIndent: false
557
557
  }
558
558
  },
559
- description: ( localize(7740, "Defines the comment symbols")),
559
+ description: ( localize(7805, "Defines the comment symbols")),
560
560
  type: "object",
561
561
  properties: {
562
562
  blockComment: {
563
563
  type: "array",
564
- description: ( localize(7741, "Defines how block comments are marked.")),
564
+ description: ( localize(7806, "Defines how block comments are marked.")),
565
565
  items: [{
566
566
  type: "string",
567
- description: ( localize(7742, "The character sequence that starts a block comment."))
567
+ description: ( localize(7807, "The character sequence that starts a block comment."))
568
568
  }, {
569
569
  type: "string",
570
- description: ( localize(7743, "The character sequence that ends a block comment."))
570
+ description: ( localize(7808, "The character sequence that ends a block comment."))
571
571
  }]
572
572
  },
573
573
  lineComment: {
574
574
  type: "object",
575
- description: ( localize(7744, "Configuration for line comments.")),
575
+ description: ( localize(7809, "Configuration for line comments.")),
576
576
  properties: {
577
577
  comment: {
578
578
  type: "string",
579
- description: ( localize(7745, "The character sequence that starts a line comment."))
579
+ description: ( localize(7810, "The character sequence that starts a line comment."))
580
580
  },
581
581
  noIndent: {
582
582
  type: "boolean",
583
583
  description: ( localize(
584
- 7746,
584
+ 7811,
585
585
  "Whether the comment token should not be indented and placed at the first column. Defaults to false."
586
586
  )),
587
587
  default: false
@@ -595,7 +595,7 @@ const schema = {
595
595
  brackets: {
596
596
  default: [["(", ")"], ["[", "]"], ["{", "}"]],
597
597
  markdownDescription: ( localize(
598
- 7747,
598
+ 7812,
599
599
  "Defines the bracket symbols that increase or decrease the indentation. When bracket pair colorization is enabled and {0} is not defined, this also defines the bracket pairs that are colorized by their nesting level.",
600
600
  "`colorizedBracketPairs`"
601
601
  )),
@@ -607,7 +607,7 @@ const schema = {
607
607
  colorizedBracketPairs: {
608
608
  default: [["(", ")"], ["[", "]"], ["{", "}"]],
609
609
  markdownDescription: ( localize(
610
- 7748,
610
+ 7813,
611
611
  "Defines the bracket pairs that are colorized by their nesting level if bracket pair colorization is enabled. Any brackets included here that are not included in {0} will be automatically included in {0}.",
612
612
  "`brackets`"
613
613
  )),
@@ -619,7 +619,7 @@ const schema = {
619
619
  autoClosingPairs: {
620
620
  default: [["(", ")"], ["[", "]"], ["{", "}"]],
621
621
  description: ( localize(
622
- 7749,
622
+ 7814,
623
623
  "Defines the bracket pairs. When a opening bracket is entered, the closing bracket is inserted automatically."
624
624
  )),
625
625
  type: "array",
@@ -637,7 +637,7 @@ const schema = {
637
637
  },
638
638
  notIn: {
639
639
  type: "array",
640
- description: ( localize(7750, "Defines a list of scopes where the auto pairs are disabled.")),
640
+ description: ( localize(7815, "Defines a list of scopes where the auto pairs are disabled.")),
641
641
  items: {
642
642
  enum: ["string", "comment"]
643
643
  }
@@ -649,7 +649,7 @@ const schema = {
649
649
  autoCloseBefore: {
650
650
  default: ";:.,=}])> \n\t",
651
651
  description: ( localize(
652
- 7751,
652
+ 7816,
653
653
  "Defines what characters must be after the cursor in order for bracket or quote autoclosing to occur when using the 'languageDefined' autoclosing setting. This is typically the set of characters which can not start an expression."
654
654
  )),
655
655
  type: "string"
@@ -657,7 +657,7 @@ const schema = {
657
657
  surroundingPairs: {
658
658
  default: [["(", ")"], ["[", "]"], ["{", "}"]],
659
659
  description: ( localize(
660
- 7752,
660
+ 7817,
661
661
  "Defines the bracket pairs that can be used to surround a selected string."
662
662
  )),
663
663
  type: "array",
@@ -680,22 +680,22 @@ const schema = {
680
680
  wordPattern: {
681
681
  default: "",
682
682
  description: ( localize(
683
- 7753,
683
+ 7818,
684
684
  "Defines what is considered to be a word in the programming language."
685
685
  )),
686
686
  type: ["string", "object"],
687
687
  properties: {
688
688
  pattern: {
689
689
  type: "string",
690
- description: ( localize(7754, "The RegExp pattern used to match words.")),
690
+ description: ( localize(7819, "The RegExp pattern used to match words.")),
691
691
  default: ""
692
692
  },
693
693
  flags: {
694
694
  type: "string",
695
- description: ( localize(7755, "The RegExp flags used to match words.")),
695
+ description: ( localize(7820, "The RegExp flags used to match words.")),
696
696
  default: "g",
697
697
  pattern: "^([gimuy]+)$",
698
- patternErrorMessage: ( localize(7756, "Must match the pattern `/^([gimuy]+)$/`."))
698
+ patternErrorMessage: ( localize(7821, "Must match the pattern `/^([gimuy]+)$/`."))
699
699
  }
700
700
  }
701
701
  },
@@ -704,90 +704,90 @@ const schema = {
704
704
  increaseIndentPattern: "",
705
705
  decreaseIndentPattern: ""
706
706
  },
707
- description: ( localize(7757, "The language's indentation settings.")),
707
+ description: ( localize(7822, "The language's indentation settings.")),
708
708
  type: "object",
709
709
  properties: {
710
710
  increaseIndentPattern: {
711
711
  type: ["string", "object"],
712
712
  description: ( localize(
713
- 7758,
713
+ 7823,
714
714
  "If a line matches this pattern, then all the lines after it should be indented once (until another rule matches)."
715
715
  )),
716
716
  properties: {
717
717
  pattern: {
718
718
  type: "string",
719
- description: ( localize(7759, "The RegExp pattern for increaseIndentPattern.")),
719
+ description: ( localize(7824, "The RegExp pattern for increaseIndentPattern.")),
720
720
  default: ""
721
721
  },
722
722
  flags: {
723
723
  type: "string",
724
- description: ( localize(7760, "The RegExp flags for increaseIndentPattern.")),
724
+ description: ( localize(7825, "The RegExp flags for increaseIndentPattern.")),
725
725
  default: "",
726
726
  pattern: "^([gimuy]+)$",
727
- patternErrorMessage: ( localize(7761, "Must match the pattern `/^([gimuy]+)$/`."))
727
+ patternErrorMessage: ( localize(7826, "Must match the pattern `/^([gimuy]+)$/`."))
728
728
  }
729
729
  }
730
730
  },
731
731
  decreaseIndentPattern: {
732
732
  type: ["string", "object"],
733
733
  description: ( localize(
734
- 7762,
734
+ 7827,
735
735
  "If a line matches this pattern, then all the lines after it should be unindented once (until another rule matches)."
736
736
  )),
737
737
  properties: {
738
738
  pattern: {
739
739
  type: "string",
740
- description: ( localize(7763, "The RegExp pattern for decreaseIndentPattern.")),
740
+ description: ( localize(7828, "The RegExp pattern for decreaseIndentPattern.")),
741
741
  default: ""
742
742
  },
743
743
  flags: {
744
744
  type: "string",
745
- description: ( localize(7764, "The RegExp flags for decreaseIndentPattern.")),
745
+ description: ( localize(7829, "The RegExp flags for decreaseIndentPattern.")),
746
746
  default: "",
747
747
  pattern: "^([gimuy]+)$",
748
- patternErrorMessage: ( localize(7765, "Must match the pattern `/^([gimuy]+)$/`."))
748
+ patternErrorMessage: ( localize(7830, "Must match the pattern `/^([gimuy]+)$/`."))
749
749
  }
750
750
  }
751
751
  },
752
752
  indentNextLinePattern: {
753
753
  type: ["string", "object"],
754
754
  description: ( localize(
755
- 7766,
755
+ 7831,
756
756
  "If a line matches this pattern, then **only the next line** after it should be indented once."
757
757
  )),
758
758
  properties: {
759
759
  pattern: {
760
760
  type: "string",
761
- description: ( localize(7767, "The RegExp pattern for indentNextLinePattern.")),
761
+ description: ( localize(7832, "The RegExp pattern for indentNextLinePattern.")),
762
762
  default: ""
763
763
  },
764
764
  flags: {
765
765
  type: "string",
766
- description: ( localize(7768, "The RegExp flags for indentNextLinePattern.")),
766
+ description: ( localize(7833, "The RegExp flags for indentNextLinePattern.")),
767
767
  default: "",
768
768
  pattern: "^([gimuy]+)$",
769
- patternErrorMessage: ( localize(7769, "Must match the pattern `/^([gimuy]+)$/`."))
769
+ patternErrorMessage: ( localize(7834, "Must match the pattern `/^([gimuy]+)$/`."))
770
770
  }
771
771
  }
772
772
  },
773
773
  unIndentedLinePattern: {
774
774
  type: ["string", "object"],
775
775
  description: ( localize(
776
- 7770,
776
+ 7835,
777
777
  "If a line matches this pattern, then its indentation should not be changed and it should not be evaluated against the other rules."
778
778
  )),
779
779
  properties: {
780
780
  pattern: {
781
781
  type: "string",
782
- description: ( localize(7771, "The RegExp pattern for unIndentedLinePattern.")),
782
+ description: ( localize(7836, "The RegExp pattern for unIndentedLinePattern.")),
783
783
  default: ""
784
784
  },
785
785
  flags: {
786
786
  type: "string",
787
- description: ( localize(7772, "The RegExp flags for unIndentedLinePattern.")),
787
+ description: ( localize(7837, "The RegExp flags for unIndentedLinePattern.")),
788
788
  default: "",
789
789
  pattern: "^([gimuy]+)$",
790
- patternErrorMessage: ( localize(7773, "Must match the pattern `/^([gimuy]+)$/`."))
790
+ patternErrorMessage: ( localize(7838, "Must match the pattern `/^([gimuy]+)$/`."))
791
791
  }
792
792
  }
793
793
  }
@@ -795,33 +795,33 @@ const schema = {
795
795
  },
796
796
  folding: {
797
797
  type: "object",
798
- description: ( localize(7774, "The language's folding settings.")),
798
+ description: ( localize(7839, "The language's folding settings.")),
799
799
  properties: {
800
800
  offSide: {
801
801
  type: "boolean",
802
802
  description: ( localize(
803
- 7775,
803
+ 7840,
804
804
  "A language adheres to the off-side rule if blocks in that language are expressed by their indentation. If set, empty lines belong to the subsequent block."
805
805
  ))
806
806
  },
807
807
  markers: {
808
808
  type: "object",
809
809
  description: ( localize(
810
- 7776,
810
+ 7841,
811
811
  "Language specific folding markers such as '#region' and '#endregion'. The start and end regexes will be tested against the contents of all lines and must be designed efficiently"
812
812
  )),
813
813
  properties: {
814
814
  start: {
815
815
  type: "string",
816
816
  description: ( localize(
817
- 7777,
817
+ 7842,
818
818
  "The RegExp pattern for the start marker. The regexp must start with '^'."
819
819
  ))
820
820
  },
821
821
  end: {
822
822
  type: "string",
823
823
  description: ( localize(
824
- 7778,
824
+ 7843,
825
825
  "The RegExp pattern for the end marker. The regexp must start with '^'."
826
826
  ))
827
827
  }
@@ -831,78 +831,78 @@ const schema = {
831
831
  },
832
832
  onEnterRules: {
833
833
  type: "array",
834
- description: ( localize(7779, "The language's rules to be evaluated when pressing Enter.")),
834
+ description: ( localize(7844, "The language's rules to be evaluated when pressing Enter.")),
835
835
  items: {
836
836
  type: "object",
837
- description: ( localize(7779, "The language's rules to be evaluated when pressing Enter.")),
837
+ description: ( localize(7844, "The language's rules to be evaluated when pressing Enter.")),
838
838
  required: ["beforeText", "action"],
839
839
  properties: {
840
840
  beforeText: {
841
841
  type: ["string", "object"],
842
842
  description: ( localize(
843
- 7780,
843
+ 7845,
844
844
  "This rule will only execute if the text before the cursor matches this regular expression."
845
845
  )),
846
846
  properties: {
847
847
  pattern: {
848
848
  type: "string",
849
- description: ( localize(7781, "The RegExp pattern for beforeText.")),
849
+ description: ( localize(7846, "The RegExp pattern for beforeText.")),
850
850
  default: ""
851
851
  },
852
852
  flags: {
853
853
  type: "string",
854
- description: ( localize(7782, "The RegExp flags for beforeText.")),
854
+ description: ( localize(7847, "The RegExp flags for beforeText.")),
855
855
  default: "",
856
856
  pattern: "^([gimuy]+)$",
857
- patternErrorMessage: ( localize(7783, "Must match the pattern `/^([gimuy]+)$/`."))
857
+ patternErrorMessage: ( localize(7848, "Must match the pattern `/^([gimuy]+)$/`."))
858
858
  }
859
859
  }
860
860
  },
861
861
  afterText: {
862
862
  type: ["string", "object"],
863
863
  description: ( localize(
864
- 7784,
864
+ 7849,
865
865
  "This rule will only execute if the text after the cursor matches this regular expression."
866
866
  )),
867
867
  properties: {
868
868
  pattern: {
869
869
  type: "string",
870
- description: ( localize(7785, "The RegExp pattern for afterText.")),
870
+ description: ( localize(7850, "The RegExp pattern for afterText.")),
871
871
  default: ""
872
872
  },
873
873
  flags: {
874
874
  type: "string",
875
- description: ( localize(7786, "The RegExp flags for afterText.")),
875
+ description: ( localize(7851, "The RegExp flags for afterText.")),
876
876
  default: "",
877
877
  pattern: "^([gimuy]+)$",
878
- patternErrorMessage: ( localize(7787, "Must match the pattern `/^([gimuy]+)$/`."))
878
+ patternErrorMessage: ( localize(7852, "Must match the pattern `/^([gimuy]+)$/`."))
879
879
  }
880
880
  }
881
881
  },
882
882
  previousLineText: {
883
883
  type: ["string", "object"],
884
884
  description: ( localize(
885
- 7788,
885
+ 7853,
886
886
  "This rule will only execute if the text above the line matches this regular expression."
887
887
  )),
888
888
  properties: {
889
889
  pattern: {
890
890
  type: "string",
891
- description: ( localize(7789, "The RegExp pattern for previousLineText.")),
891
+ description: ( localize(7854, "The RegExp pattern for previousLineText.")),
892
892
  default: ""
893
893
  },
894
894
  flags: {
895
895
  type: "string",
896
- description: ( localize(7790, "The RegExp flags for previousLineText.")),
896
+ description: ( localize(7855, "The RegExp flags for previousLineText.")),
897
897
  default: "",
898
898
  pattern: "^([gimuy]+)$",
899
- patternErrorMessage: ( localize(7791, "Must match the pattern `/^([gimuy]+)$/`."))
899
+ patternErrorMessage: ( localize(7856, "Must match the pattern `/^([gimuy]+)$/`."))
900
900
  }
901
901
  }
902
902
  },
903
903
  action: {
904
904
  type: ["string", "object"],
905
- description: ( localize(7792, "The action to execute.")),
905
+ description: ( localize(7857, "The action to execute.")),
906
906
  required: ["indent"],
907
907
  default: {
908
908
  "indent": "indent"
@@ -910,24 +910,24 @@ const schema = {
910
910
  properties: {
911
911
  indent: {
912
912
  type: "string",
913
- description: ( localize(7793, "Describe what to do with the indentation")),
913
+ description: ( localize(7858, "Describe what to do with the indentation")),
914
914
  default: "indent",
915
915
  enum: ["none", "indent", "indentOutdent", "outdent"],
916
- markdownEnumDescriptions: [( localize(7794, "Insert new line and copy the previous line's indentation.")), ( localize(
917
- 7795,
916
+ markdownEnumDescriptions: [( localize(7859, "Insert new line and copy the previous line's indentation.")), ( localize(
917
+ 7860,
918
918
  "Insert new line and indent once (relative to the previous line's indentation)."
919
919
  )), ( localize(
920
- 7796,
920
+ 7861,
921
921
  "Insert two new lines:\n - the first one indented which will hold the cursor\n - the second one at the same indentation level"
922
922
  )), ( localize(
923
- 7797,
923
+ 7862,
924
924
  "Insert new line and outdent once (relative to the previous line's indentation)."
925
925
  ))]
926
926
  },
927
927
  appendText: {
928
928
  type: "string",
929
929
  description: ( localize(
930
- 7798,
930
+ 7863,
931
931
  "Describes text to be appended after the new line and after the indentation."
932
932
  )),
933
933
  default: ""
@@ -935,7 +935,7 @@ const schema = {
935
935
  removeText: {
936
936
  type: "number",
937
937
  description: ( localize(
938
- 7799,
938
+ 7864,
939
939
  "Describes the number of characters to remove from the new line's indentation."
940
940
  )),
941
941
  default: 0
@@ -19,33 +19,33 @@ const resolvedCommentViewIcon = registerColor("commentsView.resolvedIcon", {
19
19
  light: disabledForeground,
20
20
  hcDark: contrastBorder,
21
21
  hcLight: contrastBorder
22
- }, ( localize(7805, "Icon color for resolved comments.")));
22
+ }, ( localize(7870, "Icon color for resolved comments.")));
23
23
  const unresolvedCommentViewIcon = registerColor("commentsView.unresolvedIcon", {
24
24
  dark: listFocusOutline,
25
25
  light: listFocusOutline,
26
26
  hcDark: contrastBorder,
27
27
  hcLight: contrastBorder
28
- }, ( localize(7806, "Icon color for unresolved comments.")));
28
+ }, ( localize(7871, "Icon color for unresolved comments.")));
29
29
  registerColor(
30
30
  "editorCommentsWidget.replyInputBackground",
31
31
  peekViewTitleBackground,
32
- ( localize(7807, "Background color for comment reply input box."))
32
+ ( localize(7872, "Background color for comment reply input box."))
33
33
  );
34
34
  const resolvedCommentBorder = registerColor("editorCommentsWidget.resolvedBorder", {
35
35
  dark: resolvedCommentViewIcon,
36
36
  light: resolvedCommentViewIcon,
37
37
  hcDark: contrastBorder,
38
38
  hcLight: contrastBorder
39
- }, ( localize(7808, "Color of borders and arrow for resolved comments.")));
39
+ }, ( localize(7873, "Color of borders and arrow for resolved comments.")));
40
40
  const unresolvedCommentBorder = registerColor("editorCommentsWidget.unresolvedBorder", {
41
41
  dark: unresolvedCommentViewIcon,
42
42
  light: unresolvedCommentViewIcon,
43
43
  hcDark: contrastBorder,
44
44
  hcLight: contrastBorder
45
- }, ( localize(7809, "Color of borders and arrow for unresolved comments.")));
46
- registerColor("editorCommentsWidget.rangeBackground", ( transparent(unresolvedCommentBorder, .1)), ( localize(7810, "Color of background for comment ranges.")));
45
+ }, ( localize(7874, "Color of borders and arrow for unresolved comments.")));
46
+ registerColor("editorCommentsWidget.rangeBackground", ( transparent(unresolvedCommentBorder, .1)), ( localize(7875, "Color of background for comment ranges.")));
47
47
  registerColor("editorCommentsWidget.rangeActiveBackground", ( transparent(unresolvedCommentBorder, .1)), ( localize(
48
- 7811,
48
+ 7876,
49
49
  "Color of background for currently selected or hovered comment range."
50
50
  )));
51
51
  const commentThreadStateBorderColors = ( new Map([
@@ -26,14 +26,14 @@ const overviewRulerCommentingRangeForeground = registerColor("editorGutter.comme
26
26
  hcDark: Color.white,
27
27
  hcLight: Color.black
28
28
  }, ( localize(
29
- 7812,
29
+ 7877,
30
30
  "Editor gutter decoration color for commenting ranges. This color should be opaque."
31
31
  )));
32
32
  const overviewRulerCommentForeground = registerColor(
33
33
  "editorOverviewRuler.commentForeground",
34
34
  overviewRulerCommentingRangeForeground,
35
35
  ( localize(
36
- 7813,
36
+ 7878,
37
37
  "Editor overview ruler decoration color for resolved comments. This color should be opaque."
38
38
  ))
39
39
  );
@@ -41,7 +41,7 @@ const overviewRulerCommentUnresolvedForeground = registerColor(
41
41
  "editorOverviewRuler.commentUnresolvedForeground",
42
42
  overviewRulerCommentForeground,
43
43
  ( localize(
44
- 7814,
44
+ 7879,
45
45
  "Editor overview ruler decoration color for unresolved comments. This color should be opaque."
46
46
  ))
47
47
  );
@@ -49,7 +49,7 @@ const overviewRulerCommentDraftForeground = registerColor(
49
49
  "editorOverviewRuler.commentDraftForeground",
50
50
  overviewRulerCommentUnresolvedForeground,
51
51
  ( localize(
52
- 7815,
52
+ 7880,
53
53
  "Editor overview ruler decoration color for comment threads with draft comments. This color should be opaque."
54
54
  ))
55
55
  );
@@ -58,12 +58,12 @@ const editorGutterCommentGlyphForeground = registerColor("editorGutter.commentGl
58
58
  light: editorForeground,
59
59
  hcDark: Color.black,
60
60
  hcLight: Color.white
61
- }, ( localize(7816, "Editor gutter decoration color for commenting glyphs.")));
61
+ }, ( localize(7881, "Editor gutter decoration color for commenting glyphs.")));
62
62
  registerColor(
63
63
  "editorGutter.commentUnresolvedGlyphForeground",
64
64
  editorGutterCommentGlyphForeground,
65
65
  ( localize(
66
- 7817,
66
+ 7882,
67
67
  "Editor gutter decoration color for commenting glyphs for unresolved comment threads."
68
68
  ))
69
69
  );
@@ -71,7 +71,7 @@ registerColor(
71
71
  "editorGutter.commentDraftGlyphForeground",
72
72
  editorGutterCommentGlyphForeground,
73
73
  ( localize(
74
- 7818,
74
+ 7883,
75
75
  "Editor gutter decoration color for commenting glyphs for comment threads with draft comments."
76
76
  ))
77
77
  );
@@ -347,7 +347,7 @@ let CommentNode = class CommentNode extends Disposable {
347
347
  createReactionPicker(reactionGroup) {
348
348
  const toggleReactionAction = this._reactionActions.add(( new ToggleReactionsAction(() => {
349
349
  toggleReactionActionViewItem?.show();
350
- }, ( localize(7819, "Toggle Reaction")))));
350
+ }, ( localize(7884, "Toggle Reaction")))));
351
351
  let reactionMenuActions = [];
352
352
  if (reactionGroup && reactionGroup.length) {
353
353
  reactionMenuActions = ( reactionGroup.map(reaction => {
@@ -360,7 +360,7 @@ let CommentNode = class CommentNode extends Disposable {
360
360
  try {
361
361
  await this.commentService.toggleReaction(this.owner, this.resource, this.commentThread, this.comment, reaction);
362
362
  } catch (e) {
363
- const error = e.message ? ( localize(7820, "Toggling the comment reaction failed: {0}.", e.message)) : ( localize(7821, "Toggling the comment reaction failed"));
363
+ const error = e.message ? ( localize(7885, "Toggling the comment reaction failed: {0}.", e.message)) : ( localize(7886, "Toggling the comment reaction failed"));
364
364
  this.notificationService.error(error);
365
365
  }
366
366
  }
@@ -212,7 +212,7 @@ let CommentReply = class CommentReply extends Disposable {
212
212
  }
213
213
  setCommentEditorDecorations() {
214
214
  const hasExistingComments = this._commentThread.comments && this._commentThread.comments.length > 0;
215
- const placeholder = hasExistingComments ? (this._commentOptions?.placeHolder || ( localize(7822, "Reply..."))) : (this._commentOptions?.placeHolder || ( localize(7823, "Type a new comment")));
215
+ const placeholder = hasExistingComments ? (this._commentOptions?.placeHolder || ( localize(7887, "Reply..."))) : (this._commentOptions?.placeHolder || ( localize(7888, "Type a new comment")));
216
216
  this.commentEditor.updateOptions({
217
217
  placeholder
218
218
  });
@@ -349,9 +349,9 @@ let CommentReply = class CommentReply extends Disposable {
349
349
  this._register(this.hoverService.setupManagedHover(
350
350
  getDefaultHoverDelegate("mouse"),
351
351
  this._reviewThreadReplyButton,
352
- this._commentOptions?.prompt || ( localize(7822, "Reply..."))
352
+ this._commentOptions?.prompt || ( localize(7887, "Reply..."))
353
353
  ));
354
- this._reviewThreadReplyButton.textContent = this._commentOptions?.prompt || ( localize(7822, "Reply..."));
354
+ this._reviewThreadReplyButton.textContent = this._commentOptions?.prompt || ( localize(7887, "Reply..."));
355
355
  this._register(addDisposableListener(
356
356
  this._reviewThreadReplyButton,
357
357
  "click",
@@ -220,7 +220,7 @@ let CommentThreadBody = class CommentThreadBody extends Disposable {
220
220
  if (this._commentThread.isDocumentCommentThread()) {
221
221
  if (this._commentThread.range) {
222
222
  this._commentsElement.ariaLabel = ( localize(
223
- 7824,
223
+ 7889,
224
224
  "Comment thread with {0} comments on lines {1} through {2}. {3}.",
225
225
  this._commentThread.comments?.length,
226
226
  this._commentThread.range.startLineNumber,
@@ -229,7 +229,7 @@ let CommentThreadBody = class CommentThreadBody extends Disposable {
229
229
  ));
230
230
  } else {
231
231
  this._commentsElement.ariaLabel = ( localize(
232
- 7825,
232
+ 7890,
233
233
  "Comment thread with {0} comments on the entire document. {1}.",
234
234
  this._commentThread.comments?.length,
235
235
  this._commentThread.label
@@ -237,7 +237,7 @@ let CommentThreadBody = class CommentThreadBody extends Disposable {
237
237
  }
238
238
  } else {
239
239
  this._commentsElement.ariaLabel = ( localize(
240
- 7826,
240
+ 7891,
241
241
  "Comment thread with {0} comments. {1}.",
242
242
  this._commentThread.comments?.length,
243
243
  this._commentThread.label
@@ -17,7 +17,7 @@ import { MarshalledId } from '../../../../base/common/marshallingIds.js';
17
17
  import { StandardMouseEvent } from '../../../../base/browser/mouseEvent.js';
18
18
  import { CommentCommandId } from '../common/commentCommandIds.js';
19
19
 
20
- const collapseIcon = registerIcon("review-comment-collapse", Codicon.chevronUp, ( localize(7827, "Icon to collapse a review comment.")));
20
+ const collapseIcon = registerIcon("review-comment-collapse", Codicon.chevronUp, ( localize(7892, "Icon to collapse a review comment.")));
21
21
  const COLLAPSE_ACTION_CLASS = "expand-review-action " + ThemeIcon.asClassName(collapseIcon);
22
22
  const DELETE_ACTION_CLASS = "expand-review-action " + ThemeIcon.asClassName(Codicon.trashcan);
23
23
  function threadHasComments(comments) {
@@ -55,7 +55,7 @@ let CommentThreadHeader = class CommentThreadHeader extends Disposable {
55
55
  }));
56
56
  this._register(this._actionbarWidget);
57
57
  const collapseClass = threadHasComments(this._commentThread.comments) ? COLLAPSE_ACTION_CLASS : DELETE_ACTION_CLASS;
58
- this._collapseAction = ( new Action(CommentCommandId.Hide, ( localize(7828, "Collapse")), collapseClass, true, () => this._delegate.collapse()));
58
+ this._collapseAction = ( new Action(CommentCommandId.Hide, ( localize(7893, "Collapse")), collapseClass, true, () => this._delegate.collapse()));
59
59
  if (!threadHasComments(this._commentThread.comments)) {
60
60
  const commentsChanged = this._register(( new MutableDisposable()));
61
61
  commentsChanged.value = this._commentThread.onDidChangeComments(() => {
@@ -99,7 +99,7 @@ let CommentThreadHeader = class CommentThreadHeader extends Disposable {
99
99
  label = this._commentThread.label;
100
100
  if (label === undefined) {
101
101
  if (!(this._commentThread.comments && this._commentThread.comments.length)) {
102
- label = ( localize(7829, "Start discussion"));
102
+ label = ( localize(7894, "Start discussion"));
103
103
  }
104
104
  }
105
105
  if (label) {