@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
@@ -518,23 +518,12 @@ const registry = ( Registry.as(Extensions.Configuration));
518
518
  "Certain editors such as Settings and Keyboard Shortcuts may open in a centered modal overlay."
519
519
  )), ( localize(3897, "All editors open in a centered modal overlay."))],
520
520
  "description": ( localize(3898, "Controls whether editors open in a modal overlay.")),
521
- "default": product.quality !== "stable" ? "some" : "off",
522
- tags: ["experimental"],
523
- experiment: {
524
- mode: "auto"
525
- }
526
- },
527
- "workbench.editor.modalMinWidth": {
528
- "type": "number",
529
- "description": ( localize(3899, "Controls the minimum width of modal editor overlays in pixels.")),
530
- "default": 400,
531
- "minimum": 0,
532
- "multipleOf": 1
521
+ "default": "some"
533
522
  },
534
523
  "workbench.editor.swipeToNavigate": {
535
524
  "type": "boolean",
536
525
  "description": ( localize(
537
- 3900,
526
+ 3899,
538
527
  "Navigate between open files using three-finger swipe horizontally. Note that System Preferences > Trackpad > More Gestures > 'Swipe between pages' must be set to 'Swipe with two or three fingers'."
539
528
  )),
540
529
  "default": false,
@@ -543,7 +532,7 @@ const registry = ( Registry.as(Extensions.Configuration));
543
532
  "workbench.editor.mouseBackForwardToNavigate": {
544
533
  "type": "boolean",
545
534
  "description": ( localize(
546
- 3901,
535
+ 3900,
547
536
  "Enables the use of mouse buttons four and five for commands 'Go Back' and 'Go Forward'."
548
537
  )),
549
538
  "default": true
@@ -553,15 +542,15 @@ const registry = ( Registry.as(Extensions.Configuration));
553
542
  "enum": ["default", "editorGroup", "editor"],
554
543
  "default": "default",
555
544
  "markdownDescription": ( localize(
556
- 3902,
545
+ 3901,
557
546
  "Controls the scope of history navigation in editors for commands such as 'Go Back' and 'Go Forward'."
558
547
  )),
559
- "enumDescriptions": [( localize(3903, "Navigate across all opened editors and editor groups.")), ( localize(3904, "Navigate only in editors of the active editor group.")), ( localize(3905, "Navigate only in the active editor."))]
548
+ "enumDescriptions": [( localize(3902, "Navigate across all opened editors and editor groups.")), ( localize(3903, "Navigate only in editors of the active editor group.")), ( localize(3904, "Navigate only in the active editor."))]
560
549
  },
561
550
  "workbench.editor.restoreViewState": {
562
551
  "type": "boolean",
563
552
  "markdownDescription": ( localize(
564
- 3906,
553
+ 3905,
565
554
  "Restores the last editor view state (such as scroll position) when re-opening editors after they have been closed. Editor view state is stored per editor group and discarded when a group closes. Use the {0} setting to use the last known view state across all editor groups in case no previous view state was found for a editor group.",
566
555
  "`#workbench.editor.sharedViewState#`"
567
556
  )),
@@ -571,7 +560,7 @@ const registry = ( Registry.as(Extensions.Configuration));
571
560
  "workbench.editor.sharedViewState": {
572
561
  "type": "boolean",
573
562
  "description": ( localize(
574
- 3907,
563
+ 3906,
575
564
  "Preserves the most recent editor view state (such as scroll position) across all editor groups and restores that if no specific editor view state is found for the editor group."
576
565
  )),
577
566
  "default": false
@@ -579,7 +568,7 @@ const registry = ( Registry.as(Extensions.Configuration));
579
568
  "workbench.editor.restoreEditors": {
580
569
  "type": "boolean",
581
570
  "description": ( localize(
582
- 3908,
571
+ 3907,
583
572
  "Controls whether editors are restored on startup. When disabled, only dirty editors will be restored from the previous session."
584
573
  )),
585
574
  "default": true
@@ -589,16 +578,16 @@ const registry = ( Registry.as(Extensions.Configuration));
589
578
  "enum": ["vertical", "horizontal"],
590
579
  "default": "horizontal",
591
580
  "markdownDescription": ( localize(
592
- 3909,
581
+ 3908,
593
582
  "Controls the layout for when an editor is split in an editor group to be either vertical or horizontal."
594
583
  )),
595
- "enumDescriptions": [( localize(3910, "Editors are positioned from top to bottom.")), ( localize(3911, "Editors are positioned from left to right."))]
584
+ "enumDescriptions": [( localize(3909, "Editors are positioned from top to bottom.")), ( localize(3910, "Editors are positioned from left to right."))]
596
585
  },
597
586
  "workbench.editor.centeredLayoutAutoResize": {
598
587
  "type": "boolean",
599
588
  "default": true,
600
589
  "description": ( localize(
601
- 3912,
590
+ 3911,
602
591
  "Controls if the centered layout should automatically resize to maximum width when more than one group is open. Once only one group is open it will resize back to the original centered width."
603
592
  ))
604
593
  },
@@ -606,7 +595,7 @@ const registry = ( Registry.as(Extensions.Configuration));
606
595
  "type": "boolean",
607
596
  "default": false,
608
597
  "description": ( localize(
609
- 3913,
598
+ 3912,
610
599
  "Controls whether the centered layout tries to maintain constant width when the window is resized."
611
600
  ))
612
601
  },
@@ -615,24 +604,24 @@ const registry = ( Registry.as(Extensions.Configuration));
615
604
  "enum": ["maximize", "expand", "off"],
616
605
  "default": "expand",
617
606
  "markdownDescription": ( localize(
618
- 3914,
607
+ 3913,
619
608
  "Controls how the editor group is resized when double clicking on a tab. This value is ignored when {0} is not set to {1}.",
620
609
  "`#workbench.editor.showTabs#`",
621
610
  "`multiple`"
622
611
  )),
623
612
  "enumDescriptions": [( localize(
624
- 3915,
613
+ 3914,
625
614
  "All other editor groups are hidden and the current editor group is maximized to take up the entire editor area."
626
615
  )), ( localize(
627
- 3916,
616
+ 3915,
628
617
  "The editor group takes as much space as possible by making all other editor groups as small as possible."
629
- )), ( localize(3917, "No editor group is resized when double clicking on a tab."))]
618
+ )), ( localize(3916, "No editor group is resized when double clicking on a tab."))]
630
619
  },
