@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
@@ -18,26 +18,26 @@ import { IUserDataProfilesService } from '../../platform/userDataProfile/common/
18
18
  const workbenchConfigurationNodeBase = ( Object.freeze({
19
19
  "id": "workbench",
20
20
  "order": 7,
21
- "title": ( localize(4071, "Workbench")),
21
+ "title": ( localize(4070, "Workbench")),
22
22
  "type": "object"
23
23
  }));
24
24
  const securityConfigurationNodeBase = ( Object.freeze({
25
25
  "id": "security",
26
26
  "scope": ConfigurationScope.APPLICATION,
27
- "title": ( localize(4072, "Security")),
27
+ "title": ( localize(4071, "Security")),
28
28
  "type": "object",
29
29
  "order": 7
30
30
  }));
31
31
  const problemsConfigurationNodeBase = ( Object.freeze({
32
32
  "id": "problems",
33
- "title": ( localize(4073, "Problems")),
33
+ "title": ( localize(4072, "Problems")),
34
34
  "type": "object",
35
35
  "order": 101
36
36
  }));
37
37
  const windowConfigurationNodeBase = ( Object.freeze({
38
38
  "id": "window",
39
39
  "order": 8,
40
- "title": ( localize(4074, "Window")),
40
+ "title": ( localize(4073, "Window")),
41
41
  "type": "object"
42
42
  }));
43
43
  const Extensions = {
@@ -190,11 +190,11 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
190
190
  "items": {
191
191
  "type": "string",
192
192
  "pattern": "^[^\\\\]+$",
193
- "patternErrorMessage": ( localize(4075, "UNC host names must not contain backslashes."))
193
+ "patternErrorMessage": ( localize(4074, "UNC host names must not contain backslashes."))
194
194
  },
195
195
  "default": [],
196
196
  "markdownDescription": ( localize(
197
- 4076,
197
+ 4075,
198
198
  "A set of UNC host names (without leading or trailing backslash, for example `192.168.0.1` or `my-server`) to allow without user confirmation. If a UNC host is being accessed that is not allowed via this setting or has not been acknowledged via user confirmation, an error will occur and the operation stopped. A restart is required when changing this setting. Find out more about this setting at https://aka.ms/vscode-windows-unc."
199
199
  )),
200
200
  "scope": ConfigurationScope.APPLICATION_MACHINE
@@ -203,7 +203,7 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
203
203
  "type": "boolean",
204
204
  "default": true,
205
205
  "markdownDescription": ( localize(
206
- 4077,
206
+ 4076,
207
207
  "If enabled, only allows access to UNC host names that are allowed by the `#security.allowedUNCHosts#` setting or after user confirmation. Find out more about this setting at https://aka.ms/vscode-windows-unc."
208
208
  )),
209
209
  "scope": ConfigurationScope.APPLICATION_MACHINE
@@ -246,9 +246,9 @@ let DynamicWindowConfiguration = class DynamicWindowConfiguration extends Dispos
246
246
  "type": ["string", "null"],
247
247
  "default": null,
248
248
  "enum": [...( this.userDataProfilesService.profiles.map(profile => profile.name)), null],
249
- "enumItemLabels": [...( this.userDataProfilesService.profiles.map(() => "")), ( localize(4078, "Active Window"))],
249
+ "enumItemLabels": [...( this.userDataProfilesService.profiles.map(() => "")), ( localize(4077, "Active Window"))],
250
250
  "description": ( localize(
251
- 4079,
251
+ 4078,
252
252
  "Specifies the profile to use when opening a new window. If a profile name is provided, the new window will use that profile. If no profile name is provided, the new window will use the profile of the active window or the Default profile if no active window exists."
253
253
  )),
254
254
  "scope": ConfigurationScope.APPLICATION
@@ -16,114 +16,114 @@ var AbstractResourceContextKey_1;
16
16
  const WorkbenchStateContext = ( new RawContextKey("workbenchState", undefined, {
17
17
  type: "string",
18
18
  description: ( localize(
19
- 4080,
19
+ 4079,
20
20
  "The kind of workspace opened in the window, either 'empty' (no workspace), 'folder' (single folder) or 'workspace' (multi-root workspace)"
21
21
  ))
22
22
  }));
23
- const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(4081, "The number of root folders in the workspace"))));
23
+ const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(4080, "The number of root folders in the workspace"))));
24
24
  const OpenFolderWorkspaceSupportContext = ( new RawContextKey("openFolderWorkspaceSupport", true, true));
