@codingame/monaco-vscode-api 28.4.1 → 29.1.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 (842) hide show
  1. package/missing-services.js +232 -112
  2. package/package.json +8 -8
  3. package/services.d.ts +1 -3
  4. package/services.js +4 -6
  5. package/vscode/product.json.js +1 -1
  6. package/vscode/src/vs/base/browser/markdownRenderer.js +15 -1
  7. package/vscode/src/vs/base/browser/touch.js +1 -1
  8. package/vscode/src/vs/base/browser/ui/button/button.css +1 -0
  9. package/vscode/src/vs/base/browser/ui/dialog/dialog.css +18 -22
  10. package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +1 -0
  11. package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +6 -3
  12. package/vscode/src/vs/base/browser/ui/list/listView.d.ts +4 -4
  13. package/vscode/src/vs/base/browser/ui/list/listWidget.js +1 -1
  14. package/vscode/src/vs/base/browser/ui/menu/menu.js +3 -0
  15. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -1
  16. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +4 -1
  17. package/vscode/src/vs/base/browser/ui/tree/compressedObjectTreeModel.js +8 -2
  18. package/vscode/src/vs/base/common/async.d.ts +4 -4
  19. package/vscode/src/vs/base/common/codicons.d.ts +1 -0
  20. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
  21. package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
  22. package/vscode/src/vs/base/common/event.d.ts +14 -2
  23. package/vscode/src/vs/base/common/event.js +10 -5
  24. package/vscode/src/vs/base/common/htmlContent.d.ts +2 -2
  25. package/vscode/src/vs/base/common/htmlContent.js +1 -1
  26. package/vscode/src/vs/base/common/lifecycle.d.ts +1 -1
  27. package/vscode/src/vs/base/common/network.d.ts +2 -0
  28. package/vscode/src/vs/base/common/network.js +1 -0
  29. package/vscode/src/vs/base/common/observableInternal/index.d.ts +1 -1
  30. package/vscode/src/vs/base/common/product.d.ts +1 -0
  31. package/vscode/src/vs/base/common/resources.d.ts +2 -2
  32. package/vscode/src/vs/base/common/resources.js +2 -2
  33. package/vscode/src/vs/base/parts/request/common/request.d.ts +5 -0
  34. package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -1
  35. package/vscode/src/vs/editor/browser/controller/pointerHandler.js +1 -1
  36. package/vscode/src/vs/editor/browser/observableCodeEditor.js +3 -3
  37. package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.d.ts +2 -2
  38. package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.js +27 -22
  39. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +10 -2
  40. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.js +1 -1
  41. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +1 -1
  42. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +1 -1
  43. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/diffEditorItemTemplate.js +1 -1
  44. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorViewModel.js +2 -2
  45. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +4 -0
  46. package/vscode/src/vs/editor/common/config/editorOptions.js +364 -357
  47. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
  48. package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +1 -1
  49. package/vscode/src/vs/editor/common/editorContextKeys.js +49 -49
  50. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  51. package/vscode/src/vs/editor/common/languages.js +56 -56
  52. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  53. package/vscode/src/vs/editor/common/model/textModel.d.ts +2 -2
  54. package/vscode/src/vs/editor/common/model/textModel.js +7 -33
  55. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +1 -1
  56. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.js +1 -1
  57. package/vscode/src/vs/editor/common/model.d.ts +1 -1
  58. package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +6 -2
  59. package/vscode/src/vs/editor/common/standaloneStrings.js +50 -50
  60. package/vscode/src/vs/editor/common/textModelEvents.d.ts +2 -18
  61. package/vscode/src/vs/editor/common/textModelEvents.js +2 -6
  62. package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +38 -15
  63. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  64. package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.js +4 -1
  65. package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.d.ts +2 -2
  66. package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +8 -8
  67. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +2 -2
  68. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +6 -15
  69. package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +3 -3
  70. package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +12 -12
  71. package/vscode/src/vs/editor/common/viewModel.d.ts +2 -2
  72. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  73. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  74. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  75. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  76. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  77. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  78. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +18 -18
  79. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  80. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  81. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  82. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  83. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  84. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  85. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  86. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  87. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  88. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  89. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +17 -10
  90. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  91. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  92. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
  93. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +5 -5
  94. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  95. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  96. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  97. package/vscode/src/vs/editor/contrib/find/browser/findController.js +39 -18
  98. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +28 -28
  99. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  100. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  101. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  102. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  103. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  104. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +13 -13
  105. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +33 -33
  106. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  107. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  108. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  109. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  110. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  111. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  112. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  113. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  114. package/vscode/src/vs/editor/contrib/hover/browser/hover.css +1 -0
  115. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  116. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  117. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +22 -22
  118. package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
  119. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +7 -7
  120. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.d.ts +5 -1
  121. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +46 -7
  122. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  123. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +18 -18
  124. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +5 -5
  125. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
  126. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
  127. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +2 -2
  128. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  129. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
  130. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +1 -1
  131. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +2 -2
  132. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +1 -1
  133. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +2 -2
  134. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +5 -0
  135. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
  136. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +4 -4
  137. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +1 -1
  138. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +1 -1
  139. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +3 -3
  140. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +1 -1
  141. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
  142. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  143. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  144. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
  145. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  146. package/vscode/src/vs/editor/contrib/links/browser/links.js +6 -6
  147. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  148. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  149. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +6 -0
  150. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  151. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  152. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
  153. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  154. package/vscode/src/vs/editor/contrib/quickAccess/browser/editorNavigationQuickAccess.js +1 -1
  155. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +11 -11
  156. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
  157. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  158. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  159. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  160. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  161. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  162. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  163. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +1 -1
  164. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  165. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  166. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  167. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +2 -0
  168. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +70 -7
  169. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  170. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  171. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  172. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  173. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  174. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  175. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  176. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  177. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  178. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  179. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  180. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  181. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  182. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  183. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  184. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +108 -22
  185. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +466 -130
  186. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +54 -3
  187. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +13 -13
  188. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
  189. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  190. package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -0
  191. package/vscode/src/vs/platform/actions/common/actions.js +12 -0
  192. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  193. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  194. package/vscode/src/vs/platform/browserView/common/browserView.d.ts +348 -0
  195. package/vscode/src/vs/platform/browserView/common/cdp/types.d.ts +153 -0
  196. package/vscode/src/vs/platform/browserView/common/playwrightService.service.d.ts +91 -0
  197. package/vscode/src/vs/platform/configuration/common/configuration.d.ts +1 -0
  198. package/vscode/src/vs/platform/configuration/common/configuration.js +6 -1
  199. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  200. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  201. package/vscode/src/vs/platform/contextkey/common/contextkey.js +10 -10
  202. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  203. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  204. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  205. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  206. package/vscode/src/vs/platform/download/common/download.service.d.ts +1 -1
  207. package/vscode/src/vs/platform/editor/common/editor.d.ts +18 -0
  208. package/vscode/src/vs/platform/environment/common/argv.d.ts +5 -0
  209. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
  210. package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -0
  211. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  212. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  213. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
  214. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  215. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +10 -0
  216. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -2
  217. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  218. package/vscode/src/vs/platform/files/common/files.js +6 -6
  219. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  220. package/vscode/src/vs/platform/hover/browser/hover.css +4 -0
  221. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +4 -1
  222. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  223. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  224. package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +2 -0
  225. package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.js +54 -5
  226. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  227. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  228. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  229. package/vscode/src/vs/platform/log/common/log.js +6 -6
  230. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  231. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  232. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
  233. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
  234. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  235. package/vscode/src/vs/platform/product/common/product.js +3 -3
  236. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  237. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  238. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
  239. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +20 -6
  240. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  241. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  242. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  243. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +10 -3
  244. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +8 -0
  245. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +6 -1
  246. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
  247. package/vscode/src/vs/platform/remote/common/remoteAgentEnvironment.d.ts +1 -0
  248. package/vscode/src/vs/platform/request/common/request.d.ts +13 -0
  249. package/vscode/src/vs/platform/request/common/request.js +42 -20
  250. package/vscode/src/vs/platform/request/common/request.service.d.ts +6 -1
  251. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +10 -5
  252. package/vscode/src/vs/platform/terminal/common/capabilities/commandDetection/terminalCommand.js +12 -2
  253. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +31 -31
  254. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  255. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  256. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
  257. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  258. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  259. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
  260. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  261. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  262. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  263. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  264. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  265. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  266. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  267. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
  268. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  269. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  270. package/vscode/src/vs/platform/update/common/update.d.ts +8 -6
  271. package/vscode/src/vs/platform/update/common/update.js +6 -6
  272. package/vscode/src/vs/platform/url/common/urlGlob.js +5 -3
  273. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  274. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  275. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  276. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  277. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  278. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  279. package/vscode/src/vs/platform/userDataSync/common/userDataSyncStoreService.js +24 -12
  280. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  281. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +15 -14
  282. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +53 -8
  283. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +100 -21
  284. package/vscode/src/vs/workbench/api/common/extHost.protocol.js +4 -2
  285. package/vscode/src/vs/workbench/api/common/extHostApiDeprecationService.d.ts +6 -2
  286. package/vscode/src/vs/workbench/api/common/extHostApiDeprecationService.js +7 -5
  287. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  288. package/vscode/src/vs/workbench/api/common/extHostBrowsers.d.ts +30 -0
  289. package/vscode/src/vs/workbench/api/common/extHostBrowsers.js +211 -0
  290. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +11 -4
  291. package/vscode/src/vs/workbench/api/common/extHostChatDebug.d.ts +10 -0
  292. package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +132 -1
  293. package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +7 -8
  294. package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +81 -33
  295. package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +1 -1
  296. package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.d.ts +1 -1
  297. package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.js +3 -3
  298. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  299. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +3 -3
  300. package/vscode/src/vs/workbench/api/common/extHostFileSystemConsumer.d.ts +1 -1
  301. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.d.ts +5 -1
  302. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +107 -7
  303. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +11 -11
  304. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +17 -7
  305. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +2 -2
  306. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +5 -3
  307. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  308. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +7 -1
  309. package/vscode/src/vs/workbench/api/common/extHostMcp.js +30 -3
  310. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  311. package/vscode/src/vs/workbench/api/common/extHostSCM.js +3 -3
  312. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  313. package/vscode/src/vs/workbench/api/common/extHostTask.js +3 -0
  314. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
  315. package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +3 -1
  316. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +21 -6
  317. package/vscode/src/vs/workbench/api/common/extHostTimeline.js +1 -1
  318. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  319. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +2 -1
  320. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +22 -5
  321. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +22 -0
  322. package/vscode/src/vs/workbench/api/common/extHostTypes.js +19 -1
  323. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -1
  324. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  325. package/vscode/src/vs/workbench/api/worker/extHostConsoleForwarder.d.ts +1 -1
  326. package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
  327. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +130 -130
  328. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  329. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  330. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  331. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  332. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  333. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  334. package/vscode/src/vs/workbench/browser/media/style.css +21 -0
  335. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +23 -23
  336. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
  337. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
  338. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  339. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  340. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  341. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
  342. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  343. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  344. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  345. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  346. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  347. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  348. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
  349. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +135 -135
  350. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +28 -28
  351. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  352. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  353. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
  354. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  355. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.d.ts +1 -1
  356. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.js +8 -2
  357. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.d.ts +17 -0
  358. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +37 -5
  359. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  360. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  361. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  362. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +2 -2
  363. package/vscode/src/vs/workbench/browser/parts/editor/media/editorgroupview.css +5 -0
  364. package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +16 -5
  365. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +18 -4
  366. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +322 -56
  367. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  368. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  369. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  370. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  371. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  372. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
  373. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsCenter.css +1 -1
  374. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsToasts.css +1 -1
  375. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +22 -22
  376. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  377. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
  378. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +13 -13
  379. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  380. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
  381. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
  382. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
  383. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
  384. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  385. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +27 -27
  386. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
  387. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  388. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  389. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +18 -18
  390. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +15 -15
  391. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +2 -2
  392. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  393. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +7 -7
  394. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +4 -4
  395. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +5 -5
  396. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
  397. package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
  398. package/vscode/src/vs/workbench/browser/window.js +14 -14
  399. package/vscode/src/vs/workbench/browser/workbench.contribution.js +251 -252
  400. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  401. package/vscode/src/vs/workbench/common/contextkeys.js +77 -77
  402. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  403. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  404. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  405. package/vscode/src/vs/workbench/common/editor.d.ts +6 -1
  406. package/vscode/src/vs/workbench/common/editor.js +5 -4
  407. package/vscode/src/vs/workbench/common/theme.js +161 -161
  408. package/vscode/src/vs/workbench/common/views.d.ts +6 -0
  409. package/vscode/src/vs/workbench/common/views.js +4 -4
  410. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +154 -154
  411. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  412. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +182 -0
  413. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.service.d.ts +55 -0
  414. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.service.js +7 -0
  415. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.d.ts +55 -0
  416. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.service.d.ts +45 -0
  417. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.service.js +6 -0
  418. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +1 -0
  419. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +101 -63
  420. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +26 -3
  421. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +23 -16
  422. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +24 -16
  423. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +90 -42
  424. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsService.service.d.ts +2 -0
  425. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +78 -0
  426. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +32 -0
  427. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  428. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +3 -5
  429. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  430. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.service.d.ts +13 -0
  431. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.service.js +6 -0
  432. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageUtils.js +7 -0
  433. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +10 -13
  434. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +7 -2
  435. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +104 -84
  436. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.d.ts +49 -0
  437. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.js +29 -0
  438. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +1 -1
  439. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +7 -4
  440. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +11 -7
  441. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.d.ts +215 -0
  442. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.js +17 -0
  443. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.d.ts +24 -1
  444. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +50 -1
  445. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +44 -5
  446. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +91 -23
  447. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +16 -5
  448. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +98 -57
  449. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +30 -5
  450. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +41 -32
  451. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +6 -1
  452. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +5 -0
  453. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +159 -0
  454. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +157 -0
  455. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.d.ts +39 -0
  456. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.js +6 -0
  457. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  458. package/vscode/src/vs/workbench/contrib/chat/common/enablement.d.ts +35 -0
  459. package/vscode/src/vs/workbench/contrib/chat/common/enablement.js +102 -0
  460. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  461. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +33 -11
  462. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +271 -36
  463. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +25 -4
  464. package/vscode/src/vs/workbench/contrib/chat/common/languageModelsConfiguration.d.ts +1 -0
  465. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +14 -5
  466. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +63 -45
  467. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +10 -5
  468. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +6 -2
  469. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.d.ts +5 -2
  470. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +5 -2
  471. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.d.ts +1 -0
  472. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.js +4 -1
  473. package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.js +8 -6
  474. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +2 -0
  475. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.d.ts +2 -0
  476. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +18 -4
  477. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.d.ts +2 -3
  478. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.d.ts +20 -0
  479. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +30 -1
  480. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +28 -1
  481. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginSource.d.ts +5 -2
  482. package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.service.d.ts +17 -0
  483. package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.service.js +6 -0
  484. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +9 -8
  485. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +36 -24
  486. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +4 -0
  487. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -0
  488. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +13 -1
  489. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +23 -17
  490. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
  491. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
  492. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +79 -79
  493. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +1 -1
  494. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +20 -0
  495. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +6 -1
  496. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +16 -9
  497. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +1 -0
  498. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +1 -8
  499. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +4 -4
  500. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +5 -2
  501. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +47 -63
  502. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.d.ts +19 -0
  503. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.js +115 -1
  504. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/editFileTool.js +2 -1
  505. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +12 -9
  506. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.d.ts +3 -0
  507. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +39 -11
  508. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.d.ts +13 -0
  509. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +103 -0
  510. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.d.ts +2 -1
  511. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +28 -10
  512. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.d.ts +13 -0
  513. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.js +6 -0
  514. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +13 -0
  515. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.js +11 -0
  516. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +29 -29
  517. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +13 -3
  518. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
  519. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
  520. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  521. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  522. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  523. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +4 -4
  524. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  525. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  526. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  527. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  528. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  529. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  530. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  531. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  532. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  533. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  534. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  535. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  536. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  537. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
  538. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  539. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  540. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  541. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  542. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  543. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  544. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  545. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  546. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  547. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  548. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  549. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  550. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  551. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  552. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  553. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
  554. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  555. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  556. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  557. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  558. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  559. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  560. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  561. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  562. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  563. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  564. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  565. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  566. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  567. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  568. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  569. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  570. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +7 -5
  571. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +69 -66
  572. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +8 -6
  573. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  574. package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +4 -1
  575. package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.js +26 -1
  576. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  577. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  578. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  579. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  580. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  581. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
  582. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  583. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  584. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +42 -42
  585. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  586. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  587. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  588. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +160 -152
  589. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +170 -170
  590. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  591. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  592. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  593. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
  594. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  595. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  596. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
  597. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +7 -7
  598. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
  599. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
  600. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  601. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +4 -2
  602. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  603. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  604. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  605. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  606. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  607. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  608. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
  609. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  610. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  611. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  612. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  613. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  614. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  615. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  616. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  617. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  618. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  619. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  620. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  621. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
  622. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
  623. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  624. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  625. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  626. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  627. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
  628. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  629. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  630. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  631. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  632. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  633. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  634. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  635. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  636. package/vscode/src/vs/workbench/contrib/git/browser/gitService.d.ts +3 -1
  637. package/vscode/src/vs/workbench/contrib/git/browser/gitService.js +6 -0
  638. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  639. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.d.ts +10 -0
  640. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.js +6 -0
  641. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
  642. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  643. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  644. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
  645. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.d.ts +36 -0
  646. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +201 -34
  647. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +37 -35
  648. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
  649. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
  650. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
  651. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +40 -40
  652. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.d.ts +14 -2
  653. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.d.ts +3 -1
  654. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +20 -18
  655. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +6 -2
  656. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +7 -5
  657. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +3 -0
  658. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  659. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  660. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +3 -3
  661. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  662. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
  663. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
  664. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  665. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +4 -4
  666. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  667. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  668. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +2 -2
  669. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  670. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  671. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  672. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  673. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +3 -3
  674. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +7 -7
  675. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +1 -1
  676. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +5 -5
  677. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +1 -1
  678. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  679. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  680. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  681. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  682. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  683. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  684. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  685. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  686. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  687. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  688. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  689. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  690. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  691. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  692. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  693. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  694. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  695. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  696. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  697. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  698. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  699. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +63 -59
  700. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.d.ts +1 -0
  701. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.js +2 -2
  702. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  703. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  704. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  705. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  706. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  707. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  708. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  709. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  710. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  711. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  712. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  713. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
  714. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  715. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  716. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  717. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  718. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  719. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  720. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  721. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  722. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  723. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  724. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  725. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  726. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  727. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  728. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  729. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  730. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  731. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  732. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +3 -2
  733. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +5 -4
  734. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  735. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  736. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  737. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  738. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
  739. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  740. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  741. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  742. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +5 -1
  743. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +4 -0
  744. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  745. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  746. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +5 -1
  747. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +116 -95
  748. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.service.d.ts +4 -0
  749. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  750. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  751. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
  752. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  753. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  754. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  755. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  756. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  757. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  758. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  759. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  760. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  761. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  762. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  763. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  764. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  765. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +28 -6
  766. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
  767. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  768. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +1 -0
  769. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +19 -17
  770. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  771. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  772. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  773. package/vscode/src/vs/workbench/services/editor/browser/editorService.js +15 -0
  774. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.d.ts +12 -19
  775. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.js +12 -6
  776. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +22 -6
  777. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  778. package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +1 -1
  779. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  780. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  781. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  782. package/vscode/src/vs/workbench/services/extensions/common/extensions.js +2 -2
  783. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.d.ts +2 -2
  784. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +90 -90
  785. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  786. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  787. package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +2 -1
  788. package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +1 -0
  789. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  790. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  791. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  792. package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
  793. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.d.ts +1 -1
  794. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  795. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.d.ts +137 -0
  796. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +1079 -0
  797. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.d.ts +11 -0
  798. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +359 -0
  799. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  800. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  801. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  802. package/vscode/src/vs/workbench/services/search/common/search.d.ts +1 -1
  803. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  804. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  805. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  806. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  807. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  808. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  809. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +8 -4
  810. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +14 -7
  811. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  812. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  813. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  814. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  815. package/vscode-dts/vscode.proposed.authIssuers.d.ts +2 -2
  816. package/vscode-dts/vscode.proposed.browser.d.ts +92 -0
  817. package/vscode-dts/vscode.proposed.chatDebug.d.ts +136 -2
  818. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +6 -0
  819. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +7 -0
  820. package/vscode-dts/vscode.proposed.chatProvider.d.ts +51 -0
  821. package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +52 -3
  822. package/vscode-dts/vscode.proposed.d.ts +3 -0
  823. package/vscode-dts/vscode.proposed.findFiles2.d.ts +6 -0
  824. package/vscode-dts/vscode.proposed.findTextInFiles2.d.ts +6 -0
  825. package/vscode-dts/vscode.proposed.mcpServerDefinitions.d.ts +36 -10
  826. package/vscode-dts/vscode.proposed.taskRunOptions.d.ts +34 -0
  827. package/vscode-dts/vscode.proposed.toolInvocationApproveCombination.d.ts +22 -0
  828. package/vscode/src/vs/base/common/parsers.d.ts +0 -32
  829. package/vscode/src/vs/base/common/parsers.js +0 -54
  830. package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.d.ts +0 -47
  831. package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.js +0 -6
  832. package/vscode/src/vs/sessions/contrib/chat/browser/sessionTargetPicker.d.ts +0 -73
  833. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.d.ts +0 -37
  834. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.js +0 -6
  835. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.d.ts +0 -47
  836. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.js +0 -6
  837. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.d.ts +0 -11
  838. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.js +0 -205
  839. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +0 -433
  840. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +0 -1637
  841. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +0 -514
  842. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +0 -1796