631
620
  "workbench.editor.limit.enabled": {
632
621
  "type": "boolean",
633
622
  "default": false,
634
623
  "description": ( localize(
635
- 3918,
624
+ 3917,
636
625
  "Controls if the number of opened editors should be limited or not. When enabled, less recently used editors will close to make space for newly opening editors."
637
626
  ))
638
627
  },
@@ -641,7 +630,7 @@ const registry = ( Registry.as(Extensions.Configuration));
641
630
  "default": 10,
642
631
  "exclusiveMinimum": 0,
643
632
  "markdownDescription": ( localize(
644
- 3919,
633
+ 3918,
645
634
  "Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",
646
635
  "`#workbench.editor.limit.perEditorGroup#`"
647
636
  ))
@@ -650,7 +639,7 @@ const registry = ( Registry.as(Extensions.Configuration));
650
639
  "type": "boolean",
651
640
  "default": false,
652
641
  "description": ( localize(
653
- 3920,
642
+ 3919,
654
643
  "Controls if the maximum number of opened editors should exclude dirty editors for counting towards the configured limit."
655
644
  ))
656
645
  },
@@ -658,7 +647,7 @@ const registry = ( Registry.as(Extensions.Configuration));
658
647
  "type": "boolean",
659
648
  "default": false,
660
649
  "description": ( localize(
661
- 3921,
650
+ 3920,
662
651
  "Controls if the limit of maximum opened editors should apply per editor group or across all editor groups."
663
652
  ))
664
653
  },
@@ -666,7 +655,7 @@ const registry = ( Registry.as(Extensions.Configuration));
666
655
  "type": "boolean",
667
656
  "default": true,
668
657
  "description": ( localize(
669
- 3922,
658
+ 3921,
670
659
  "Controls whether local file history is enabled. When enabled, the file contents of an editor that is saved will be stored to a backup location to be able to restore or review the contents later. Changing this setting has no effect on existing local file history entries."
671
660
  )),
672
661
  "scope": ConfigurationScope.RESOURCE
@@ -676,7 +665,7 @@ const registry = ( Registry.as(Extensions.Configuration));
676
665
  "default": 256,
677
666
  "minimum": 1,
678
667
  "description": ( localize(
679
- 3923,
668
+ 3922,
680
669
  "Controls the maximum size of a file (in KB) to be considered for local file history. Files that are larger will not be added to the local file history. Changing this setting has no effect on existing local file history entries."
681
670
  )),
682
671
  "scope": ConfigurationScope.RESOURCE
@@ -686,7 +675,7 @@ const registry = ( Registry.as(Extensions.Configuration));
686
675
  "default": 50,
687
676
  "minimum": 0,
688
677
  "description": ( localize(
689
- 3924,
678
+ 3923,
690
679
  "Controls the maximum number of local file history entries per file. When the number of local file history entries exceeds this number for a file, the oldest entries will be discarded."
691
680
  )),
692
681
  "scope": ConfigurationScope.RESOURCE
@@ -699,7 +688,7 @@ const registry = ( Registry.as(Extensions.Configuration));
699
688
  }
700
689
  },
701
690
  "markdownDescription": ( localize(
702
- 3925,
691
+ 3924,
703
692
  "Configure paths or [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files from the local file history. Glob patterns are always evaluated relative to the path of the workspace folder unless they are absolute paths. Changing this setting has no effect on existing local file history entries."
704
693
  )),
705
694
  "scope": ConfigurationScope.RESOURCE
@@ -709,7 +698,7 @@ const registry = ( Registry.as(Extensions.Configuration));
709
698
  "default": 10,
710
699
  "minimum": 1,
711
700
  "markdownDescription": ( localize(
712
- 3926,
701
+ 3925,
713
702
  "Configure an interval in seconds during which the last entry in local file history is replaced with the entry that is being added. This helps reduce the overall number of entries that are added, for example when auto save is enabled. This setting is only applied to entries that have the same source of origin. Changing this setting has no effect on existing local file history entries."
714
703
  )),
715
704
  "scope": ConfigurationScope.RESOURCE