25
25
  const EnterMultiRootWorkspaceSupportContext = ( new RawContextKey("enterMultiRootWorkspaceSupport", true, true));
26
26
  const EmptyWorkspaceSupportContext = ( new RawContextKey("emptyWorkspaceSupport", true, true));
27
- const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(4082, "Whether there are any working copies with unsaved changes"))));
27
+ const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(4081, "Whether there are any working copies with unsaved changes"))));
28
28
  const RemoteNameContext = ( new RawContextKey("remoteName", "", ( localize(
29
- 4083,
29
+ 4082,
30
30
  "The name of the remote the window is connected to or an empty string if not connected to any remote"
31
31
  ))));
32
32
  const VirtualWorkspaceContext = ( new RawContextKey("virtualWorkspace", "", ( localize(
33
- 4084,
33
+ 4083,
34
34
  "The scheme of the current workspace is from a virtual file system or an empty string."
35
35
  ))));
36
36
  const TemporaryWorkspaceContext = ( new RawContextKey("temporaryWorkspace", false, ( localize(
37
- 4085,
37
+ 4084,
38
38
  "The scheme of the current workspace is from a temporary file system."
39
39
  ))));
40
- const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(4086, "Whether the current window is a sessions window."))));
40
+ const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(4085, "Whether the current window is a sessions window."))));
41
41
  const HasWebFileSystemAccess = ( new RawContextKey("hasWebFileSystemAccess", false, true));
42
42
  const EmbedderIdentifierContext = ( new RawContextKey("embedderIdentifier", undefined, ( localize(
43
- 4087,
43
+ 4086,
44
44
  "The identifier of the embedder according to the product service, if one is defined"
45
45
  ))));
46
- const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(4088, "Whether VS Code is running under automation/smoke test"))));
46
+ const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(4087, "Whether VS Code is running under automation/smoke test"))));
47
47
  const IsSandboxWorkspaceContext = ( new RawContextKey("isSandboxWorkspace", false, true));
