@codingame/monaco-vscode-api 27.0.0 → 28.0.1

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