@@ -717,7 +706,7 @@ const registry = ( Registry.as(Extensions.Configuration));
717
706
  "workbench.commandPalette.history": {
718
707
  "type": "number",
719
708
  "description": ( localize(
720
- 3927,
709
+ 3926,
721
710
  "Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."
722
711
  )),
723
712
  "default": 50,
@@ -726,7 +715,7 @@ const registry = ( Registry.as(Extensions.Configuration));
726
715
  "workbench.commandPalette.preserveInput": {
727
716
  "type": "boolean",
728
717
  "description": ( localize(
729
- 3928,
718
+ 3927,
730
719
  "Controls whether the last typed input to the command palette should be restored when opening it the next time."
731
720
  )),
732
721
  "default": false
@@ -735,7 +724,7 @@ const registry = ( Registry.as(Extensions.Configuration));
735
724
  "type": "boolean",
736
725
  tags: ["experimental"],
737
726
  "description": ( localize(
738
- 3929,
727
+ 3928,
739
728
  "Controls whether the command palette should have a list of commonly used commands."
740
729
  )),
741
730
  "default": false
@@ -743,16 +732,16 @@ const registry = ( Registry.as(Extensions.Configuration));
743
732
  "workbench.commandPalette.experimental.askChatLocation": {
744
733
  "type": "string",
745
734
  tags: ["experimental"],
746
- "description": ( localize(3930, "Controls where the command palette should ask chat questions.")),
735
+ "description": ( localize(3929, "Controls where the command palette should ask chat questions.")),
747
736
  "default": "chatView",
748
737
  enum: ["chatView", "quickChat"],
749
- enumDescriptions: [( localize(3931, "Ask chat questions in the Chat view.")), ( localize(3932, "Ask chat questions in Quick Chat."))]
738
+ enumDescriptions: [( localize(3930, "Ask chat questions in the Chat view.")), ( localize(3931, "Ask chat questions in Quick Chat."))]
750
739
  },
751
740
  "workbench.commandPalette.showAskInChat": {
752
741
  "type": "boolean",
753
742
  tags: ["experimental"],
754
743
  "description": ( localize(
755
- 3933,
744
+ 3932,
756
745
  "Controls whether the command palette shows 'Ask in Chat' option at the bottom."
757
746
  )),
758
747
  "default": true
@@ -761,7 +750,7 @@ const registry = ( Registry.as(Extensions.Configuration));
761
750
  "type": "boolean",
762
751
  tags: ["experimental"],
763
752
  "description": ( localize(
764
- 3934,
753
+ 3933,
765
754
  "Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."
766
755
  )),
767
756
  "default": true
@@ -769,7 +758,7 @@ const registry = ( Registry.as(Extensions.Configuration));
769
758
  "workbench.quickOpen.closeOnFocusLost": {
770
759
  "type": "boolean",
771
760
  "description": ( localize(
772
- 3935,
761
+ 3934,
773
762
  "Controls whether Quick Open should close automatically once it loses focus."
774
763
  )),
775
764
  "default": true
@@ -777,7 +766,7 @@ const registry = ( Registry.as(Extensions.Configuration));
777
766
  "workbench.quickOpen.preserveInput": {
778
767
  "type": "boolean",
779
768
  "description": ( localize(
780
- 3936,
769
+ 3935,
781
770
  "Controls whether the last typed input to Quick Open should be restored when opening it the next time."
782
771
  )),
783
772
  "default": false
@@ -785,7 +774,7 @@ const registry = ( Registry.as(Extensions.Configuration));
785
774
  "workbench.settings.openDefaultSettings": {
786
775
  "type": "boolean",
787
776
  "description": ( localize(
788
- 3937,
777
+ 3936,
789
778
  "Controls whether opening settings also opens an editor showing all default settings."
790
779
  )),
791
780
  "default": false
@@ -793,7 +782,7 @@ const registry = ( Registry.as(Extensions.Configuration));
793
782
  "workbench.settings.useSplitJSON": {
794
783
  "type": "boolean",
795
784
  "markdownDescription": ( localize(
796
- 3938,
785
+ 3937,
797
786
  "Controls whether to use the split JSON editor when editing settings as JSON."
798
787
  )),
799
788
  "default": false
@@ -801,7 +790,7 @@ const registry = ( Registry.as(Extensions.Configuration));
801
790
  "workbench.settings.openDefaultKeybindings": {
802
791
  "type": "boolean",
803
792
  "description": ( localize(
804
- 3939,
793
+ 3938,
805
794
  "Controls whether opening keybinding settings also opens an editor showing all default keybindings."
806
795
  )),
807
796
  "default": false
@@ -809,7 +798,7 @@ const registry = ( Registry.as(Extensions.Configuration));
809
798
  "workbench.settings.alwaysShowAdvancedSettings": {
810
799
  "type": "boolean",
811
800
  "description": ( localize(
812
- 3940,
801
+ 3939,
813
802
  "Controls whether advanced settings are always shown in the settings editor without requiring the `@tag:advanced` filter."
814
803
  )),
815
804
  "default": product.quality !== "stable"
@@ -819,7 +808,7 @@ const registry = ( Registry.as(Extensions.Configuration));
819
808
  "enum": ["left", "right"],
820
809
  "default": "left",
821
810
  "description": ( localize(
822
- 3941,
811
+ 3940,
823
812
  "Controls the location of the primary side bar and activity bar. They can either show on the left or right of the workbench. The secondary side bar will show on the opposite side of the workbench."
824
813
  ))
825
814
  },
@@ -827,7 +816,7 @@ const registry = ( Registry.as(Extensions.Configuration));
827
816
  "type": "boolean",
828
817
  "default": true,
829
818
  "description": ( localize(
830
- 3942,
819
+ 3941,
831
820
  "Controls whether activity items in the panel title are shown as label or icon."
832
821
  ))
833
822
  },
@@ -836,7 +825,7 @@ const registry = ( Registry.as(Extensions.Configuration));
836
825
  "enum": ["left", "bottom", "top", "right"],
837
826
  "default": "bottom",
838
827
  "description": ( localize(
839
- 3943,
828
+ 3942,
840
829
  "Controls the default location of the panel (Terminal, Debug Console, Output, Problems) in a new workspace. It can either show at the bottom, top, right, or left of the editor area."
841
830
  ))
842
831
  },
@@ -845,10 +834,10 @@ const registry = ( Registry.as(Extensions.Configuration));
845
834
  "enum": ["always", "never", "preserve"],
846
835
  "default": "preserve",
847
836
  "description": ( localize(
848
- 3944,
837
+ 3943,
849
838
  "Controls whether the panel opens maximized. It can either always open maximized, never open maximized, or open to the last state it was in before being closed."
850
839
  )),
851
- "enumDescriptions": [( localize(3945, "Always maximize the panel when opening it.")), ( localize(3946, "Never maximize the panel when opening it.")), ( localize(3947, "Open the panel to the state that it was in, before it was closed."))]
840
+ "enumDescriptions": [( localize(3944, "Always maximize the panel when opening it.")), ( localize(3945, "Never maximize the panel when opening it.")), ( localize(3946, "Open the panel to the state that it was in, before it was closed."))]
852
841
  },
853
842
  "workbench.secondarySideBar.defaultVisibility": {
854
843
  "type": "string",
@@ -861,23 +850,23 @@ const registry = ( Registry.as(Extensions.Configuration));
861
850
  ],
862
851
  "default": "visibleInWorkspace",
863
852
  "description": ( localize(
864
- 3948,
853
+ 3947,
865
854
  "Controls the default visibility of the secondary side bar in workspaces or empty windows that are opened for the first time. Can be overridden by the agent sessions startup editor setting."
866
855
  )),
867
- "enumDescriptions": [( localize(3949, "The secondary side bar is hidden by default.")), ( localize(
868
- 3950,
856
+ "enumDescriptions": [( localize(3948, "The secondary side bar is hidden by default.")), ( localize(
857
+ 3949,
869
858
  "The secondary side bar is visible by default if a workspace is opened."
870
- )), ( localize(3951, "The secondary side bar is visible by default.")), ( localize(
871
- 3952,
859
+ )), ( localize(3950, "The secondary side bar is visible by default.")), ( localize(
860
+ 3951,
872
861
  "The secondary side bar is visible and maximized by default if a workspace is opened."
873
- )), ( localize(3953, "The secondary side bar is visible and maximized by default."))]
862
+ )), ( localize(3952, "The secondary side bar is visible and maximized by default."))]
874
863
  },
875
864
  "workbench.secondarySideBar.forceMaximized": {
876
865
  "type": "boolean",
877
866
  "default": false,
878
867
  tags: ["experimental"],
879
868
  "description": ( localize(
880
- 3954,
869
+ 3953,
881
870
  "Controls whether the secondary side bar is enforced to always show maximized on startup and when there are no open editors, in layouts that support a maximized secondary side bar."
882
871
  ))
883
872
  },
@@ -885,7 +874,7 @@ const registry = ( Registry.as(Extensions.Configuration));
885
874
  "type": "boolean",
886
875
  "default": true,
887
876
  "markdownDescription": ( localize(
888
- 3955,
877
+ 3954,
889
878
  "Controls whether activity items in the secondary side bar title are shown as label or icon. This setting only has an effect when {0} is not set to {1}.",
890
879
  "`#workbench.activityBar.location#`",
891
880
  "`top`"
@@ -895,7 +884,7 @@ const registry = ( Registry.as(Extensions.Configuration));
895
884
  "type": "boolean",
896
885
  "default": true,
897
886
  "description": ( localize(
898
- 3956,
887
+ 3955,
899
888
  "Controls the visibility of the status bar at the bottom of the workbench."
900
889
  ))
901
890
  },
@@ -908,11 +897,11 @@ const registry = ( Registry.as(Extensions.Configuration));
908
897
  ],
909
898
  "default": NotificationsPosition.BOTTOM_RIGHT,
910
899
  "description": ( localize(
911
- 3957,
900
+ 3956,
912
901
  "Controls the position of the notification toasts and notification center."
913
902
  )),
914
- "enumDescriptions": [( localize(3958, "Show notifications in the bottom right corner.")), ( localize(3959, "Show notifications in the bottom left corner.")), ( localize(
915
- 3960,
903
+ "enumDescriptions": [( localize(3957, "Show notifications in the bottom right corner.")), ( localize(3958, "Show notifications in the bottom left corner.")), ( localize(
904
+ 3959,
916
905
  "Show notifications in the top right corner, similar to OS-level notifications."
917
906
  ))],
918
907
  "tags": ["experimental"],
@@ -924,7 +913,7 @@ const registry = ( Registry.as(Extensions.Configuration));
924
913
  "type": "boolean",
925
914
  "default": true,
926
915
  "description": ( localize(
927
- 3961,
916
+ 3960,
928
917
  "Controls the visibility of the Notifications button in the title bar. Only applies when notifications are positioned at the top right."
929
918
  ))
930
919
  },
@@ -933,25 +922,25 @@ const registry = ( Registry.as(Extensions.Configuration));
933
922
  "enum": ["default", "top", "bottom", "hidden"],
934
923
  "default": "default",
935
924
  "markdownDescription": ( localize(
936
- 3962,
925
+ 3961,
937
926
  "Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."
938
927
  )),
939
928
  "enumDescriptions": [( localize(
940
- 3963,
929
+ 3962,
941
930
  "Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."
942
931
  )), ( localize(
943
- 3964,
932
+ 3963,
944
933
  "Show the Activity Bar on top of the Primary and Secondary Side Bars."
945
934
  )), ( localize(
946
- 3965,
935
+ 3964,
947
936
  "Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."
948
- )), ( localize(3966, "Hide the Activity Bar in the Primary and Secondary Side Bars."))]
937
+ )), ( localize(3965, "Hide the Activity Bar in the Primary and Secondary Side Bars."))]
949
938
  },
950
939
  [LayoutSettings.ACTIVITY_BAR_AUTO_HIDE]: {
951
940
  "type": "boolean",
952
941
  "default": false,
953
942
  "markdownDescription": ( localize(
954
- 3967,
943
+ 3966,
955
944
  "Controls whether the Activity Bar is automatically hidden when there is only one view container to show. This applies to the Primary and Secondary Side Bars when {0} is set to {1} or {2}.",
956
945
  "`#workbench.activityBar.location#`",
957
946
  "`top`",
@@ -962,7 +951,7 @@ const registry = ( Registry.as(Extensions.Configuration));
962
951
  "type": "boolean",
963
952
  "default": false,
964
953
  "markdownDescription": ( localize(
965
- 3968,
954
+ 3967,
966
955
  "Controls whether the Activity Bar uses a compact layout with smaller icons and reduced width. This setting only applies when {0} is set to {1}.",
967
956
  "`#workbench.activityBar.location#`",
968
957
  "`default`"
@@ -973,32 +962,32 @@ const registry = ( Registry.as(Extensions.Configuration));
973
962
  "enum": ["toggle", "focus"],
974
963
  "default": "toggle",
975
964
  "markdownDescription": ( localize(
976
- 3969,
965
+ 3968,
977
966
  "Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.",
978
967
  "`#workbench.activityBar.location#`",
979
968
  "`default`"
980
969
  )),
981
- "enumDescriptions": [( localize(3970, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(3971, "Focus the Primary Side Bar if the clicked item is already visible."))]
970
+ "enumDescriptions": [( localize(3969, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(3970, "Focus the Primary Side Bar if the clicked item is already visible."))]
982
971
  },
983
972
  "workbench.view.alwaysShowHeaderActions": {
984
973
  "type": "boolean",
985
974
  "default": false,
986
975
  "description": ( localize(
987
- 3972,
976
+ 3971,
988
977
  "Controls the visibility of view header actions. View header actions may either be always visible, or only visible when that view is focused or hovered over."
989
978
  ))
990
979
  },
991
980
  "workbench.view.showQuietly": {
992
981
  "type": "object",
993
982
  "description": ( localize(
994
- 3973,
983
+ 3972,
995
984
  "If an extension requests a hidden view to be shown, display a clickable status bar indicator instead."
996
985
  )),
997
986
  "scope": ConfigurationScope.WINDOW,
998
987
  "properties": {
999
988
  "workbench.panel.output": {
1000
989
  "type": "boolean",
1001
- "description": ( localize(3974, "Output view"))
990
+ "description": ( localize(3973, "Output view"))
1002
991
  }
1003
992
  },
1004
993
  "additionalProperties": false
@@ -1007,15 +996,15 @@ const registry = ( Registry.as(Extensions.Configuration));
1007
996
  "type": "string",
1008
997
  "enum": ["default", "antialiased", "none", "auto"],
1009
998
  "default": "default",
1010
- "description": ( localize(3975, "Controls font aliasing method in the workbench.")),
999
+ "description": ( localize(3974, "Controls font aliasing method in the workbench.")),
1011
1000
  "enumDescriptions": [( localize(
1012
- 3976,
1001
+ 3975,
1013
1002
  "Sub-pixel font smoothing. On most non-retina displays this will give the sharpest text."
1014
1003
  )), ( localize(
1015
- 3977,
1004
+ 3976,
1016
1005
  "Smooth the font on the level of the pixel, as opposed to the subpixel. Can make the font appear lighter overall."
1017
- )), ( localize(3978, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1018
- 3979,
1006
+ )), ( localize(3977, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1007
+ 3978,
1019
1008
  "Applies `default` or `antialiased` automatically based on the DPI of displays."
1020
1009
  ))],
1021
1010
  "included": isMacintosh
@@ -1023,8 +1012,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1023
1012
  "workbench.settings.editor": {
1024
1013
  "type": "string",
1025
1014
  "enum": ["ui", "json"],
1026
- "enumDescriptions": [( localize(3980, "Use the settings UI editor.")), ( localize(3981, "Use the JSON file editor."))],
1027
- "description": ( localize(3982, "Determines which Settings editor to use by default.")),
1015
+ "enumDescriptions": [( localize(3979, "Use the settings UI editor.")), ( localize(3980, "Use the JSON file editor."))],
1016
+ "description": ( localize(3981, "Determines which Settings editor to use by default.")),
1028
1017
  "default": "ui",
1029
1018
  "scope": ConfigurationScope.WINDOW
1030
1019
  },
@@ -1032,14 +1021,14 @@ const registry = ( Registry.as(Extensions.Configuration));
1032
1021
  "type": "boolean",
1033
1022
  "default": true,
1034
1023
  "description": ( localize(
1035
- 3983,
1024
+ 3982,
1036
1025
  "Controls whether the AI search results toggle is shown in the search bar in the Settings editor after doing a search and once AI search results are available."
1037
1026
  ))
1038
1027
  },
1039
1028
  "workbench.hover.delay": {
1040
1029
  "type": "number",
1041
1030
  "description": ( localize(
1042
- 3984,
1031
+ 3983,
1043
1032
  "Controls the delay in milliseconds after which the hover is shown for workbench items (ex. some extension provided tree view items). Already visible items may require a refresh before reflecting this setting change."
1044
1033
  )),
1045
1034
  "default": isMacintosh ? 1500 : 500,
@@ -1048,7 +1037,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1048
1037
  "workbench.hover.reducedDelay": {
1049
1038
  "type": "number",
1050
1039
  "description": ( localize(
1051
- 3985,
1040
+ 3984,
1052
1041
  "Controls the reduced delay in milliseconds used for showing hovers in specific contexts where faster feedback is beneficial."
1053
1042
  )),
1054
1043
  "default": 500,
@@ -1057,10 +1046,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1057
1046
  "workbench.reduceMotion": {
1058
1047
  type: "string",
1059
1048
  description: ( localize(
1060
- 3986,
1049
+ 3985,
1061
1050
  "Controls whether the workbench should render with fewer animations."
1062
1051
  )),
1063
- "enumDescriptions": [( localize(3987, "Always render with reduced motion.")), ( localize(3988, "Do not render with reduced motion")), ( localize(3989, "Render with reduced motion based on OS configuration."))],
1052
+ "enumDescriptions": [( localize(3986, "Always render with reduced motion.")), ( localize(3987, "Do not render with reduced motion")), ( localize(3988, "Render with reduced motion based on OS configuration."))],
1064
1053
  default: "auto",
1065
1054
  tags: ["accessibility"],
1066
1055
  enum: ["on", "off", "auto"]
@@ -1068,10 +1057,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1068
1057
  "workbench.reduceTransparency": {
1069
1058
  type: "string",
1070
1059
  description: ( localize(
1071
- 3990,
1060
+ 3989,
1072
1061
  "Controls whether the workbench should render with fewer transparency and blur effects for improved performance."
1073
1062
  )),
1074
- "enumDescriptions": [( localize(3991, "Always render without transparency and blur effects.")), ( localize(3992, "Do not reduce transparency and blur effects.")), ( localize(3993, "Reduce transparency and blur effects based on OS configuration."))],
1063
+ "enumDescriptions": [( localize(3990, "Always render without transparency and blur effects.")), ( localize(3991, "Do not reduce transparency and blur effects.")), ( localize(3992, "Reduce transparency and blur effects based on OS configuration."))],
1075
1064
  default: "off",
1076
1065
  tags: ["accessibility"],
1077
1066
  enum: ["on", "off", "auto"]
@@ -1079,8 +1068,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1079
1068
  "workbench.navigationControl.enabled": {
1080
1069
  "type": "boolean",
1081
1070
  "default": true,
1082
- "markdownDescription": isWeb ? ( localize(3994, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1083
- 3995,
1071
+ "markdownDescription": isWeb ? ( localize(3993, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1072
+ 3994,
1084
1073
  "Controls whether the navigation control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
1085
1074
  "`#window.customTitleBarVisibility#`",
1086
1075
  "`never`"
@@ -1089,8 +1078,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1089
1078
  [LayoutSettings.LAYOUT_ACTIONS]: {
1090
1079
  "type": "boolean",
1091
1080
  "default": true,
1092
- "markdownDescription": isWeb ? ( localize(3996, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1093
- 3997,
1081
+ "markdownDescription": isWeb ? ( localize(3995, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1082
+ 3996,
1094
1083
  "Controls whether the layout control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
1095
1084
  "`#window.customTitleBarVisibility#`",
1096
1085
  "`never`"
@@ -1099,86 +1088,86 @@ const registry = ( Registry.as(Extensions.Configuration));
1099
1088
  "workbench.layoutControl.type": {
1100
1089
  "type": "string",
1101
1090
  "enum": ["menu", "toggles", "both"],
1102
- "enumDescriptions": [( localize(3998, "Shows a single button with a dropdown of layout options.")), ( localize(
1103
- 3999,
1091
+ "enumDescriptions": [( localize(3997, "Shows a single button with a dropdown of layout options.")), ( localize(
1092
+ 3998,
1104
1093
  "Shows several buttons for toggling the visibility of the panels and side bar."
1105
- )), ( localize(4000, "Shows both the dropdown and toggle buttons."))],
1094
+ )), ( localize(3999, "Shows both the dropdown and toggle buttons."))],
1106
1095
  "default": "both",
1107
1096
  "description": ( localize(
1108
- 4001,
1097
+ 4000,
1109
1098
  "Controls whether the layout control in the custom title bar is displayed as a single menu button or with multiple UI toggles."
1110
1099
  ))
1111
1100
  },
1112
1101
  "workbench.tips.enabled": {
1113
1102
  "type": "boolean",
1114
1103
  "default": true,
1115
- "description": ( localize(4002, "When enabled, will show the watermark tips when no editor is open."))
1104
+ "description": ( localize(4001, "When enabled, will show the watermark tips when no editor is open."))
1116
1105
  },
1117
1106
  [LayoutSettings.SHADOWS]: {
1118
1107
  "type": "boolean",
1119
1108
  "default": true,
1120
1109
  "description": ( localize(
1121
- 4003,
1110
+ 4002,
1122
1111
  "Controls whether shadow effects are shown around the side panels and other workbench elements."
1123
1112
  ))
1124
1113
  }
1125
1114
  }
1126
1115
  });
1127
1116
  let windowTitleDescription = ( localize(
1128
- 4004,
1117
+ 4003,
1129
1118
  "Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:"
1130
1119
  ));
1131
- windowTitleDescription += "\n- " + [( localize(4005, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1132
- 4006,
1120
+ windowTitleDescription += "\n- " + [( localize(4004, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1121
+ 4005,
1133
1122
  "`${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)."
1134
1123
  )), ( localize(
1135
- 4007,
1124
+ 4006,
1136
1125
  "`${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)."
1137
1126
  )), ( localize(
1138
- 4008,
1127
+ 4007,
1139
1128
  "`${activeEditorLanguageId}`: the language identifier of the active editor (e.g. typescript)."
1140
1129
  )), ( localize(
1141
- 4009,
1130
+ 4008,
1142
1131
  "`${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder)."
1143
1132
  )), ( localize(
1144
- 4010,
1133
+ 4009,
1145
1134
  "`${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)."
1146
1135
  )), ( localize(
1147
- 4011,
1136
+ 4010,
1148
1137
  "`${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)."
1149
1138
  )), ( localize(
1150
- 4012,
1139
+ 4011,
1151
1140
  "`${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder)."
1152
1141
  )), ( localize(
1153
- 4013,
1142
+ 4012,
1154
1143
  "`${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)."
1155
1144
  )), ( localize(
1156
- 4014,
1145
+ 4013,
1157
1146
  "`${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))."
1158
1147
  )), ( localize(
1159
- 4015,
1148
+ 4014,
1160
1149
  "`${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace)."
1161
1150
  )), ( localize(
1162
- 4016,
1151
+ 4015,
1163
1152
  "`${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace)."
1164
1153
  )), ( localize(
1165
- 4017,
1154
+ 4016,
1166
1155
  "`${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used."
1167
- )), ( localize(4018, "`${appName}`: e.g. VS Code.")), ( localize(4019, "`${remoteName}`: e.g. SSH")), ( localize(
1168
- 4020,
1156
+ )), ( localize(4017, "`${appName}`: e.g. VS Code.")), ( localize(4018, "`${remoteName}`: e.g. SSH")), ( localize(
1157
+ 4019,
1169
1158
  "`${dirty}`: an indicator for when the active editor has unsaved changes."
1170
- )), ( localize(4021, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1171
- 4022,
1159
+ )), ( localize(4020, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1160
+ 4021,
1172
1161
  "`${activeRepositoryName}`: the name of the active repository (e.g. vscode)."
1173
1162
  )), ( localize(
1174
- 4023,
1163
+ 4022,
1175
1164
  "`${activeRepositoryBranchName}`: the name of the active branch in the active repository (e.g. main)."
1176
1165
  )), ( localize(
1177
- 4024,
1166
+ 4023,
1178
1167
  "`${activeEditorState}`: provides information about the state of the active editor (e.g. modified). This will be appended by default when in screen reader mode with {0} enabled.",
1179
1168
  "`accessibility.windowTitleOptimized`"
1180
1169
  )), ( localize(
1181
- 4025,
1170
+ 4024,
1182
1171
  "`${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."
1183
1172
  ))].join("\n- ");
1184
1173
  registry.registerConfiguration({
@@ -1192,13 +1181,13 @@ const registry = ( Registry.as(Extensions.Configuration));
1192
1181
  "window.titleSeparator": {
1193
1182
  "type": "string",
1194
1183
  "default": defaultWindowTitleSeparator,
1195
- "markdownDescription": ( localize(4026, "Separator used by {0}.", "`#window.title#`"))
1184
+ "markdownDescription": ( localize(4025, "Separator used by {0}.", "`#window.title#`"))
1196
1185
  },
1197
1186
  [LayoutSettings.COMMAND_CENTER]: {
1198
1187
  type: "boolean",
1199
1188
  default: true,
1200
- markdownDescription: isWeb ? ( localize(4027, "Show command launcher together with the window title.")) : ( localize(
1201
- 4028,
1189
+ markdownDescription: isWeb ? ( localize(4026, "Show command launcher together with the window title.")) : ( localize(
1190
+ 4027,
1202
1191
  "Show command launcher together with the window title. This setting only has an effect when {0} is not set to {1}.",
1203
1192
  "`#window.customTitleBarVisibility#`",
1204
1193
  "`never`"
@@ -1208,19 +1197,19 @@ const registry = ( Registry.as(Extensions.Configuration));
1208
1197
  "type": "string",
1209
1198
  "enum": ["classic", "visible", "toggle", "hidden", "compact"],
1210
1199
  "markdownEnumDescriptions": [( localize(
1211
- 4029,
1200
+ 4028,
1212
1201
  "Menu is displayed at the top of the window and only hidden in full screen mode."
1213
1202
  )), ( localize(
1214
- 4030,
1203
+ 4029,
1215
1204
  "Menu is always visible at the top of the window even in full screen mode."
1216
1205
  )), isMacintosh ? ( localize(
1217
- 4031,
1206
+ 4030,
1218
1207
  "Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command."
1219
1208
  )) : ( localize(
1220
- 4032,
1209
+ 4031,
1221
1210
  "Menu is hidden but can be displayed at the top of the window via the Alt key."
1222
- )), ( localize(4033, "Menu is always hidden.")), isWeb ? ( localize(4034, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1223
- 4035,
1211
+ )), ( localize(4032, "Menu is always hidden.")), isWeb ? ( localize(4033, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1212
+ 4034,
1224
1213
  "Menu is displayed as a compact button in the side bar. This value is ignored when {0} is {1} and {2} is either {3} or {4}.",
1225
1214
  "`#window.titleBarStyle#`",
1226
1215
  "`native`",
@@ -1231,10 +1220,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1231
1220
  "default": isWeb ? "compact" : "classic",
1232
1221
  "scope": ConfigurationScope.APPLICATION,
1233
1222
  "markdownDescription": isMacintosh ? ( localize(
1234
- 4036,
1223
+ 4035,
1235
1224
  "Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and executing `Focus Application Menu` will show it. A setting of 'compact' will move the menu into the side bar."
1236
1225
  )) : ( localize(
1237
- 4037,
1226
+ 4036,
1238
1227
  "Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. A setting of 'compact' will move the menu into the side bar."
1239
1228
  )),
1240
1229
  "included": isWindows || isLinux || isWeb
@@ -1244,7 +1233,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1244
1233
  "default": true,
1245
1234
  "scope": ConfigurationScope.APPLICATION,
1246
1235
  "description": ( localize(
1247
- 4038,
1236
+ 4037,
1248
1237
  "Controls whether the main menus can be opened via Alt-key shortcuts. Disabling mnemonics allows to bind these Alt-key shortcuts to editor commands instead."
1249
1238
  )),
1250
1239
  "included": isWindows || isLinux
@@ -1254,7 +1243,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1254
1243
  "default": true,
1255
1244
  "scope": ConfigurationScope.APPLICATION,
1256
1245
  "markdownDescription": ( localize(
1257
- 4039,
1246
+ 4038,
1258
1247
  "Controls whether the menu bar will be focused by pressing the Alt-key. This setting has no effect on toggling the menu bar with the Alt-key."
1259
1248
  )),
1260
1249
  "included": isWindows || isLinux
@@ -1262,37 +1251,37 @@ const registry = ( Registry.as(Extensions.Configuration));
1262
1251
  "window.openFilesInNewWindow": {
1263
1252
  "type": "string",
1264
1253
  "enum": ["on", "off", "default"],
1265
- "enumDescriptions": [( localize(4040, "Files will open in a new window.")), ( localize(
1266
- 4041,
1254
+ "enumDescriptions": [( localize(4039, "Files will open in a new window.")), ( localize(
1255
+ 4040,
1267
1256
  "Files will open in the window with the files' folder open or the last active window."
1268
1257
  )), isMacintosh ? ( localize(
1269
- 4042,
1258
+ 4041,
1270
1259
  "Files will open in the window with the files' folder open or the last active window unless opened via the Dock or from Finder."
1271
1260
  )) : ( localize(
1272
- 4043,
1261
+ 4042,
1273
1262
  "Files will open in a new window unless picked from within the application (e.g. via the File menu)."
1274
1263
  ))],
1275
1264
  "default": "off",
1276
1265
  "scope": ConfigurationScope.APPLICATION,
1277
1266
  "markdownDescription": isMacintosh ? ( localize(
1278
- 4044,
1267
+ 4043,
1279
1268
  "Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1280
1269
  )) : ( localize(
1281
- 4045,
1270
+ 4044,
1282
1271
  "Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1283
1272
  ))
1284
1273
  },
1285
1274
  "window.openFoldersInNewWindow": {
1286
1275
  "type": "string",
1287
1276
  "enum": ["on", "off", "default"],
1288
- "enumDescriptions": [( localize(4046, "Folders will open in a new window.")), ( localize(4047, "Folders will replace the last active window.")), ( localize(
1289
- 4048,
1277
+ "enumDescriptions": [( localize(4045, "Folders will open in a new window.")), ( localize(4046, "Folders will replace the last active window.")), ( localize(
1278
+ 4047,
1290
1279
  "Folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)."
1291
1280
  ))],
1292
1281
  "default": "default",
1293
1282
  "scope": ConfigurationScope.APPLICATION,
1294
1283
  "markdownDescription": ( localize(
1295
- 4049,
1284
+ 4048,
1296
1285
  "Controls whether folders should open in a new window or replace the last active window.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1297
1286
  ))
1298
1287
  },
@@ -1300,21 +1289,21 @@ const registry = ( Registry.as(Extensions.Configuration));
1300
1289
  "type": "string",
1301
1290
  "enum": ["always", "keyboardOnly", "never"],
1302
1291
  "enumDescriptions": [isWeb ? ( localize(
1303
- 4050,
1292
+ 4049,
1304
1293
  "Always try to ask for confirmation. Note that browsers may still decide to close a tab or window without confirmation."
1305
- )) : ( localize(4051, "Always ask for confirmation.")), isWeb ? ( localize(
1306
- 4052,
1294
+ )) : ( localize(4050, "Always ask for confirmation.")), isWeb ? ( localize(
1295
+ 4051,
1307
1296
  "Only ask for confirmation if a keybinding was used to close the window. Note that detection may not be possible in some cases."
1308
- )) : ( localize(4053, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1309
- 4054,
1297
+ )) : ( localize(4052, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1298
+ 4053,
1310
1299
  "Never explicitly ask for confirmation unless data loss is imminent."
1311
- )) : ( localize(4055, "Never explicitly ask for confirmation."))],
1300
+ )) : ( localize(4054, "Never explicitly ask for confirmation."))],
1312
1301
  "default": (isWeb && !isStandalone()) ? "keyboardOnly" : "never",
1313
1302
  "markdownDescription": isWeb ? ( localize(
1314
- 4056,
1303
+ 4055,
1315
1304
  "Controls whether to show a confirmation dialog before closing the browser tab or window. Note that even if enabled, browsers may still decide to close a tab or window without confirmation and that this setting is only a hint that may not work in all cases."
1316
1305
  )) : ( localize(
1317
- 4057,
1306
+ 4056,
1318
1307
  "Controls whether to show a confirmation dialog before closing a window or quitting the application."
1319
1308
  )),
1320
1309
  "scope": ConfigurationScope.APPLICATION
@@ -1333,7 +1322,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1333
1322
  "type": "boolean",
1334
1323
  "default": true,
1335
1324
  "description": ( localize(
1336
- 4058,
1325
+ 4057,
1337
1326
  "Controls whether the problems are visible throughout the editor and workbench."
1338
1327
  ))
1339
1328
  }
@@ -1342,40 +1331,40 @@ const registry = ( Registry.as(Extensions.Configuration));
1342
1331
  registry.registerConfiguration({
1343
1332
  "id": "zenMode",
1344
1333
  "order": 9,
1345
- "title": ( localize(4059, "Zen Mode")),
1334
+ "title": ( localize(4058, "Zen Mode")),
1346
1335
  "type": "object",
1347
1336
  "properties": {
1348
1337
  "zenMode.fullScreen": {
1349
1338
  "type": "boolean",
1350
1339
  "default": true,
1351
1340
  "description": ( localize(
1352
- 4060,
1341
+ 4059,
1353
1342
  "Controls whether turning on Zen Mode also puts the workbench into full screen mode."
1354
1343
  ))
1355
1344
  },
1356
1345
  "zenMode.centerLayout": {
1357
1346
  "type": "boolean",
1358
1347
  "default": true,
1359
- "description": ( localize(4061, "Controls whether turning on Zen Mode also centers the layout."))
1348
+ "description": ( localize(4060, "Controls whether turning on Zen Mode also centers the layout."))
1360
1349
  },
1361
1350
  "zenMode.showTabs": {
1362
1351
  "type": "string",
1363
1352
  "enum": ["multiple", "single", "none"],
1364
1353
  "description": ( localize(
1365
- 4062,
1354
+ 4061,
1366
1355
  "Controls whether turning on Zen Mode should show multiple editor tabs, a single editor tab, or hide the editor title area completely."
1367
1356
  )),
1368
- "enumDescriptions": [( localize(4063, "Each editor is displayed as a tab in the editor title area.")), ( localize(
1369
- 4064,
1357
+ "enumDescriptions": [( localize(4062, "Each editor is displayed as a tab in the editor title area.")), ( localize(
1358
+ 4063,
1370
1359
  "The active editor is displayed as a single large tab in the editor title area."
1371
- )), ( localize(4065, "The editor title area is not displayed."))],
1360
+ )), ( localize(4064, "The editor title area is not displayed."))],
1372
1361
  "default": "multiple"
1373
1362
  },
1374
1363
  "zenMode.hideStatusBar": {
1375
1364
  "type": "boolean",
1376
1365
  "default": true,
1377
1366
  "description": ( localize(
1378
- 4066,
1367
+ 4065,
1379
1368
  "Controls whether turning on Zen Mode also hides the status bar at the bottom of the workbench."
1380
1369
  ))
1381
1370
  },
@@ -1383,7 +1372,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1383
1372
  "type": "boolean",
1384
1373
  "default": true,
1385
1374
  "description": ( localize(
1386
- 4067,
1375
+ 4066,
1387
1376
  "Controls whether turning on Zen Mode also hides the activity bar either at the left or right of the workbench."
1388
1377
  ))
1389
1378
  },
@@ -1391,7 +1380,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1391
1380
  "type": "boolean",
1392
1381
  "default": true,
1393
1382
  "description": ( localize(
1394
- 4068,
1383
+ 4067,
1395
1384
  "Controls whether turning on Zen Mode also hides the editor line numbers."
1396
1385
  ))
1397
1386
  },
@@ -1399,7 +1388,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1399
1388
  "type": "boolean",
1400
1389
  "default": true,
1401
1390
  "description": ( localize(
1402
- 4069,
1391
+ 4068,
1403
1392
  "Controls whether a window should restore to Zen Mode if it was exited in Zen Mode."
1404
1393
  ))
1405
1394
  },
@@ -1407,7 +1396,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1407
1396
  "type": "boolean",
1408
1397
  "default": true,
1409
1398
  "description": ( localize(
1410
- 4070,
1399
+ 4069,
1411
1400
  "Controls whether notifications do not disturb mode should be enabled while in Zen Mode. If true, only error notifications will pop out."
1412
1401
  ))
1413
1402
  }