48
- const IsMainWindowFullscreenContext = ( new RawContextKey("isFullscreen", false, ( localize(4089, "Whether the main window is in fullscreen mode"))));
49
- const IsAuxiliaryWindowFocusedContext = ( new RawContextKey("isAuxiliaryWindowFocusedContext", false, ( localize(4090, "Whether an auxiliary window is focused"))));
50
- const IsAuxiliaryWindowContext = ( new RawContextKey("isAuxiliaryWindow", false, ( localize(4091, "Window is an auxiliary window"))));
51
- const ActiveEditorDirtyContext = ( new RawContextKey("activeEditorIsDirty", false, ( localize(4092, "Whether the active editor has unsaved changes"))));
52
- const ActiveEditorPinnedContext = ( new RawContextKey("activeEditorIsNotPreview", false, ( localize(4093, "Whether the active editor is not in preview mode"))));
53
- const ActiveEditorFirstInGroupContext = ( new RawContextKey("activeEditorIsFirstInGroup", false, ( localize(4094, "Whether the active editor is the first one in its group"))));
54
- const ActiveEditorLastInGroupContext = ( new RawContextKey("activeEditorIsLastInGroup", false, ( localize(4095, "Whether the active editor is the last one in its group"))));
55
- const ActiveEditorStickyContext = ( new RawContextKey("activeEditorIsPinned", false, ( localize(4096, "Whether the active editor is pinned"))));
56
- const ActiveEditorReadonlyContext = ( new RawContextKey("activeEditorIsReadonly", false, ( localize(4097, "Whether the active editor is read-only"))));
57
- const ActiveCompareEditorCanSwapContext = ( new RawContextKey("activeCompareEditorCanSwap", false, ( localize(4098, "Whether the active compare editor can swap sides"))));
48
+ const IsMainWindowFullscreenContext = ( new RawContextKey("isFullscreen", false, ( localize(4088, "Whether the main window is in fullscreen mode"))));
49
+ const IsAuxiliaryWindowFocusedContext = ( new RawContextKey("isAuxiliaryWindowFocusedContext", false, ( localize(4089, "Whether an auxiliary window is focused"))));
50
+ const IsAuxiliaryWindowContext = ( new RawContextKey("isAuxiliaryWindow", false, ( localize(4090, "Window is an auxiliary window"))));
51
+ const ActiveEditorDirtyContext = ( new RawContextKey("activeEditorIsDirty", false, ( localize(4091, "Whether the active editor has unsaved changes"))));
52
+ const ActiveEditorPinnedContext = ( new RawContextKey("activeEditorIsNotPreview", false, ( localize(4092, "Whether the active editor is not in preview mode"))));
53
+ const ActiveEditorFirstInGroupContext = ( new RawContextKey("activeEditorIsFirstInGroup", false, ( localize(4093, "Whether the active editor is the first one in its group"))));
54
+ const ActiveEditorLastInGroupContext = ( new RawContextKey("activeEditorIsLastInGroup", false, ( localize(4094, "Whether the active editor is the last one in its group"))));
55
+ const ActiveEditorStickyContext = ( new RawContextKey("activeEditorIsPinned", false, ( localize(4095, "Whether the active editor is pinned"))));
56
+ const ActiveEditorReadonlyContext = ( new RawContextKey("activeEditorIsReadonly", false, ( localize(4096, "Whether the active editor is read-only"))));
57
+ const ActiveCompareEditorCanSwapContext = ( new RawContextKey("activeCompareEditorCanSwap", false, ( localize(4097, "Whether the active compare editor can swap sides"))));
58
58
  const ActiveEditorCanToggleReadonlyContext = ( new RawContextKey("activeEditorCanToggleReadonly", true, ( localize(
59
- 4099,
59
+ 4098,
60
60
  "Whether the active editor can toggle between being read-only or writeable"
61
61
  ))));
62
- const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(4100, "Whether the active editor can revert"))));
62
+ const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(4099, "Whether the active editor can revert"))));
63
63
  const ActiveEditorCanSplitInGroupContext = ( new RawContextKey("activeEditorCanSplitInGroup", true));
64
64
  const ActiveEditorContext = ( new RawContextKey("activeEditor", null, {
65
65
  type: "string",
66
- description: ( localize(4101, "The identifier of the active editor"))
66
+ description: ( localize(4100, "The identifier of the active editor"))
67
67
  }));
68
68
  const ActiveEditorAvailableEditorIdsContext = ( new RawContextKey("activeEditorAvailableEditorIds", "", ( localize(
69
- 4102,
69
+ 4101,
70
70
  "The available editor identifiers that are usable for the active editor"
71
71
  ))));