@@ -30,7 +30,7 @@ const registry = ( Registry.as(Extensions.Configuration));
30
30
  "workbench.externalBrowser": {
31
31
  type: "string",
32
32
  markdownDescription: ( localize(
33
- 3804,
33
+ 3812,
34
34
  "Configure the browser to use for opening http or https links externally. This can either be the name of the browser (`edge`, `chrome`, `firefox`) or an absolute path to the browser's executable. Will use the system default if not set."
35
35
  )),
36
36
  included: isNative,
@@ -39,12 +39,12 @@ const registry = ( Registry.as(Extensions.Configuration));
39
39
  "workbench.editor.titleScrollbarSizing": {
40
40
  type: "string",
41
41
  enum: ["default", "large"],
42
- enumDescriptions: [( localize(3805, "The default size.")), ( localize(
43
- 3806,
42
+ enumDescriptions: [( localize(3813, "The default size.")), ( localize(
43
+ 3814,
44
44
  "Increases the size, so it can be grabbed more easily with the mouse."
45
45
  ))],
46
46
  description: ( localize(
47
- 3807,
47
+ 3815,
48
48
  "Controls the height of the scrollbars used for tabs and breadcrumbs in the editor title area."
49
49
  )),
50
50
  default: "default"
@@ -52,9 +52,9 @@ const registry = ( Registry.as(Extensions.Configuration));
52
52
  "workbench.editor.titleScrollbarVisibility": {
53
53
  type: "string",
54
54
  enum: ["auto", "visible", "hidden"],
55
- enumDescriptions: [( localize(3808, "The horizontal scrollbar will be visible only when necessary.")), ( localize(3809, "The horizontal scrollbar will always be visible.")), ( localize(3810, "The horizontal scrollbar will always be hidden."))],
55
+ enumDescriptions: [( localize(3816, "The horizontal scrollbar will be visible only when necessary.")), ( localize(3817, "The horizontal scrollbar will always be visible.")), ( localize(3818, "The horizontal scrollbar will always be hidden."))],
56
56
  description: ( localize(
57
- 3811,
57
+ 3819,
58
58
  "Controls the visibility of the scrollbars used for tabs and breadcrumbs in the editor title area."
59
59
  )),
60
60
  default: "auto"
@@ -62,12 +62,12 @@ const registry = ( Registry.as(Extensions.Configuration));
62
62
  [LayoutSettings.EDITOR_TABS_MODE]: {
63
63
  "type": "string",
64
64
  "enum": [EditorTabsMode.MULTIPLE, EditorTabsMode.SINGLE, EditorTabsMode.NONE],
65
- "enumDescriptions": [( localize(3812, "Each editor is displayed as a tab in the editor title area.")), ( localize(
66
- 3813,
65
+ "enumDescriptions": [( localize(3820, "Each editor is displayed as a tab in the editor title area.")), ( localize(
66
+ 3821,
67
67
  "The active editor is displayed as a single large tab in the editor title area."
68
- )), ( localize(3814, "The editor title area is not displayed."))],
68
+ )), ( localize(3822, "The editor title area is not displayed."))],
69
69
  "description": ( localize(
70
- 3815,
70
+ 3823,
71
71
  "Controls whether opened editors should show as individual tabs, one single large tab or if the title area should not be shown."
72
72
  )),
73
73
  "default": "multiple"
@@ -80,23 +80,23 @@ const registry = ( Registry.as(Extensions.Configuration));
80
80
  EditorActionsLocation.HIDDEN
81
81
  ],
82
82
  "markdownEnumDescriptions": [( localize(
83
- 3816,
83
+ 3824,
84
84
  "Show editor actions in the window title bar when {0} is set to {1}. Otherwise, editor actions are shown in the editor tab bar.",
85
85
  "`#workbench.editor.showTabs#`",
86
86
  "`none`"
87
87
  )), ( localize(
88
- 3817,
88
+ 3825,
89
89
  "Show editor actions in the window title bar. If {0} is set to {1}, editor actions are hidden.",
90
90
  "`#window.customTitleBarVisibility#`",
91
91
  "`never`"
92
- )), ( localize(3818, "Editor actions are not shown."))],
93
- "markdownDescription": ( localize(3819, "Controls where the editor actions are shown.")),
92
+ )), ( localize(3826, "Editor actions are not shown."))],
93
+ "markdownDescription": ( localize(3827, "Controls where the editor actions are shown.")),
94
94
  "default": "default"
95
95
  },
96
96
  "workbench.editor.alwaysShowEditorActions": {
97
97
  "type": "boolean",
98
98
  "markdownDescription": ( localize(
99
- 3820,
99
+ 3828,
100
100
  "Controls whether to always show the editor actions, even when the editor group is not active."
101
101
  )),
102
102
  "default": false
@@ -104,7 +104,7 @@ const registry = ( Registry.as(Extensions.Configuration));
104
104
  "workbench.editor.wrapTabs": {
105
105
  "type": "boolean",
106
106
  "markdownDescription": ( localize(
107
- 3821,
107
+ 3829,
108
108
  "Controls whether tabs should be wrapped over multiple lines when exceeding available space or whether a scrollbar should appear instead. This value is ignored when {0} is not set to '{1}'.",
109
109
  "`#workbench.editor.showTabs#`",
110
110
  "`multiple`"
@@ -114,7 +114,7 @@ const registry = ( Registry.as(Extensions.Configuration));
114
114
  "workbench.editor.scrollToSwitchTabs": {
115
115
  "type": "boolean",
116
116
  "markdownDescription": ( localize(
117
- 3822,
117
+ 3830,
118
118
  "Controls whether scrolling over tabs will open them or not. By default tabs will only reveal upon scrolling, but not open. You can press and hold the Shift-key while scrolling to change this behavior for that duration. This value is ignored when {0} is not set to {1}.",
119
119
  "`#workbench.editor.showTabs#`",
120
120
  "`multiple`"
@@ -124,7 +124,7 @@ const registry = ( Registry.as(Extensions.Configuration));
124
124
  "workbench.editor.highlightModifiedTabs": {
125
125
  "type": "boolean",
126
126
  "markdownDescription": ( localize(
127
- 3823,
127
+ 3831,
128
128
  "Controls whether a top border is drawn on tabs for editors that have unsaved changes. This value is ignored when {0} is not set to {1}.",
129
129
  "`#workbench.editor.showTabs#`",
130
130
  `multiple`
@@ -133,18 +133,18 @@ const registry = ( Registry.as(Extensions.Configuration));
133
133
  },
134
134
  "workbench.editor.decorations.badges": {
135
135
  "type": "boolean",
136
- "markdownDescription": ( localize(3824, "Controls whether editor file decorations should use badges.")),
136
+ "markdownDescription": ( localize(3832, "Controls whether editor file decorations should use badges.")),
137
137
  "default": true
138
138
  },
139
139
  "workbench.editor.decorations.colors": {
140
140
  "type": "boolean",
141
- "markdownDescription": ( localize(3825, "Controls whether editor file decorations should use colors.")),
141
+ "markdownDescription": ( localize(3833, "Controls whether editor file decorations should use colors.")),
142
142
  "default": true
143
143
  },
144
144
  [CustomEditorLabelService.SETTING_ID_ENABLED]: {
145
145
  "type": "boolean",
146
146
  "markdownDescription": ( localize(
147
- 3826,
147
+ 3834,
148
148
  "Controls whether the custom workbench editor labels should be applied."
149
149
  )),
150
150
  "default": true
@@ -153,27 +153,27 @@ const registry = ( Registry.as(Extensions.Configuration));
153
153
  "type": "object",
154
154
  "markdownDescription": (() => {
155
155
  let customEditorLabelDescription = ( localize(
156
- 3827,
156
+ 3835,
157
157
  "Controls the rendering of the editor label. Each __Item__ is a pattern that matches a file path. Both relative and absolute file paths are supported. The relative path must include the WORKSPACE_FOLDER (e.g `WORKSPACE_FOLDER/src/**.tsx` or `*/src/**.tsx`). Absolute patterns must start with a `/`. In case multiple patterns match, the longest matching path will be picked. Each __Value__ is the template for the rendered editor when the __Item__ matches. Variables are substituted based on the context:"
158
158
  ));
159
159
  customEditorLabelDescription += "\n- " + [( localize(
160
- 3828,
160
+ 3836,
161
161
  "`${dirname}`: name of the folder in which the file is located (e.g. `WORKSPACE_FOLDER/folder/file.txt -> folder`)."
162
162
  )), ( localize(
163
- 3829,
163
+ 3837,
164
164
  "`${dirname(N)}`: name of the nth parent folder in which the file is located (e.g. `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). Folders can be picked from the start of the path by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). If the __Item__ is an absolute pattern path, the first folder (`N=-1`) refers to the first folder in the absolute path, otherwise it corresponds to the workspace folder."
165
165
  )), ( localize(
166
- 3830,
166
+ 3838,
167
167
  "`${filename}`: name of the file without the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> file`)."
168
168
  )), ( localize(
169
- 3831,
169
+ 3839,
170
170
  "`${extname}`: the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> txt`)."
171
171
  )), ( localize(
172
- 3832,
172
+ 3840,
173
173
  "`${extname(N)}`: the nth extension of the file separated by '.' (e.g. `N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1`). Extension can be picked from the start of the extension by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`)."
174
174
  ))].join("\n- ");
175
175
  customEditorLabelDescription += "\n\n" + ( localize(
176
- 3833,
176
+ 3841,
177
177
  "Example: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` will render a file `WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)`."
178
178
  ));
179
179
  return customEditorLabelDescription;
@@ -181,7 +181,7 @@ const registry = ( Registry.as(Extensions.Configuration));
181
181
  additionalProperties: {
182
182
  type: ["string", "null"],
183
183
  markdownDescription: ( localize(
184
- 3834,
184
+ 3842,
185
185
  "The template which should be rendered when the pattern matches. May include the variables ${dirname}, ${filename} and ${extname}."
186
186
  )),
187
187
  minLength: 1,
@@ -193,34 +193,34 @@ const registry = ( Registry.as(Extensions.Configuration));
193
193
  "type": "string",
194
194
  "enum": ["default", "short", "medium", "long"],
195
195
  "enumDescriptions": [( localize(
196
- 3835,
196
+ 3843,
197
197
  "Show the name of the file. When tabs are enabled and two files have the same name in one group the distinguishing sections of each file's path are added. When tabs are disabled, the path relative to the workspace folder is shown if the editor is active."
198
- )), ( localize(3836, "Show the name of the file followed by its directory name.")), ( localize(
199
- 3837,
198
+ )), ( localize(3844, "Show the name of the file followed by its directory name.")), ( localize(
199
+ 3845,
200
200
  "Show the name of the file followed by its path relative to the workspace folder."
201
- )), ( localize(3838, "Show the name of the file followed by its absolute path."))],
201
+ )), ( localize(3846, "Show the name of the file followed by its absolute path."))],
202
202
  "default": "default",
203
- "description": ( localize(3839, "Controls the format of the label for an editor."))
203
+ "description": ( localize(3847, "Controls the format of the label for an editor."))
204
204
  },
205
205
  "workbench.editor.untitled.labelFormat": {
206
206
  "type": "string",
207
207
  "enum": ["content", "name"],
208
208
  "enumDescriptions": [( localize(
209
- 3840,
209
+ 3848,
210
210
  "The name of the untitled file is derived from the contents of its first line unless it has an associated file path. It will fallback to the name in case the line is empty or contains no word characters."
211
211
  )), ( localize(
212
- 3841,
212
+ 3849,
213
213
  "The name of the untitled file is not derived from the contents of the file."
214
214
  ))],
215
215
  "default": "content",
216
- "description": ( localize(3842, "Controls the format of the label for an untitled editor."))
216
+ "description": ( localize(3850, "Controls the format of the label for an untitled editor."))
217
217
  },
218
218
  "workbench.editor.empty.hint": {
219
219
  "type": "string",
220
220
  "enum": ["text", "hidden"],
221
221
  "default": "text",
222
222
  "markdownDescription": ( localize(
223
- 3843,
223
+ 3851,
224
224
  "Controls if the empty editor text hint should be visible in the editor."
225
225
  ))
226
226
  },
@@ -228,7 +228,7 @@ const registry = ( Registry.as(Extensions.Configuration));
228
228
  type: "boolean",
229
229
  default: true,
230
230
  description: ( localize(
231
- 3844,
231
+ 3852,
232
232
  "Controls whether the language in a text editor is automatically detected unless the language has been explicitly set by the language picker. This can also be scoped by language so you can specify which languages you do not want to be switched off of. This is useful for languages like Markdown that often contain other languages that might trick language detection into thinking it's the embedded language and not Markdown."
233
233
  )),
234
234
  scope: ConfigurationScope.LANGUAGE_OVERRIDABLE
@@ -237,7 +237,7 @@ const registry = ( Registry.as(Extensions.Configuration));
237
237
  type: "boolean",
238
238
  default: true,
239
239
  description: ( localize(
240
- 3845,
240
+ 3853,
241
241
  "Enables use of editor history in language detection. This causes automatic language detection to favor languages that have been recently opened and allows for automatic language detection to operate with smaller inputs."
242
242
  ))
243
243
  },
@@ -245,7 +245,7 @@ const registry = ( Registry.as(Extensions.Configuration));
245
245
  type: "boolean",
246
246
  default: false,
247
247
  description: ( localize(
248
- 3846,
248
+ 3854,
249
249
  "When enabled, a language detection model that takes into account editor history will be given higher precedence."
250
250
  ))
251
251
  },
@@ -256,18 +256,18 @@ const registry = ( Registry.as(Extensions.Configuration));
256
256
  "notebookEditors": true
257
257
  },
258
258
  description: ( localize(
259
- 3847,
259
+ 3855,
260
260
  "When enabled, shows a status bar Quick Fix when the editor language doesn't match detected content language."
261
261
  )),
262
262
  additionalProperties: false,
263
263
  properties: {
264
264
  untitledEditors: {
265
265
  type: "boolean",
266
- description: ( localize(3848, "Show in untitled text editors"))
266
+ description: ( localize(3856, "Show in untitled text editors"))
267
267
  },
268
268
  notebookEditors: {
269
269
  type: "boolean",
270
- description: ( localize(3849, "Show in notebook editors"))
270
+ description: ( localize(3857, "Show in notebook editors"))
271
271
  }
272
272
  }
273
273
  },
@@ -276,7 +276,7 @@ const registry = ( Registry.as(Extensions.Configuration));
276
276
  enum: ["left", "right"],
277
277
  default: "right",
278
278
  markdownDescription: ( localize(
279
- 3850,
279
+ 3858,
280
280
  "Controls the position of the editor's tabs action buttons (close, unpin). This value is ignored when {0} is not set to {1}.",
281
281
  "`#workbench.editor.showTabs#`",
282
282
  "`multiple`"
@@ -285,18 +285,18 @@ const registry = ( Registry.as(Extensions.Configuration));
285
285
  "workbench.editor.tabActionCloseVisibility": {
286
286
  type: "boolean",
287
287
  default: true,
288
- description: ( localize(3851, "Controls the visibility of the tab close action button."))
288
+ description: ( localize(3859, "Controls the visibility of the tab close action button."))
289
289
  },
290
290
  "workbench.editor.tabActionUnpinVisibility": {
291
291
  type: "boolean",
292
292
  default: true,
293
- description: ( localize(3852, "Controls the visibility of the tab unpin action button."))
293
+ description: ( localize(3860, "Controls the visibility of the tab unpin action button."))
294
294
  },
295
295
  "workbench.editor.showTabIndex": {
296
296
  "type": "boolean",
297
297
  "default": false,
298
298
  "markdownDescription": ( localize(
299
- 3853,
299
+ 3861,
300
300
  "When enabled, will show the tab index. This value is ignored when {0} is not set to {1}.",
301
301
  "`#workbench.editor.showTabs#`",
302
302
  "`multiple`"
@@ -306,15 +306,15 @@ const registry = ( Registry.as(Extensions.Configuration));
306
306
  "type": "string",
307
307
  "enum": ["fit", "shrink", "fixed"],
308
308
  "default": "fit",
309
- "enumDescriptions": [( localize(3854, "Always keep tabs large enough to show the full editor label.")), ( localize(
310
- 3855,
309
+ "enumDescriptions": [( localize(3862, "Always keep tabs large enough to show the full editor label.")), ( localize(
310
+ 3863,
311
311
  "Allow tabs to get smaller when the available space is not enough to show all tabs at once."
312
312
  )), ( localize(
313
- 3856,
313
+ 3864,
314
314
  "Make all tabs the same size, while allowing them to get smaller when the available space is not enough to show all tabs at once."
315
315
  ))],
316
316
  "markdownDescription": ( localize(
317
- 3857,
317
+ 3865,
318
318
  "Controls the size of editor tabs. This value is ignored when {0} is not set to {1}.",
319
319
  "`#workbench.editor.showTabs#`",
320
320
  "`multiple`"
@@ -325,7 +325,7 @@ const registry = ( Registry.as(Extensions.Configuration));
325
325
  "default": 50,
326
326
  "minimum": 38,
327
327
  "markdownDescription": ( localize(
328
- 3858,
328
+ 3866,
329
329
  "Controls the minimum width of tabs when {0} size is set to {1}.",
330
330
  "`#workbench.editor.tabSizing#`",
331
331
  "`fixed`"
@@ -336,7 +336,7 @@ const registry = ( Registry.as(Extensions.Configuration));
336
336
  "default": 160,
337
337
  "minimum": 38,
338
338
  "markdownDescription": ( localize(
339
- 3859,
339
+ 3867,
340
340
  "Controls the maximum width of tabs when {0} size is set to {1}.",
341
341
  "`#workbench.editor.tabSizing#`",
342
342
  "`fixed`"
@@ -347,7 +347,7 @@ const registry = ( Registry.as(Extensions.Configuration));
347
347
  "enum": ["default", "compact"],
348
348
  "default": "default",
349
349
  "markdownDescription": ( localize(
350
- 3860,
350
+ 3868,
351
351
  "Controls the height of editor tabs. Also applies to the title control bar when {0} is not set to {1}.",
352
352
  "`#workbench.editor.showTabs#`",
353
353
  "`multiple`"
@@ -357,15 +357,15 @@ const registry = ( Registry.as(Extensions.Configuration));
357
357
  "type": "string",
358
358
  "enum": ["normal", "compact", "shrink"],
359
359
  "default": "normal",
360
- "enumDescriptions": [( localize(3861, "A pinned tab inherits the look of non pinned tabs.")), ( localize(
361
- 3862,
360
+ "enumDescriptions": [( localize(3869, "A pinned tab inherits the look of non pinned tabs.")), ( localize(
361
+ 3870,
362
362
  "A pinned tab will show in a compact form with only icon or first letter of the editor name."
363
363
  )), ( localize(
364
- 3863,
364
+ 3871,
365
365
  "A pinned tab shrinks to a compact fixed size showing parts of the editor name."
366
366
  ))],
367
367
  "markdownDescription": ( localize(
368
- 3864,
368
+ 3872,
369
369
  "Controls the size of pinned editor tabs. Pinned tabs are sorted to the beginning of all opened tabs and typically do not close until unpinned. This value is ignored when {0} is not set to {1}.",
370
370
  "`#workbench.editor.showTabs#`",
371
371
  "`multiple`"
@@ -375,7 +375,7 @@ const registry = ( Registry.as(Extensions.Configuration));
375
375
  "type": "boolean",
376
376
  "default": false,
377
377
  "markdownDescription": ( localize(
378
- 3865,
378
+ 3873,
379
379
  "When enabled, displays pinned tabs in a separate row above all other tabs. This value is ignored when {0} is not set to {1}.",
380
380
  "`#workbench.editor.showTabs#`",
381
381
  "`multiple`"
@@ -386,11 +386,11 @@ const registry = ( Registry.as(Extensions.Configuration));
386
386
  "enum": ["keyboardAndMouse", "keyboard", "mouse", "never"],
387
387
  "default": "keyboardAndMouse",
388
388
  "enumDescriptions": [( localize(
389
- 3866,
389
+ 3874,
390
390
  "Always prevent closing the pinned editor when using mouse middle click or keyboard."
391
- )), ( localize(3867, "Prevent closing the pinned editor when using the keyboard.")), ( localize(3868, "Prevent closing the pinned editor when using mouse middle click.")), ( localize(3869, "Never prevent closing a pinned editor."))],
391
+ )), ( localize(3875, "Prevent closing the pinned editor when using the keyboard.")), ( localize(3876, "Prevent closing the pinned editor when using mouse middle click.")), ( localize(3877, "Never prevent closing a pinned editor."))],
392
392
  description: ( localize(
393
- 3870,
393
+ 3878,
394
394
  "Controls whether pinned editors should close when keyboard or middle mouse click is used for closing."
395
395
  ))
396
396
  },
@@ -399,16 +399,16 @@ const registry = ( Registry.as(Extensions.Configuration));
399
399
  "enum": ["auto", "distribute", "split"],
400
400
  "default": "auto",
401
401
  "enumDescriptions": [( localize(
402
- 3871,
402
+ 3879,
403
403
  "Splits the active editor group to equal parts, unless all editor groups are already in equal parts. In that case, splits all the editor groups to equal parts."
404
- )), ( localize(3872, "Splits all the editor groups to equal parts.")), ( localize(3873, "Splits the active editor group to equal parts."))],
405
- "description": ( localize(3874, "Controls the size of editor groups when splitting them."))
404
+ )), ( localize(3880, "Splits all the editor groups to equal parts.")), ( localize(3881, "Splits the active editor group to equal parts."))],
405
+ "description": ( localize(3882, "Controls the size of editor groups when splitting them."))
406
406
  },
407
407
  "workbench.editor.splitOnDragAndDrop": {
408
408
  "type": "boolean",
409
409
  "default": true,
410
410
  "description": ( localize(
411
- 3875,
411
+ 3883,
412
412
  "Controls if editor groups can be split from drag and drop operations by dropping an editor or file on the edges of the editor area."
413
413
  ))
414
414
  },
@@ -416,14 +416,14 @@ const registry = ( Registry.as(Extensions.Configuration));
416
416
  "type": "boolean",
417
417
  "default": true,
418
418
  "markdownDescription": ( localize(
419
- 3876,
419
+ 3884,
420
420
  "Controls if editors can be dragged out of the window to open them in a new window. Press and hold the `Alt` key while dragging to toggle this dynamically."
421
421
  ))
422
422
  },
423
423
  "workbench.editor.focusRecentEditorAfterClose": {
424
424
  "type": "boolean",
425
425
  "description": ( localize(
426
- 3877,
426
+ 3885,
427
427
  "Controls whether editors are closed in most recently used order or from left to right."
428
428
  )),
429
429
  "default": true
@@ -431,7 +431,7 @@ const registry = ( Registry.as(Extensions.Configuration));
431
431
  "workbench.editor.showIcons": {
432
432
  "type": "boolean",
433
433
  "description": ( localize(
434
- 3878,
434
+ 3886,
435
435
  "Controls whether opened editors should show with an icon or not. This requires a file icon theme to be enabled as well."
436
436
  )),
437
437
  "default": true
@@ -439,7 +439,7 @@ const registry = ( Registry.as(Extensions.Configuration));
439
439
  "workbench.editor.enablePreview": {
440
440
  "type": "boolean",
441
441
  "description": ( localize(
442
- 3879,
442
+ 3887,
443
443
  "Controls whether preview mode is used when editors open. There is a maximum of one preview mode editor per editor group. This editor displays its filename in italics on its tab or title label and in the Open Editors view. Its contents will be replaced by the next editor opened in preview mode. Making a change in a preview mode editor will persist it, as will a double-click on its label, or the 'Keep Open' option in its label context menu. Opening a file from Explorer with a double-click persists its editor immediately."
444
444
  )),
445
445
  "default": true
@@ -447,7 +447,7 @@ const registry = ( Registry.as(Extensions.Configuration));
447
447
  "workbench.editor.enablePreviewFromQuickOpen": {
448
448
  "type": "boolean",
449
449
  "markdownDescription": ( localize(
450
- 3880,
450
+ 3888,
451
451
  "Controls whether editors opened from Quick Open show as preview editors. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). When enabled, hold Ctrl before selection to open an editor as a non-preview. This value is ignored when {0} is not set to {1}.",
452
452
  "`#workbench.editor.showTabs#`",
453
453
  "`multiple`"
@@ -457,7 +457,7 @@ const registry = ( Registry.as(Extensions.Configuration));
457
457
  "workbench.editor.enablePreviewFromCodeNavigation": {
458
458
  "type": "boolean",
459
459
  "markdownDescription": ( localize(
460
- 3881,
460
+ 3889,
461
461
  "Controls whether editors remain in preview when a code navigation is started from them. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). This value is ignored when {0} is not set to {1}.",
462
462
  "`#workbench.editor.showTabs#`",
463
463
  "`multiple`"
@@ -467,7 +467,7 @@ const registry = ( Registry.as(Extensions.Configuration));
467
467
  "workbench.editor.closeOnFileDelete": {
468
468
  "type": "boolean",
469
469
  "description": ( localize(
470
- 3882,
470
+ 3890,
471
471
  "Controls whether editors showing a file that was opened during the session should close automatically when getting deleted or renamed by some other process. Disabling this will keep the editor open on such an event. Note that deleting from within the application will always close the editor and that editors with unsaved changes will never close to preserve your data."
472
472
  )),
473
473
  "default": false
@@ -477,7 +477,7 @@ const registry = ( Registry.as(Extensions.Configuration));
477
477
  "enum": ["left", "right", "first", "last"],
478
478
  "default": "right",
479
479
  "markdownDescription": ( localize(
480
- 3883,
480
+ 3891,
481
481
  "Controls where editors open. Select {0} or {1} to open editors to the left or right of the currently active one. Select {2} or {3} to open editors independently from the currently active one.",
482
482
  "`left`",
483
483
  "`right`",
@@ -490,14 +490,14 @@ const registry = ( Registry.as(Extensions.Configuration));
490
490
  "enum": ["right", "down"],
491
491
  "default": "right",
492
492
  "markdownDescription": ( localize(
493
- 3884,
493
+ 3892,
494
494
  "Controls the default direction of editors that are opened side by side (for example, from the Explorer). By default, editors will open on the right hand side of the currently active one. If changed to `down`, the editors will open below the currently active one. This also impacts the split editor action in the editor toolbar."
495
495
  ))
496
496
  },
497
497
  "workbench.editor.closeEmptyGroups": {
498
498
  "type": "boolean",
499
499
  "description": ( localize(
500
- 3885,
500
+ 3893,
501
501
  "Controls the behavior of empty editor groups when the last tab in the group is closed. When enabled, empty groups will automatically close. When disabled, empty groups will remain part of the grid."
502
502
  )),
503
503
  "default": true
@@ -505,7 +505,7 @@ const registry = ( Registry.as(Extensions.Configuration));
505
505
  "workbench.editor.revealIfOpen": {
506
506
  "type": "boolean",
507
507
  "description": ( localize(
508
- 3886,
508
+ 3894,
509
509
  "Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored, such as when forcing an editor to open in a specific group or to the side of the currently active group."
510
510
  )),
511
511
  "default": false
@@ -513,21 +513,28 @@ const registry = ( Registry.as(Extensions.Configuration));
513
513
  "workbench.editor.useModal": {
514
514
  "type": "string",
515
515
  "enum": ["off", "some", "all"],
516
- "enumDescriptions": [( localize(3887, "Editors never open in a modal overlay.")), ( localize(
517
- 3888,
516
+ "enumDescriptions": [( localize(3895, "Editors never open in a modal overlay.")), ( localize(
517
+ 3896,
518
518
  "Certain editors such as Settings and Keyboard Shortcuts may open in a centered modal overlay."
519
- )), ( localize(3889, "All editors open in a centered modal overlay."))],
520
- "description": ( localize(3890, "Controls whether editors open in a modal overlay.")),
519
+ )), ( localize(3897, "All editors open in a centered modal overlay."))],
520
+ "description": ( localize(3898, "Controls whether editors open in a modal overlay.")),
521
521
  "default": product.quality !== "stable" ? "some" : "off",
522
522
  tags: ["experimental"],
523
523
  experiment: {
524
524
  mode: "auto"
525
525
  }
526
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
533
+ },
527
534
  "workbench.editor.swipeToNavigate": {
528
535
  "type": "boolean",
529
536
  "description": ( localize(
530
- 3891,
537
+ 3900,
531
538
  "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'."
532
539
  )),
533
540
  "default": false,
@@ -536,7 +543,7 @@ const registry = ( Registry.as(Extensions.Configuration));
536
543
  "workbench.editor.mouseBackForwardToNavigate": {
537
544
  "type": "boolean",
538
545
  "description": ( localize(
539
- 3892,
546
+ 3901,
540
547
  "Enables the use of mouse buttons four and five for commands 'Go Back' and 'Go Forward'."
541
548
  )),
542
549
  "default": true
@@ -546,15 +553,15 @@ const registry = ( Registry.as(Extensions.Configuration));
546
553
  "enum": ["default", "editorGroup", "editor"],
547
554
  "default": "default",
548
555
  "markdownDescription": ( localize(
549
- 3893,
556
+ 3902,
550
557
  "Controls the scope of history navigation in editors for commands such as 'Go Back' and 'Go Forward'."
551
558
  )),
552
- "enumDescriptions": [( localize(3894, "Navigate across all opened editors and editor groups.")), ( localize(3895, "Navigate only in editors of the active editor group.")), ( localize(3896, "Navigate only in the active editor."))]
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."))]
553
560
  },
554
561
  "workbench.editor.restoreViewState": {
555
562
  "type": "boolean",
556
563
  "markdownDescription": ( localize(
557
- 3897,
564
+ 3906,
558
565
  "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.",
559
566
  "`#workbench.editor.sharedViewState#`"
560
567
  )),
@@ -564,7 +571,7 @@ const registry = ( Registry.as(Extensions.Configuration));
564
571
  "workbench.editor.sharedViewState": {
565
572
  "type": "boolean",
566
573
  "description": ( localize(
567
- 3898,
574
+ 3907,
568
575
  "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."
569
576
  )),
570
577
  "default": false
@@ -572,7 +579,7 @@ const registry = ( Registry.as(Extensions.Configuration));
572
579
  "workbench.editor.restoreEditors": {
573
580
  "type": "boolean",
574
581
  "description": ( localize(
575
- 3899,
582
+ 3908,
576
583
  "Controls whether editors are restored on startup. When disabled, only dirty editors will be restored from the previous session."
577
584
  )),
578
585
  "default": true
@@ -582,16 +589,16 @@ const registry = ( Registry.as(Extensions.Configuration));
582
589
  "enum": ["vertical", "horizontal"],
583
590
  "default": "horizontal",
584
591
  "markdownDescription": ( localize(
585
- 3900,
592
+ 3909,
586
593
  "Controls the layout for when an editor is split in an editor group to be either vertical or horizontal."
587
594
  )),
588
- "enumDescriptions": [( localize(3901, "Editors are positioned from top to bottom.")), ( localize(3902, "Editors are positioned from left to right."))]
595
+ "enumDescriptions": [( localize(3910, "Editors are positioned from top to bottom.")), ( localize(3911, "Editors are positioned from left to right."))]
589
596
  },
590
597
  "workbench.editor.centeredLayoutAutoResize": {
591
598
  "type": "boolean",
592
599
  "default": true,
593
600
  "description": ( localize(
594
- 3903,
601
+ 3912,
595
602
  "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."
596
603
  ))
597
604
  },
@@ -599,7 +606,7 @@ const registry = ( Registry.as(Extensions.Configuration));
599
606
  "type": "boolean",
600
607
  "default": false,
601
608
  "description": ( localize(
602
- 3904,
609
+ 3913,
603
610
  "Controls whether the centered layout tries to maintain constant width when the window is resized."
604
611
  ))
605
612
  },
@@ -608,24 +615,24 @@ const registry = ( Registry.as(Extensions.Configuration));
608
615
  "enum": ["maximize", "expand", "off"],
609
616
  "default": "expand",
610
617
  "markdownDescription": ( localize(
611
- 3905,
618
+ 3914,
612
619
  "Controls how the editor group is resized when double clicking on a tab. This value is ignored when {0} is not set to {1}.",
613
620
  "`#workbench.editor.showTabs#`",
614
621
  "`multiple`"
615
622
  )),
616
623
  "enumDescriptions": [( localize(
617
- 3906,
624
+ 3915,
618
625
  "All other editor groups are hidden and the current editor group is maximized to take up the entire editor area."
619
626
  )), ( localize(
620
- 3907,
627
+ 3916,
621
628
  "The editor group takes as much space as possible by making all other editor groups as small as possible."
622
- )), ( localize(3908, "No editor group is resized when double clicking on a tab."))]
629
+ )), ( localize(3917, "No editor group is resized when double clicking on a tab."))]
623
630
  },
624
631
  "workbench.editor.limit.enabled": {
625
632
  "type": "boolean",
626
633
  "default": false,
627
634
  "description": ( localize(
628
- 3909,
635
+ 3918,
629
636
  "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."
630
637
  ))
631
638
  },
@@ -634,7 +641,7 @@ const registry = ( Registry.as(Extensions.Configuration));
634
641
  "default": 10,
635
642
  "exclusiveMinimum": 0,
636
643
  "markdownDescription": ( localize(
637
- 3910,
644
+ 3919,
638
645
  "Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",
639
646
  "`#workbench.editor.limit.perEditorGroup#`"
640
647
  ))
@@ -643,7 +650,7 @@ const registry = ( Registry.as(Extensions.Configuration));
643
650
  "type": "boolean",
644
651
  "default": false,
645
652
  "description": ( localize(
646
- 3911,
653
+ 3920,
647
654
  "Controls if the maximum number of opened editors should exclude dirty editors for counting towards the configured limit."
648
655
  ))
649
656
  },
@@ -651,7 +658,7 @@ const registry = ( Registry.as(Extensions.Configuration));
651
658
  "type": "boolean",
652
659
  "default": false,
653
660
  "description": ( localize(
654
- 3912,
661
+ 3921,
655
662
  "Controls if the limit of maximum opened editors should apply per editor group or across all editor groups."
656
663
  ))
657
664
  },
@@ -659,7 +666,7 @@ const registry = ( Registry.as(Extensions.Configuration));
659
666
  "type": "boolean",
660
667
  "default": true,
661
668
  "description": ( localize(
662
- 3913,
669
+ 3922,
663
670
  "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."
664
671
  )),
665
672
  "scope": ConfigurationScope.RESOURCE
@@ -669,7 +676,7 @@ const registry = ( Registry.as(Extensions.Configuration));
669
676
  "default": 256,
670
677
  "minimum": 1,
671
678
  "description": ( localize(
672
- 3914,
679
+ 3923,
673
680
  "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."
674
681
  )),
675
682
  "scope": ConfigurationScope.RESOURCE
@@ -679,7 +686,7 @@ const registry = ( Registry.as(Extensions.Configuration));
679
686
  "default": 50,
680
687
  "minimum": 0,
681
688
  "description": ( localize(
682
- 3915,
689
+ 3924,
683
690
  "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."
684
691
  )),
685
692
  "scope": ConfigurationScope.RESOURCE
@@ -692,7 +699,7 @@ const registry = ( Registry.as(Extensions.Configuration));
692
699
  }
693
700
  },
694
701
  "markdownDescription": ( localize(
695
- 3916,
702
+ 3925,
696
703
  "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."
697
704
  )),
698
705
  "scope": ConfigurationScope.RESOURCE
@@ -702,7 +709,7 @@ const registry = ( Registry.as(Extensions.Configuration));
702
709
  "default": 10,
703
710
  "minimum": 1,
704
711
  "markdownDescription": ( localize(
705
- 3917,
712
+ 3926,
706
713
  "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."
707
714
  )),
708
715
  "scope": ConfigurationScope.RESOURCE
@@ -710,7 +717,7 @@ const registry = ( Registry.as(Extensions.Configuration));
710
717
  "workbench.commandPalette.history": {
711
718
  "type": "number",
712
719
  "description": ( localize(
713
- 3918,
720
+ 3927,
714
721
  "Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."
715
722
  )),
716
723
  "default": 50,
@@ -719,7 +726,7 @@ const registry = ( Registry.as(Extensions.Configuration));
719
726
  "workbench.commandPalette.preserveInput": {
720
727
  "type": "boolean",
721
728
  "description": ( localize(
722
- 3919,
729
+ 3928,
723
730
  "Controls whether the last typed input to the command palette should be restored when opening it the next time."
724
731
  )),
725
732
  "default": false
@@ -728,7 +735,7 @@ const registry = ( Registry.as(Extensions.Configuration));
728
735
  "type": "boolean",
729
736
  tags: ["experimental"],
730
737
  "description": ( localize(
731
- 3920,
738
+ 3929,
732
739
  "Controls whether the command palette should have a list of commonly used commands."
733
740
  )),
734
741
  "default": false
@@ -736,16 +743,16 @@ const registry = ( Registry.as(Extensions.Configuration));
736
743
  "workbench.commandPalette.experimental.askChatLocation": {
737
744
  "type": "string",
738
745
  tags: ["experimental"],
739
- "description": ( localize(3921, "Controls where the command palette should ask chat questions.")),
746
+ "description": ( localize(3930, "Controls where the command palette should ask chat questions.")),
740
747
  "default": "chatView",
741
748
  enum: ["chatView", "quickChat"],
742
- enumDescriptions: [( localize(3922, "Ask chat questions in the Chat view.")), ( localize(3923, "Ask chat questions in Quick Chat."))]
749
+ enumDescriptions: [( localize(3931, "Ask chat questions in the Chat view.")), ( localize(3932, "Ask chat questions in Quick Chat."))]
743
750
  },
744
751
  "workbench.commandPalette.showAskInChat": {
745
752
  "type": "boolean",
746
753
  tags: ["experimental"],
747
754
  "description": ( localize(
748
- 3924,
755
+ 3933,
749
756
  "Controls whether the command palette shows 'Ask in Chat' option at the bottom."
750
757
  )),
751
758
  "default": true
@@ -754,7 +761,7 @@ const registry = ( Registry.as(Extensions.Configuration));
754
761
  "type": "boolean",
755
762
  tags: ["experimental"],
756
763
  "description": ( localize(
757
- 3925,
764
+ 3934,
758
765
  "Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."
759
766
  )),
760
767
  "default": true
@@ -762,7 +769,7 @@ const registry = ( Registry.as(Extensions.Configuration));
762
769
  "workbench.quickOpen.closeOnFocusLost": {
763
770
  "type": "boolean",
764
771
  "description": ( localize(
765
- 3926,
772
+ 3935,
766
773
  "Controls whether Quick Open should close automatically once it loses focus."
767
774
  )),
768
775
  "default": true
@@ -770,7 +777,7 @@ const registry = ( Registry.as(Extensions.Configuration));
770
777
  "workbench.quickOpen.preserveInput": {
771
778
  "type": "boolean",
772
779
  "description": ( localize(
773
- 3927,
780
+ 3936,
774
781
  "Controls whether the last typed input to Quick Open should be restored when opening it the next time."
775
782
  )),
776
783
  "default": false
@@ -778,7 +785,7 @@ const registry = ( Registry.as(Extensions.Configuration));
778
785
  "workbench.settings.openDefaultSettings": {
779
786
  "type": "boolean",
780
787
  "description": ( localize(
781
- 3928,
788
+ 3937,
782
789
  "Controls whether opening settings also opens an editor showing all default settings."
783
790
  )),
784
791
  "default": false
@@ -786,7 +793,7 @@ const registry = ( Registry.as(Extensions.Configuration));
786
793
  "workbench.settings.useSplitJSON": {
787
794
  "type": "boolean",
788
795
  "markdownDescription": ( localize(
789
- 3929,
796
+ 3938,
790
797
  "Controls whether to use the split JSON editor when editing settings as JSON."
791
798
  )),
792
799
  "default": false
@@ -794,7 +801,7 @@ const registry = ( Registry.as(Extensions.Configuration));
794
801
  "workbench.settings.openDefaultKeybindings": {
795
802
  "type": "boolean",
796
803
  "description": ( localize(
797
- 3930,
804
+ 3939,
798
805
  "Controls whether opening keybinding settings also opens an editor showing all default keybindings."
799
806
  )),
800
807
  "default": false
@@ -802,7 +809,7 @@ const registry = ( Registry.as(Extensions.Configuration));
802
809
  "workbench.settings.alwaysShowAdvancedSettings": {
803
810
  "type": "boolean",
804
811
  "description": ( localize(
805
- 3931,
812
+ 3940,
806
813
  "Controls whether advanced settings are always shown in the settings editor without requiring the `@tag:advanced` filter."
807
814
  )),
808
815
  "default": product.quality !== "stable"
@@ -812,7 +819,7 @@ const registry = ( Registry.as(Extensions.Configuration));
812
819
  "enum": ["left", "right"],
813
820
  "default": "left",
814
821
  "description": ( localize(
815
- 3932,
822
+ 3941,
816
823
  "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."
817
824
  ))
818
825
  },
@@ -820,7 +827,7 @@ const registry = ( Registry.as(Extensions.Configuration));
820
827
  "type": "boolean",
821
828
  "default": true,
822
829
  "description": ( localize(
823
- 3933,
830
+ 3942,
824
831
  "Controls whether activity items in the panel title are shown as label or icon."
825
832
  ))
826
833
  },
@@ -829,7 +836,7 @@ const registry = ( Registry.as(Extensions.Configuration));
829
836
  "enum": ["left", "bottom", "top", "right"],
830
837
  "default": "bottom",
831
838
  "description": ( localize(
832
- 3934,
839
+ 3943,
833
840
  "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."
834
841
  ))
835
842
  },
@@ -838,10 +845,10 @@ const registry = ( Registry.as(Extensions.Configuration));
838
845
  "enum": ["always", "never", "preserve"],
839
846
  "default": "preserve",
840
847
  "description": ( localize(
841
- 3935,
848
+ 3944,
842
849
  "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."
843
850
  )),
844
- "enumDescriptions": [( localize(3936, "Always maximize the panel when opening it.")), ( localize(3937, "Never maximize the panel when opening it.")), ( localize(3938, "Open the panel to the state that it was in, before it was closed."))]
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."))]
845
852
  },
846
853
  "workbench.secondarySideBar.defaultVisibility": {
847
854
  "type": "string",
@@ -854,23 +861,23 @@ const registry = ( Registry.as(Extensions.Configuration));
854
861
  ],
855
862
  "default": "visibleInWorkspace",
856
863
  "description": ( localize(
857
- 3939,
864
+ 3948,
858
865
  "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."
859
866
  )),
860
- "enumDescriptions": [( localize(3940, "The secondary side bar is hidden by default.")), ( localize(
861
- 3941,
867
+ "enumDescriptions": [( localize(3949, "The secondary side bar is hidden by default.")), ( localize(
868
+ 3950,
862
869
  "The secondary side bar is visible by default if a workspace is opened."
863
- )), ( localize(3942, "The secondary side bar is visible by default.")), ( localize(
864
- 3943,
870
+ )), ( localize(3951, "The secondary side bar is visible by default.")), ( localize(
871
+ 3952,
865
872
  "The secondary side bar is visible and maximized by default if a workspace is opened."
866
- )), ( localize(3944, "The secondary side bar is visible and maximized by default."))]
873
+ )), ( localize(3953, "The secondary side bar is visible and maximized by default."))]
867
874
  },
868
875
  "workbench.secondarySideBar.forceMaximized": {
869
876
  "type": "boolean",
870
877
  "default": false,
871
878
  tags: ["experimental"],
872
879
  "description": ( localize(
873
- 3945,
880
+ 3954,
874
881
  "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."
875
882
  ))
876
883
  },
@@ -878,7 +885,7 @@ const registry = ( Registry.as(Extensions.Configuration));
878
885
  "type": "boolean",
879
886
  "default": true,
880
887
  "markdownDescription": ( localize(
881
- 3946,
888
+ 3955,
882
889
  "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}.",
883
890
  "`#workbench.activityBar.location#`",
884
891
  "`top`"
@@ -888,7 +895,7 @@ const registry = ( Registry.as(Extensions.Configuration));
888
895
  "type": "boolean",
889
896
  "default": true,
890
897
  "description": ( localize(
891
- 3947,
898
+ 3956,
892
899
  "Controls the visibility of the status bar at the bottom of the workbench."
893
900
  ))
894
901
  },
@@ -901,11 +908,11 @@ const registry = ( Registry.as(Extensions.Configuration));
901
908
  ],
902
909
  "default": NotificationsPosition.BOTTOM_RIGHT,
903
910
  "description": ( localize(
904
- 3948,
911
+ 3957,
905
912
  "Controls the position of the notification toasts and notification center."
906
913
  )),
907
- "enumDescriptions": [( localize(3949, "Show notifications in the bottom right corner.")), ( localize(3950, "Show notifications in the bottom left corner.")), ( localize(
908
- 3951,
914
+ "enumDescriptions": [( localize(3958, "Show notifications in the bottom right corner.")), ( localize(3959, "Show notifications in the bottom left corner.")), ( localize(
915
+ 3960,
909
916
  "Show notifications in the top right corner, similar to OS-level notifications."
910
917
  ))],
911
918
  "tags": ["experimental"],
@@ -917,7 +924,7 @@ const registry = ( Registry.as(Extensions.Configuration));
917
924
  "type": "boolean",
918
925
  "default": true,
919
926
  "description": ( localize(
920
- 3952,
927
+ 3961,
921
928
  "Controls the visibility of the Notifications button in the title bar. Only applies when notifications are positioned at the top right."
922
929
  ))
923
930
  },
@@ -926,25 +933,25 @@ const registry = ( Registry.as(Extensions.Configuration));
926
933
  "enum": ["default", "top", "bottom", "hidden"],
927
934
  "default": "default",
928
935
  "markdownDescription": ( localize(
929
- 3953,
936
+ 3962,
930
937
  "Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."
931
938
  )),
932
939
  "enumDescriptions": [( localize(
933
- 3954,
940
+ 3963,
934
941
  "Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."
935
942
  )), ( localize(
936
- 3955,
943
+ 3964,
937
944
  "Show the Activity Bar on top of the Primary and Secondary Side Bars."
938
945
  )), ( localize(
939
- 3956,
946
+ 3965,
940
947
  "Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."
941
- )), ( localize(3957, "Hide the Activity Bar in the Primary and Secondary Side Bars."))]
948
+ )), ( localize(3966, "Hide the Activity Bar in the Primary and Secondary Side Bars."))]
942
949
  },
943
950
  [LayoutSettings.ACTIVITY_BAR_AUTO_HIDE]: {
944
951
  "type": "boolean",
945
952
  "default": false,
946
953
  "markdownDescription": ( localize(
947
- 3958,
954
+ 3967,
948
955
  "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}.",
949
956
  "`#workbench.activityBar.location#`",
950
957
  "`top`",
@@ -955,7 +962,7 @@ const registry = ( Registry.as(Extensions.Configuration));
955
962
  "type": "boolean",
956
963
  "default": false,
957
964
  "markdownDescription": ( localize(
958
- 3959,
965
+ 3968,
959
966
  "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}.",
960
967
  "`#workbench.activityBar.location#`",
961
968
  "`default`"
@@ -966,32 +973,32 @@ const registry = ( Registry.as(Extensions.Configuration));
966
973
  "enum": ["toggle", "focus"],
967
974
  "default": "toggle",
968
975
  "markdownDescription": ( localize(
969
- 3960,
976
+ 3969,
970
977
  "Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.",
971
978
  "`#workbench.activityBar.location#`",
972
979
  "`default`"
973
980
  )),
974
- "enumDescriptions": [( localize(3961, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(3962, "Focus the Primary Side Bar if the clicked item is already visible."))]
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."))]
975
982
  },
976
983
  "workbench.view.alwaysShowHeaderActions": {
977
984
  "type": "boolean",
978
985
  "default": false,
979
986
  "description": ( localize(
980
- 3963,
987
+ 3972,
981
988
  "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."
982
989
  ))
983
990
  },
984
991
  "workbench.view.showQuietly": {
985
992
  "type": "object",
986
993
  "description": ( localize(
987
- 3964,
994
+ 3973,
988
995
  "If an extension requests a hidden view to be shown, display a clickable status bar indicator instead."
989
996
  )),
990
997
  "scope": ConfigurationScope.WINDOW,
991
998
  "properties": {
992
999
  "workbench.panel.output": {
993
1000
  "type": "boolean",
994
- "description": ( localize(3965, "Output view"))
1001
+ "description": ( localize(3974, "Output view"))
995
1002
  }
996
1003
  },
997
1004
  "additionalProperties": false
@@ -1000,15 +1007,15 @@ const registry = ( Registry.as(Extensions.Configuration));
1000
1007
  "type": "string",
1001
1008
  "enum": ["default", "antialiased", "none", "auto"],
1002
1009
  "default": "default",
1003
- "description": ( localize(3966, "Controls font aliasing method in the workbench.")),
1010
+ "description": ( localize(3975, "Controls font aliasing method in the workbench.")),
1004
1011
  "enumDescriptions": [( localize(
1005
- 3967,
1012
+ 3976,
1006
1013
  "Sub-pixel font smoothing. On most non-retina displays this will give the sharpest text."
1007
1014
  )), ( localize(
1008
- 3968,
1015
+ 3977,
1009
1016
  "Smooth the font on the level of the pixel, as opposed to the subpixel. Can make the font appear lighter overall."
1010
- )), ( localize(3969, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1011
- 3970,
1017
+ )), ( localize(3978, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1018
+ 3979,
1012
1019
  "Applies `default` or `antialiased` automatically based on the DPI of displays."
1013
1020
  ))],
1014
1021
  "included": isMacintosh
@@ -1016,8 +1023,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1016
1023
  "workbench.settings.editor": {
1017
1024
  "type": "string",
1018
1025
  "enum": ["ui", "json"],
1019
- "enumDescriptions": [( localize(3971, "Use the settings UI editor.")), ( localize(3972, "Use the JSON file editor."))],
1020
- "description": ( localize(3973, "Determines which Settings editor to use by default.")),
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.")),
1021
1028
  "default": "ui",
1022
1029
  "scope": ConfigurationScope.WINDOW
1023
1030
  },
@@ -1025,14 +1032,14 @@ const registry = ( Registry.as(Extensions.Configuration));
1025
1032
  "type": "boolean",
1026
1033
  "default": true,
1027
1034
  "description": ( localize(
1028
- 3974,
1035
+ 3983,
1029
1036
  "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."
1030
1037
  ))
1031
1038
  },
1032
1039
  "workbench.hover.delay": {
1033
1040
  "type": "number",
1034
1041
  "description": ( localize(
1035
- 3975,
1042
+ 3984,
1036
1043
  "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."
1037
1044
  )),
1038
1045
  "default": isMacintosh ? 1500 : 500,
@@ -1041,7 +1048,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1041
1048
  "workbench.hover.reducedDelay": {
1042
1049
  "type": "number",
1043
1050
  "description": ( localize(
1044
- 3976,
1051
+ 3985,
1045
1052
  "Controls the reduced delay in milliseconds used for showing hovers in specific contexts where faster feedback is beneficial."
1046
1053
  )),
1047
1054
  "default": 500,
@@ -1050,10 +1057,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1050
1057
  "workbench.reduceMotion": {
1051
1058
  type: "string",
1052
1059
  description: ( localize(
1053
- 3977,
1060
+ 3986,
1054
1061
  "Controls whether the workbench should render with fewer animations."
1055
1062
  )),
1056
- "enumDescriptions": [( localize(3978, "Always render with reduced motion.")), ( localize(3979, "Do not render with reduced motion")), ( localize(3980, "Render with reduced motion based on OS configuration."))],
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."))],
1057
1064
  default: "auto",
1058
1065
  tags: ["accessibility"],
1059
1066
  enum: ["on", "off", "auto"]
@@ -1061,10 +1068,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1061
1068
  "workbench.reduceTransparency": {
1062
1069
  type: "string",
1063
1070
  description: ( localize(
1064
- 3981,
1071
+ 3990,
1065
1072
  "Controls whether the workbench should render with fewer transparency and blur effects for improved performance."
1066
1073
  )),
1067
- "enumDescriptions": [( localize(3982, "Always render without transparency and blur effects.")), ( localize(3983, "Do not reduce transparency and blur effects.")), ( localize(3984, "Reduce transparency and blur effects based on OS configuration."))],
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."))],
1068
1075
  default: "off",
1069
1076
  tags: ["accessibility"],
1070
1077
  enum: ["on", "off", "auto"]
@@ -1072,8 +1079,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1072
1079
  "workbench.navigationControl.enabled": {
1073
1080
  "type": "boolean",
1074
1081
  "default": true,
1075
- "markdownDescription": isWeb ? ( localize(3985, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1076
- 3986,
1082
+ "markdownDescription": isWeb ? ( localize(3994, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1083
+ 3995,
1077
1084
  "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}.",
1078
1085
  "`#window.customTitleBarVisibility#`",
1079
1086
  "`never`"
@@ -1082,8 +1089,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1082
1089
  [LayoutSettings.LAYOUT_ACTIONS]: {
1083
1090
  "type": "boolean",
1084
1091
  "default": true,
1085
- "markdownDescription": isWeb ? ( localize(3987, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1086
- 3988,
1092
+ "markdownDescription": isWeb ? ( localize(3996, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1093
+ 3997,
1087
1094
  "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}.",
1088
1095
  "`#window.customTitleBarVisibility#`",
1089
1096
  "`never`"
@@ -1092,78 +1099,86 @@ const registry = ( Registry.as(Extensions.Configuration));
1092
1099
  "workbench.layoutControl.type": {
1093
1100
  "type": "string",
1094
1101
  "enum": ["menu", "toggles", "both"],
1095
- "enumDescriptions": [( localize(3989, "Shows a single button with a dropdown of layout options.")), ( localize(
1096
- 3990,
1102
+ "enumDescriptions": [( localize(3998, "Shows a single button with a dropdown of layout options.")), ( localize(
1103
+ 3999,
1097
1104
  "Shows several buttons for toggling the visibility of the panels and side bar."
1098
- )), ( localize(3991, "Shows both the dropdown and toggle buttons."))],
1105
+ )), ( localize(4000, "Shows both the dropdown and toggle buttons."))],
1099
1106
  "default": "both",
1100
1107
  "description": ( localize(
1101
- 3992,
1108
+ 4001,
1102
1109
  "Controls whether the layout control in the custom title bar is displayed as a single menu button or with multiple UI toggles."
1103
1110
  ))
1104
1111
  },
1105
1112
  "workbench.tips.enabled": {
1106
1113
  "type": "boolean",
1107
1114
  "default": true,
1108
- "description": ( localize(3993, "When enabled, will show the watermark tips when no editor is open."))
1115
+ "description": ( localize(4002, "When enabled, will show the watermark tips when no editor is open."))
1116
+ },
1117
+ [LayoutSettings.SHADOWS]: {
1118
+ "type": "boolean",
1119
+ "default": true,
1120
+ "description": ( localize(
1121
+ 4003,
1122
+ "Controls whether shadow effects are shown around the side panels and other workbench elements."
1123
+ ))
1109
1124
  }
1110
1125
  }
1111
1126
  });
1112
1127
  let windowTitleDescription = ( localize(
1113
- 3994,
1128
+ 4004,
1114
1129
  "Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:"
1115
1130
  ));
1116
- windowTitleDescription += "\n- " + [( localize(3995, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1117
- 3996,
1131
+ windowTitleDescription += "\n- " + [( localize(4005, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1132
+ 4006,
1118
1133
  "`${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)."
1119
1134
  )), ( localize(
1120
- 3997,
1135
+ 4007,
1121
1136
  "`${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)."
1122
1137
  )), ( localize(
1123
- 3998,
1138
+ 4008,
1124
1139
  "`${activeEditorLanguageId}`: the language identifier of the active editor (e.g. typescript)."
1125
1140
  )), ( localize(
1126
- 3999,
1141
+ 4009,
1127
1142
  "`${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder)."
1128
1143
  )), ( localize(
1129
- 4000,
1144
+ 4010,
1130
1145
  "`${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)."
1131
1146
  )), ( localize(
1132
- 4001,
1147
+ 4011,
1133
1148
  "`${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)."
1134
1149
  )), ( localize(
1135
- 4002,
1150
+ 4012,
1136
1151
  "`${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder)."
1137
1152
  )), ( localize(
1138
- 4003,
1153
+ 4013,
1139
1154
  "`${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)."
1140
1155
  )), ( localize(
1141
- 4004,
1156
+ 4014,
1142
1157
  "`${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))."
1143
1158
  )), ( localize(
1144
- 4005,
1159
+ 4015,
1145
1160
  "`${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace)."
1146
1161
  )), ( localize(
1147
- 4006,
1162
+ 4016,
1148
1163
  "`${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace)."
1149
1164
  )), ( localize(
1150
- 4007,
1165
+ 4017,
1151
1166
  "`${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used."
1152
- )), ( localize(4008, "`${appName}`: e.g. VS Code.")), ( localize(4009, "`${remoteName}`: e.g. SSH")), ( localize(
1153
- 4010,
1167
+ )), ( localize(4018, "`${appName}`: e.g. VS Code.")), ( localize(4019, "`${remoteName}`: e.g. SSH")), ( localize(
1168
+ 4020,
1154
1169
  "`${dirty}`: an indicator for when the active editor has unsaved changes."
1155
- )), ( localize(4011, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1156
- 4012,
1170
+ )), ( localize(4021, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1171
+ 4022,
1157
1172
  "`${activeRepositoryName}`: the name of the active repository (e.g. vscode)."
1158
1173
  )), ( localize(
1159
- 4013,
1174
+ 4023,
1160
1175
  "`${activeRepositoryBranchName}`: the name of the active branch in the active repository (e.g. main)."
1161
1176
  )), ( localize(
1162
- 4014,
1177
+ 4024,
1163
1178
  "`${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.",
1164
1179
  "`accessibility.windowTitleOptimized`"
1165
1180
  )), ( localize(
1166
- 4015,
1181
+ 4025,
1167
1182
  "`${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."
1168
1183
  ))].join("\n- ");
1169
1184
  registry.registerConfiguration({
@@ -1177,13 +1192,13 @@ const registry = ( Registry.as(Extensions.Configuration));
1177
1192
  "window.titleSeparator": {
1178
1193
  "type": "string",
1179
1194
  "default": defaultWindowTitleSeparator,
1180
- "markdownDescription": ( localize(4016, "Separator used by {0}.", "`#window.title#`"))
1195
+ "markdownDescription": ( localize(4026, "Separator used by {0}.", "`#window.title#`"))
1181
1196
  },
1182
1197
  [LayoutSettings.COMMAND_CENTER]: {
1183
1198
  type: "boolean",
1184
1199
  default: true,
1185
- markdownDescription: isWeb ? ( localize(4017, "Show command launcher together with the window title.")) : ( localize(
1186
- 4018,
1200
+ markdownDescription: isWeb ? ( localize(4027, "Show command launcher together with the window title.")) : ( localize(
1201
+ 4028,
1187
1202
  "Show command launcher together with the window title. This setting only has an effect when {0} is not set to {1}.",
1188
1203
  "`#window.customTitleBarVisibility#`",
1189
1204
  "`never`"
@@ -1193,19 +1208,19 @@ const registry = ( Registry.as(Extensions.Configuration));
1193
1208
  "type": "string",
1194
1209
  "enum": ["classic", "visible", "toggle", "hidden", "compact"],
1195
1210
  "markdownEnumDescriptions": [( localize(
1196
- 4019,
1211
+ 4029,
1197
1212
  "Menu is displayed at the top of the window and only hidden in full screen mode."
1198
1213
  )), ( localize(
1199
- 4020,
1214
+ 4030,
1200
1215
  "Menu is always visible at the top of the window even in full screen mode."
1201
1216
  )), isMacintosh ? ( localize(
1202
- 4021,
1217
+ 4031,
1203
1218
  "Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command."
1204
1219
  )) : ( localize(
1205
- 4022,
1220
+ 4032,
1206
1221
  "Menu is hidden but can be displayed at the top of the window via the Alt key."
1207
- )), ( localize(4023, "Menu is always hidden.")), isWeb ? ( localize(4024, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1208
- 4025,
1222
+ )), ( localize(4033, "Menu is always hidden.")), isWeb ? ( localize(4034, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1223
+ 4035,
1209
1224
  "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}.",
1210
1225
  "`#window.titleBarStyle#`",
1211
1226
  "`native`",
@@ -1216,10 +1231,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1216
1231
  "default": isWeb ? "compact" : "classic",
1217
1232
  "scope": ConfigurationScope.APPLICATION,
1218
1233
  "markdownDescription": isMacintosh ? ( localize(
1219
- 4026,
1234
+ 4036,
1220
1235
  "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."
1221
1236
  )) : ( localize(
1222
- 4027,
1237
+ 4037,
1223
1238
  "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."
1224
1239
  )),
1225
1240
  "included": isWindows || isLinux || isWeb
@@ -1229,7 +1244,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1229
1244
  "default": true,
1230
1245
  "scope": ConfigurationScope.APPLICATION,
1231
1246
  "description": ( localize(
1232
- 4028,
1247
+ 4038,
1233
1248
  "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."
1234
1249
  )),
1235
1250
  "included": isWindows || isLinux
@@ -1239,7 +1254,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1239
1254
  "default": true,
1240
1255
  "scope": ConfigurationScope.APPLICATION,
1241
1256
  "markdownDescription": ( localize(
1242
- 4029,
1257
+ 4039,
1243
1258
  "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."
1244
1259
  )),
1245
1260
  "included": isWindows || isLinux
@@ -1247,37 +1262,37 @@ const registry = ( Registry.as(Extensions.Configuration));
1247
1262
  "window.openFilesInNewWindow": {
1248
1263
  "type": "string",
1249
1264
  "enum": ["on", "off", "default"],
1250
- "enumDescriptions": [( localize(4030, "Files will open in a new window.")), ( localize(
1251
- 4031,
1265
+ "enumDescriptions": [( localize(4040, "Files will open in a new window.")), ( localize(
1266
+ 4041,
1252
1267
  "Files will open in the window with the files' folder open or the last active window."
1253
1268
  )), isMacintosh ? ( localize(
1254
- 4032,
1269
+ 4042,
1255
1270
  "Files will open in the window with the files' folder open or the last active window unless opened via the Dock or from Finder."
1256
1271
  )) : ( localize(
1257
- 4033,
1272
+ 4043,
1258
1273
  "Files will open in a new window unless picked from within the application (e.g. via the File menu)."
1259
1274
  ))],
1260
1275
  "default": "off",
1261
1276
  "scope": ConfigurationScope.APPLICATION,
1262
1277
  "markdownDescription": isMacintosh ? ( localize(
1263
- 4034,
1278
+ 4044,
1264
1279
  "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)."
1265
1280
  )) : ( localize(
1266
- 4035,
1281
+ 4045,
1267
1282
  "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)."
1268
1283
  ))
1269
1284
  },
1270
1285
  "window.openFoldersInNewWindow": {
1271
1286
  "type": "string",
1272
1287
  "enum": ["on", "off", "default"],
1273
- "enumDescriptions": [( localize(4036, "Folders will open in a new window.")), ( localize(4037, "Folders will replace the last active window.")), ( localize(
1274
- 4038,
1288
+ "enumDescriptions": [( localize(4046, "Folders will open in a new window.")), ( localize(4047, "Folders will replace the last active window.")), ( localize(
1289
+ 4048,
1275
1290
  "Folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)."
1276
1291
  ))],
1277
1292
  "default": "default",
1278
1293
  "scope": ConfigurationScope.APPLICATION,
1279
1294
  "markdownDescription": ( localize(
1280
- 4039,
1295
+ 4049,
1281
1296
  "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)."
1282
1297
  ))
1283
1298
  },
@@ -1285,21 +1300,21 @@ const registry = ( Registry.as(Extensions.Configuration));
1285
1300
  "type": "string",
1286
1301
  "enum": ["always", "keyboardOnly", "never"],
1287
1302
  "enumDescriptions": [isWeb ? ( localize(
1288
- 4040,
1303
+ 4050,
1289
1304
  "Always try to ask for confirmation. Note that browsers may still decide to close a tab or window without confirmation."
1290
- )) : ( localize(4041, "Always ask for confirmation.")), isWeb ? ( localize(
1291
- 4042,
1305
+ )) : ( localize(4051, "Always ask for confirmation.")), isWeb ? ( localize(
1306
+ 4052,
1292
1307
  "Only ask for confirmation if a keybinding was used to close the window. Note that detection may not be possible in some cases."
1293
- )) : ( localize(4043, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1294
- 4044,
1308
+ )) : ( localize(4053, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1309
+ 4054,
1295
1310
  "Never explicitly ask for confirmation unless data loss is imminent."
1296
- )) : ( localize(4045, "Never explicitly ask for confirmation."))],
1311
+ )) : ( localize(4055, "Never explicitly ask for confirmation."))],
1297
1312
  "default": (isWeb && !isStandalone()) ? "keyboardOnly" : "never",
1298
1313
  "markdownDescription": isWeb ? ( localize(
1299
- 4046,
1314
+ 4056,
1300
1315
  "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."
1301
1316
  )) : ( localize(
1302
- 4047,
1317
+ 4057,
1303
1318
  "Controls whether to show a confirmation dialog before closing a window or quitting the application."
1304
1319
  )),
1305
1320
  "scope": ConfigurationScope.APPLICATION
@@ -1318,7 +1333,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1318
1333
  "type": "boolean",
1319
1334
  "default": true,
1320
1335
  "description": ( localize(
1321
- 4048,
1336
+ 4058,
1322
1337
  "Controls whether the problems are visible throughout the editor and workbench."
1323
1338
  ))
1324
1339
  }
@@ -1327,40 +1342,40 @@ const registry = ( Registry.as(Extensions.Configuration));
1327
1342
  registry.registerConfiguration({
1328
1343
  "id": "zenMode",
1329
1344
  "order": 9,
1330
- "title": ( localize(4049, "Zen Mode")),
1345
+ "title": ( localize(4059, "Zen Mode")),
1331
1346
  "type": "object",
1332
1347
  "properties": {
1333
1348
  "zenMode.fullScreen": {
1334
1349
  "type": "boolean",
1335
1350
  "default": true,
1336
1351
  "description": ( localize(
1337
- 4050,
1352
+ 4060,
1338
1353
  "Controls whether turning on Zen Mode also puts the workbench into full screen mode."
1339
1354
  ))
1340
1355
  },
1341
1356
  "zenMode.centerLayout": {
1342
1357
  "type": "boolean",
1343
1358
  "default": true,
1344
- "description": ( localize(4051, "Controls whether turning on Zen Mode also centers the layout."))
1359
+ "description": ( localize(4061, "Controls whether turning on Zen Mode also centers the layout."))
1345
1360
  },
1346
1361
  "zenMode.showTabs": {
1347
1362
  "type": "string",
1348
1363
  "enum": ["multiple", "single", "none"],
1349
1364
  "description": ( localize(
1350
- 4052,
1365
+ 4062,
1351
1366
  "Controls whether turning on Zen Mode should show multiple editor tabs, a single editor tab, or hide the editor title area completely."
1352
1367
  )),
1353
- "enumDescriptions": [( localize(4053, "Each editor is displayed as a tab in the editor title area.")), ( localize(
1354
- 4054,
1368
+ "enumDescriptions": [( localize(4063, "Each editor is displayed as a tab in the editor title area.")), ( localize(
1369
+ 4064,
1355
1370
  "The active editor is displayed as a single large tab in the editor title area."
1356
- )), ( localize(4055, "The editor title area is not displayed."))],
1371
+ )), ( localize(4065, "The editor title area is not displayed."))],
1357
1372
  "default": "multiple"
1358
1373
  },
1359
1374
  "zenMode.hideStatusBar": {
1360
1375
  "type": "boolean",
1361
1376
  "default": true,
1362
1377
  "description": ( localize(
1363
- 4056,
1378
+ 4066,
1364
1379
  "Controls whether turning on Zen Mode also hides the status bar at the bottom of the workbench."
1365
1380
  ))
1366
1381
  },
@@ -1368,7 +1383,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1368
1383
  "type": "boolean",
1369
1384
  "default": true,
1370
1385
  "description": ( localize(
1371
- 4057,
1386
+ 4067,
1372
1387
  "Controls whether turning on Zen Mode also hides the activity bar either at the left or right of the workbench."
1373
1388
  ))
1374
1389
  },
@@ -1376,7 +1391,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1376
1391
  "type": "boolean",
1377
1392
  "default": true,
1378
1393
  "description": ( localize(
1379
- 4058,
1394
+ 4068,
1380
1395
  "Controls whether turning on Zen Mode also hides the editor line numbers."
1381
1396
  ))
1382
1397
  },
@@ -1384,7 +1399,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1384
1399
  "type": "boolean",
1385
1400
  "default": true,
1386
1401
  "description": ( localize(
1387
- 4059,
1402
+ 4069,
1388
1403
  "Controls whether a window should restore to Zen Mode if it was exited in Zen Mode."
1389
1404
  ))
1390
1405
  },
@@ -1392,7 +1407,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1392
1407
  "type": "boolean",
1393
1408
  "default": true,
1394
1409
  "description": ( localize(
1395
- 4060,
1410
+ 4070,
1396
1411
  "Controls whether notifications do not disturb mode should be enabled while in Zen Mode. If true, only error notifications will pop out."
1397
1412
  ))
1398
1413
  }
@@ -1481,19 +1496,3 @@ const registry = ( Registry.as(Extensions.Configuration));
1481
1496
  return result;
1482
1497
  }
1483
1498
  }]);
1484
- ( Registry.as(Extensions$1.ConfigurationMigration)).registerConfigurationMigrations([{
1485
- key: "workbench.editor.useModal",
1486
- migrateFn: value => {
1487
- const result = [];
1488
- if (value === "default") {
1489
- result.push(["workbench.editor.useModal", {
1490
- value: "some"
1491
- }]);
1492
- } else if (value === "on") {
1493
- result.push(["workbench.editor.useModal", {
1494
- value: "all"
1495
- }]);
1496
- }
1497
- return result;
1498
- }
1499
- }]);