72
- const TextCompareEditorVisibleContext = ( new RawContextKey("textCompareEditorVisible", false, ( localize(4103, "Whether a text compare editor is visible"))));
73
- const TextCompareEditorActiveContext = ( new RawContextKey("textCompareEditorActive", false, ( localize(4104, "Whether a text compare editor is active"))));
74
- const SideBySideEditorActiveContext = ( new RawContextKey("sideBySideEditorActive", false, ( localize(4105, "Whether a side by side editor is active"))));
75
- const EditorGroupEditorsCountContext = ( new RawContextKey("groupEditorsCount", 0, ( localize(4106, "The number of opened editor groups"))));
76
- const ActiveEditorGroupEmptyContext = ( new RawContextKey("activeEditorGroupEmpty", false, ( localize(4107, "Whether the active editor group is empty"))));
77
- const ActiveEditorGroupIndexContext = ( new RawContextKey("activeEditorGroupIndex", 0, ( localize(4108, "The index of the active editor group"))));
78
- const ActiveEditorGroupLastContext = ( new RawContextKey("activeEditorGroupLast", false, ( localize(4109, "Whether the active editor group is the last group"))));
79
- const ActiveEditorGroupLockedContext = ( new RawContextKey("activeEditorGroupLocked", false, ( localize(4110, "Whether the active editor group is locked"))));
80
- const MultipleEditorGroupsContext = ( new RawContextKey("multipleEditorGroups", false, ( localize(4111, "Whether there are multiple editor groups opened"))));
81
- const MultipleEditorsSelectedInGroupContext = ( new RawContextKey("multipleEditorsSelectedInGroup", false, ( localize(4112, "Whether multiple editors have been selected in an editor group"))));
82
- const TwoEditorsSelectedInGroupContext = ( new RawContextKey("twoEditorsSelectedInGroup", false, ( localize(4113, "Whether exactly two editors have been selected in an editor group"))));
72
+ const TextCompareEditorVisibleContext = ( new RawContextKey("textCompareEditorVisible", false, ( localize(4102, "Whether a text compare editor is visible"))));
73
+ const TextCompareEditorActiveContext = ( new RawContextKey("textCompareEditorActive", false, ( localize(4103, "Whether a text compare editor is active"))));
74
+ const SideBySideEditorActiveContext = ( new RawContextKey("sideBySideEditorActive", false, ( localize(4104, "Whether a side by side editor is active"))));
75
+ const EditorGroupEditorsCountContext = ( new RawContextKey("groupEditorsCount", 0, ( localize(4105, "The number of opened editor groups"))));
76
+ const ActiveEditorGroupEmptyContext = ( new RawContextKey("activeEditorGroupEmpty", false, ( localize(4106, "Whether the active editor group is empty"))));
77
+ const ActiveEditorGroupIndexContext = ( new RawContextKey("activeEditorGroupIndex", 0, ( localize(4107, "The index of the active editor group"))));
78
+ const ActiveEditorGroupLastContext = ( new RawContextKey("activeEditorGroupLast", false, ( localize(4108, "Whether the active editor group is the last group"))));
79
+ const ActiveEditorGroupLockedContext = ( new RawContextKey("activeEditorGroupLocked", false, ( localize(4109, "Whether the active editor group is locked"))));
80
+ const MultipleEditorGroupsContext = ( new RawContextKey("multipleEditorGroups", false, ( localize(4110, "Whether there are multiple editor groups opened"))));
81
+ const MultipleEditorsSelectedInGroupContext = ( new RawContextKey("multipleEditorsSelectedInGroup", false, ( localize(4111, "Whether multiple editors have been selected in an editor group"))));
82
+ const TwoEditorsSelectedInGroupContext = ( new RawContextKey("twoEditorsSelectedInGroup", false, ( localize(4112, "Whether exactly two editors have been selected in an editor group"))));
83
83
  const SelectedEditorsInGroupFileOrUntitledResourceContextKey = ( new RawContextKey(
84
84
  "SelectedEditorsInGroupFileOrUntitledResourceContextKey",
85
85
  true,
86
86
  ( localize(
87
- 4114,
87
+ 4113,
88
88
  "Whether all selected editors in a group have a file or untitled resource associated"
89
89
  ))
90
90
  ));
91
- const EditorPartMultipleEditorGroupsContext = ( new RawContextKey("editorPartMultipleEditorGroups", false, ( localize(4115, "Whether there are multiple editor groups opened in an editor part"))));
92
- const EditorPartMaximizedEditorGroupContext = ( new RawContextKey("editorPartMaximizedEditorGroup", false, ( localize(4116, "Editor Part has a maximized group"))));
93
- const EditorPartModalContext = ( new RawContextKey("editorPartModal", false, ( localize(4117, "Whether focus is in a modal editor part"))));
94
- const EditorPartModalMaximizedContext = ( new RawContextKey("editorPartModalMaximized", false, ( localize(4118, "Whether the modal editor part is maximized"))));
95
- const EditorPartModalNavigationContext = ( new RawContextKey("editorPartModalNavigation", false, ( localize(4119, "Whether the modal editor part has navigation context"))));
96
- const EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(4120, "Whether an editor is open"))));
97
- const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(4121, "Whether Zen mode is enabled"))));
98
- const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(4122, "Whether centered layout is enabled for the main editor"))));
99
- const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(4123, "Whether editors split vertically"))));
100
- const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(4124, "Whether the editor area in the main window is visible"))));
101
- const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(4125, "Whether editor tabs are visible"))));
102
- const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(4126, "Whether the sidebar is visible"))));
103
- const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(4127, "Whether the sidebar has keyboard focus"))));
104
- const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(4128, "The identifier of the active viewlet"))));
105
- const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(4129, "Whether the status bar has keyboard focus"))));
106
- const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(4130, "Style of the window title bar"))));
107
- const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(4131, "Whether the title bar is visible"))));
108
- const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(4132, "Title bar is in compact mode"))));
109
- const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(4133, "Whether the banner has keyboard focus"))));
110
- const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(4134, "Whether a notification has keyboard focus"))));
111
- const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(4135, "Whether the notifications center is visible"))));
112
- const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(4136, "Whether a notification toast is visible"))));
113
- const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(4137, "The identifier of the active auxiliary panel"))));
114
- const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(4138, "Whether the auxiliary bar has keyboard focus"))));
115
- const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(4139, "Whether the auxiliary bar is visible"))));
116
- const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(4140, "Whether the auxiliary bar is maximized"))));
117
- const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(4141, "The identifier of the active panel"))));
118
- const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(4142, "Whether the panel has keyboard focus"))));
119
- const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(4143, "The position of the panel, always 'bottom'"))));
91
+ const EditorPartMultipleEditorGroupsContext = ( new RawContextKey("editorPartMultipleEditorGroups", false, ( localize(4114, "Whether there are multiple editor groups opened in an editor part"))));
92
+ const EditorPartMaximizedEditorGroupContext = ( new RawContextKey("editorPartMaximizedEditorGroup", false, ( localize(4115, "Editor Part has a maximized group"))));
93
+ const EditorPartModalContext = ( new RawContextKey("editorPartModal", false, ( localize(4116, "Whether focus is in a modal editor part"))));
94
+ const EditorPartModalMaximizedContext = ( new RawContextKey("editorPartModalMaximized", false, ( localize(4117, "Whether the modal editor part is maximized"))));
95
+ const EditorPartModalNavigationContext = ( new RawContextKey("editorPartModalNavigation", false, ( localize(4118, "Whether the modal editor part has navigation context"))));
96
+ const EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(4119, "Whether an editor is open"))));
97
+ const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(4120, "Whether Zen mode is enabled"))));
98
+ const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(4121, "Whether centered layout is enabled for the main editor"))));
99
+ const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(4122, "Whether editors split vertically"))));
100
+ const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(4123, "Whether the editor area in the main window is visible"))));
101
+ const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(4124, "Whether editor tabs are visible"))));
102
+ const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(4125, "Whether the sidebar is visible"))));
103
+ const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(4126, "Whether the sidebar has keyboard focus"))));
104
+ const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(4127, "The identifier of the active viewlet"))));
105
+ const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(4128, "Whether the status bar has keyboard focus"))));
106
+ const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(4129, "Style of the window title bar"))));
107
+ const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(4130, "Whether the title bar is visible"))));
108
+ const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(4131, "Title bar is in compact mode"))));
109
+ const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(4132, "Whether the banner has keyboard focus"))));
110
+ const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(4133, "Whether a notification has keyboard focus"))));
111
+ const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(4134, "Whether the notifications center is visible"))));
112
+ const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(4135, "Whether a notification toast is visible"))));
113
+ const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(4136, "The identifier of the active auxiliary panel"))));
114
+ const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(4137, "Whether the auxiliary bar has keyboard focus"))));
115
+ const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(4138, "Whether the auxiliary bar is visible"))));
116
+ const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(4139, "Whether the auxiliary bar is maximized"))));
117
+ const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(4140, "The identifier of the active panel"))));
118
+ const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(4141, "Whether the panel has keyboard focus"))));
119
+ const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(4142, "The position of the panel, always 'bottom'"))));
120
120
  const PanelAlignmentContext = ( new RawContextKey("panelAlignment", "center", ( localize(
121
- 4144,
121
+ 4143,
122
122
  "The alignment of the panel, either 'center', 'left', 'right' or 'justify'"
123
123
  ))));
124
- const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(4145, "Whether the panel is visible"))));
125
- const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(4146, "Whether the panel is maximized"))));
126
- const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(4147, "The identifier of the view that has keyboard focus"))));
124
+ const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(4144, "Whether the panel is visible"))));
125
+ const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(4145, "Whether the panel is maximized"))));
126
+ const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(4146, "The identifier of the view that has keyboard focus"))));
127
127
  function getVisbileViewContextKey(viewId) {
128
128
  return `view.${viewId}.visible`;
129
129
  }
@@ -134,55 +134,55 @@ let AbstractResourceContextKey = class AbstractResourceContextKey {
134
134
  static {
135
135
  this.Scheme = ( new RawContextKey("resourceScheme", undefined, {
136
136
  type: "string",
137
- description: ( localize(4148, "The scheme of the resource"))
137
+ description: ( localize(4147, "The scheme of the resource"))
138
138
  }));
139
139
  }
140
140
  static {
141
141
  this.Filename = ( new RawContextKey("resourceFilename", undefined, {
142
142
  type: "string",
143
- description: ( localize(4149, "The file name of the resource"))
143
+ description: ( localize(4148, "The file name of the resource"))
144
144
  }));
145
145
  }
146
146
  static {
147
147
  this.Dirname = ( new RawContextKey("resourceDirname", undefined, {
148
148
  type: "string",
149
- description: ( localize(4150, "The folder name the resource is contained in"))
149
+ description: ( localize(4149, "The folder name the resource is contained in"))
150
150
  }));
151
151
  }
152
152
  static {
153
153
  this.Path = ( new RawContextKey("resourcePath", undefined, {
154
154
  type: "string",
155
- description: ( localize(4151, "The full path of the resource"))
155
+ description: ( localize(4150, "The full path of the resource"))
156
156
  }));
157
157
  }
158
158
  static {
159
159
  this.LangId = ( new RawContextKey("resourceLangId", undefined, {
160
160
  type: "string",
161
- description: ( localize(4152, "The language identifier of the resource"))
161
+ description: ( localize(4151, "The language identifier of the resource"))
162
162
  }));
163
163
  }
164
164
  static {
165
165
  this.Resource = ( new RawContextKey("resource", undefined, {
166
166
  type: "URI",
167
- description: ( localize(4153, "The full value of the resource including scheme and path"))
167
+ description: ( localize(4152, "The full value of the resource including scheme and path"))
168
168
  }));
169
169
  }
170
170
  static {
171
171
  this.Extension = ( new RawContextKey("resourceExtname", undefined, {
172
172
  type: "string",
173
- description: ( localize(4154, "The extension name of the resource"))
173
+ description: ( localize(4153, "The extension name of the resource"))
174
174
  }));
175
175
  }
176
176
  static {
177
177
  this.HasResource = ( new RawContextKey("resourceSet", undefined, {
178
178
  type: "boolean",
179
- description: ( localize(4155, "Whether a resource is present or not"))
179
+ description: ( localize(4154, "Whether a resource is present or not"))
180
180
  }));
181
181
  }
182
182
  static {
183
183
  this.IsFileSystemResource = ( new RawContextKey("isFileSystemResource", undefined, {
184
184
  type: "boolean",
185
- description: ( localize(4156, "Whether the resource is backed by a file system provider"))
185
+ description: ( localize(4155, "Whether the resource is backed by a file system provider"))
186
186
  }));
187
187
  }
188
188
  constructor(_contextKeyService, _fileService, _languageService, _modelService) {
@@ -54,7 +54,7 @@ let DiffEditorInput = class DiffEditorInput extends SideBySideEditorInput {
54
54
  } else {
55
55
  const originalName = this.original.getName();
56
56
  const modifiedName = this.modified.getName();
57
- name = ( localize(4161, "{0} ↔ {1}", originalName, modifiedName));
57
+ name = ( localize(4160, "{0} ↔ {1}", originalName, modifiedName));
58
58
  forceDescription = originalName === modifiedName;
59
59
  }
60
60
  let shortDescription;
@@ -75,7 +75,7 @@ let SideBySideEditorInput = class SideBySideEditorInput extends EditorInput {
75
75
  if (this.hasIdenticalSides) {
76
76
  return this.primary.getName();
77
77
  }
78
- return localize(4162, "{0} - {1}", this.secondary.getName(), this.primary.getName());
78
+ return localize(4161, "{0} - {1}", this.secondary.getName(), this.primary.getName());
79
79
  }
80
80
  getPreferredName() {
81
81
  return this.preferredName;
@@ -111,7 +111,7 @@ let BaseTextEditorModel = class BaseTextEditorModel extends EditorModel {
111
111
  this.setLanguageIdInternal(lang, LanguageDetectionLanguageEventSource);
112
112
  const languageName = this.languageService.getLanguageName(lang);
113
113
  this.accessibilityService.alert(( localize(
114
- 4163,
114
+ 4162,
115
115
  "Language {0} was automatically detected and set as the language mode.",
116
116
  languageName ?? lang
117
117
  )));
@@ -17,8 +17,8 @@ const EditorExtensions = {
17
17
  };
18
18
  const DEFAULT_EDITOR_ASSOCIATION = {
19
19
  id: "default",
20
- displayName: ( localize(4157, "Text Editor")),
21
- providerDisplayName: ( localize(4158, "Built-in"))
20
+ displayName: ( localize(4156, "Text Editor")),
21
+ providerDisplayName: ( localize(4157, "Built-in"))
22
22
  };
23
23
  const SIDE_BY_SIDE_EDITOR_ID = "workbench.editor.sidebysideEditor";
24
24
  const TEXT_DIFF_EDITOR_ID = "workbench.editors.textDiffEditor";
@@ -176,7 +176,7 @@ function isDiffEditorInput(editor) {
176
176
  function createTooLargeFileError(group, input, options, message, preferencesService) {
177
177
  return createEditorOpenError(message, [toAction({
178
178
  id: "workbench.action.openLargeFile",
179
- label: ( localize(4159, "Open Anyway")),
179
+ label: ( localize(4158, "Open Anyway")),
180
180
  run: () => {
181
181
  const fileEditorOptions = {
182
182
  ...options,
@@ -188,7 +188,7 @@ function createTooLargeFileError(group, input, options, message, preferencesServ
188
188
  }
189
189
  }), toAction({
190
190
  id: "workbench.action.configureEditorLargeFileConfirmation",
191
- label: ( localize(4160, "Configure Limit")),
191
+ label: ( localize(4159, "Configure Limit")),
192
192
  run: () => {
193
193
  return preferencesService.openUserSettings({
194
194
  query: "workbench.editorLargeFileConfirmation"