@codingame/monaco-vscode-api 28.4.0 → 29.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (842) hide show
  1. package/missing-services.js +232 -112
  2. package/package.json +8 -8
  3. package/services.d.ts +1 -3
  4. package/services.js +4 -6
  5. package/vscode/product.json.js +1 -1
  6. package/vscode/src/vs/base/browser/markdownRenderer.js +15 -1
  7. package/vscode/src/vs/base/browser/touch.js +1 -1
  8. package/vscode/src/vs/base/browser/ui/button/button.css +1 -0
  9. package/vscode/src/vs/base/browser/ui/dialog/dialog.css +18 -22
  10. package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +1 -0
  11. package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +6 -3
  12. package/vscode/src/vs/base/browser/ui/list/listView.d.ts +4 -4
  13. package/vscode/src/vs/base/browser/ui/list/listWidget.js +1 -1
  14. package/vscode/src/vs/base/browser/ui/menu/menu.js +3 -0
  15. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -1
  16. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +4 -1
  17. package/vscode/src/vs/base/browser/ui/tree/compressedObjectTreeModel.js +8 -2
  18. package/vscode/src/vs/base/common/async.d.ts +4 -4
  19. package/vscode/src/vs/base/common/codicons.d.ts +1 -0
  20. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
  21. package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
  22. package/vscode/src/vs/base/common/event.d.ts +14 -2
  23. package/vscode/src/vs/base/common/event.js +10 -5
  24. package/vscode/src/vs/base/common/htmlContent.d.ts +2 -2
  25. package/vscode/src/vs/base/common/htmlContent.js +1 -1
  26. package/vscode/src/vs/base/common/lifecycle.d.ts +1 -1
  27. package/vscode/src/vs/base/common/network.d.ts +2 -0
  28. package/vscode/src/vs/base/common/network.js +1 -0
  29. package/vscode/src/vs/base/common/observableInternal/index.d.ts +1 -1
  30. package/vscode/src/vs/base/common/product.d.ts +1 -0
  31. package/vscode/src/vs/base/common/resources.d.ts +2 -2
  32. package/vscode/src/vs/base/common/resources.js +2 -2
  33. package/vscode/src/vs/base/parts/request/common/request.d.ts +5 -0
  34. package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -1
  35. package/vscode/src/vs/editor/browser/controller/pointerHandler.js +1 -1
  36. package/vscode/src/vs/editor/browser/observableCodeEditor.js +3 -3
  37. package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.d.ts +2 -2
  38. package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.js +27 -22
  39. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +10 -2
  40. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.js +1 -1
  41. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +1 -1
  42. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +1 -1
  43. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/diffEditorItemTemplate.js +1 -1
  44. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorViewModel.js +2 -2
  45. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +4 -0
  46. package/vscode/src/vs/editor/common/config/editorOptions.js +364 -357
  47. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
  48. package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +1 -1
  49. package/vscode/src/vs/editor/common/editorContextKeys.js +49 -49
  50. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  51. package/vscode/src/vs/editor/common/languages.js +56 -56
  52. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  53. package/vscode/src/vs/editor/common/model/textModel.d.ts +2 -2
  54. package/vscode/src/vs/editor/common/model/textModel.js +7 -33
  55. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +1 -1
  56. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.js +1 -1
  57. package/vscode/src/vs/editor/common/model.d.ts +1 -1
  58. package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +6 -2
  59. package/vscode/src/vs/editor/common/standaloneStrings.js +50 -50
  60. package/vscode/src/vs/editor/common/textModelEvents.d.ts +2 -18
  61. package/vscode/src/vs/editor/common/textModelEvents.js +2 -6
  62. package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +38 -15
  63. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  64. package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.js +4 -1
  65. package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.d.ts +2 -2
  66. package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +8 -8
  67. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +2 -2
  68. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +6 -15
  69. package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +3 -3
  70. package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +12 -12
  71. package/vscode/src/vs/editor/common/viewModel.d.ts +2 -2
  72. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  73. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  74. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  75. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  76. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  77. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  78. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +18 -18
  79. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  80. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  81. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  82. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  83. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  84. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  85. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  86. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  87. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  88. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  89. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +17 -10
  90. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  91. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  92. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
  93. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +5 -5
  94. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  95. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  96. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  97. package/vscode/src/vs/editor/contrib/find/browser/findController.js +39 -18
  98. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +28 -28
  99. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  100. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  101. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  102. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  103. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  104. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +13 -13
  105. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +33 -33
  106. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  107. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  108. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  109. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  110. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  111. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  112. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  113. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  114. package/vscode/src/vs/editor/contrib/hover/browser/hover.css +1 -0
  115. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  116. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  117. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +22 -22
  118. package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
  119. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +7 -7
  120. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.d.ts +5 -1
  121. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +46 -7
  122. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  123. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +18 -18
  124. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +5 -5
  125. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
  126. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
  127. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +2 -2
  128. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  129. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
  130. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +1 -1
  131. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +2 -2
  132. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +1 -1
  133. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +2 -2
  134. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +5 -0
  135. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
  136. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +4 -4
  137. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +1 -1
  138. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +1 -1
  139. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +3 -3
  140. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +1 -1
  141. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
  142. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  143. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  144. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
  145. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  146. package/vscode/src/vs/editor/contrib/links/browser/links.js +6 -6
  147. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  148. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  149. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +6 -0
  150. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  151. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  152. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
  153. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  154. package/vscode/src/vs/editor/contrib/quickAccess/browser/editorNavigationQuickAccess.js +1 -1
  155. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +11 -11
  156. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
  157. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  158. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  159. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  160. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  161. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  162. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  163. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +1 -1
  164. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  165. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  166. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  167. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +2 -0
  168. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +70 -7
  169. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  170. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  171. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  172. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  173. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  174. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  175. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  176. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  177. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  178. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  179. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  180. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  181. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  182. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  183. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  184. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +108 -22
  185. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +466 -130
  186. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +54 -3
  187. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +13 -13
  188. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
  189. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  190. package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -0
  191. package/vscode/src/vs/platform/actions/common/actions.js +12 -0
  192. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  193. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  194. package/vscode/src/vs/platform/browserView/common/browserView.d.ts +348 -0
  195. package/vscode/src/vs/platform/browserView/common/cdp/types.d.ts +153 -0
  196. package/vscode/src/vs/platform/browserView/common/playwrightService.service.d.ts +91 -0
  197. package/vscode/src/vs/platform/configuration/common/configuration.d.ts +1 -0
  198. package/vscode/src/vs/platform/configuration/common/configuration.js +6 -1
  199. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  200. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  201. package/vscode/src/vs/platform/contextkey/common/contextkey.js +10 -10
  202. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  203. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  204. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  205. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  206. package/vscode/src/vs/platform/download/common/download.service.d.ts +1 -1
  207. package/vscode/src/vs/platform/editor/common/editor.d.ts +18 -0
  208. package/vscode/src/vs/platform/environment/common/argv.d.ts +5 -0
  209. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
  210. package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -0
  211. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  212. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  213. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
  214. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  215. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +10 -0
  216. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -2
  217. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  218. package/vscode/src/vs/platform/files/common/files.js +6 -6
  219. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  220. package/vscode/src/vs/platform/hover/browser/hover.css +4 -0
  221. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +4 -1
  222. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  223. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  224. package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +2 -0
  225. package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.js +54 -5
  226. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  227. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  228. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  229. package/vscode/src/vs/platform/log/common/log.js +6 -6
  230. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  231. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  232. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
  233. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
  234. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  235. package/vscode/src/vs/platform/product/common/product.js +3 -3
  236. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  237. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  238. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
  239. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +20 -6
  240. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  241. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  242. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  243. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +10 -3
  244. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +8 -0
  245. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +6 -1
  246. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
  247. package/vscode/src/vs/platform/remote/common/remoteAgentEnvironment.d.ts +1 -0
  248. package/vscode/src/vs/platform/request/common/request.d.ts +13 -0
  249. package/vscode/src/vs/platform/request/common/request.js +42 -20
  250. package/vscode/src/vs/platform/request/common/request.service.d.ts +6 -1
  251. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +10 -5
  252. package/vscode/src/vs/platform/terminal/common/capabilities/commandDetection/terminalCommand.js +12 -2
  253. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +31 -31
  254. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  255. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  256. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
  257. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  258. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  259. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
  260. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  261. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  262. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  263. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  264. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  265. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  266. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  267. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
  268. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  269. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  270. package/vscode/src/vs/platform/update/common/update.d.ts +8 -6
  271. package/vscode/src/vs/platform/update/common/update.js +6 -6
  272. package/vscode/src/vs/platform/url/common/urlGlob.js +5 -3
  273. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  274. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  275. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  276. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  277. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  278. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  279. package/vscode/src/vs/platform/userDataSync/common/userDataSyncStoreService.js +24 -12
  280. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  281. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +15 -14
  282. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +53 -8
  283. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +100 -21
  284. package/vscode/src/vs/workbench/api/common/extHost.protocol.js +4 -2
  285. package/vscode/src/vs/workbench/api/common/extHostApiDeprecationService.d.ts +6 -2
  286. package/vscode/src/vs/workbench/api/common/extHostApiDeprecationService.js +7 -5
  287. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  288. package/vscode/src/vs/workbench/api/common/extHostBrowsers.d.ts +30 -0
  289. package/vscode/src/vs/workbench/api/common/extHostBrowsers.js +211 -0
  290. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +11 -4
  291. package/vscode/src/vs/workbench/api/common/extHostChatDebug.d.ts +10 -0
  292. package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +132 -1
  293. package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +7 -8
  294. package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +81 -33
  295. package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +1 -1
  296. package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.d.ts +1 -1
  297. package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.js +3 -3
  298. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  299. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +3 -3
  300. package/vscode/src/vs/workbench/api/common/extHostFileSystemConsumer.d.ts +1 -1
  301. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.d.ts +5 -1
  302. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +107 -7
  303. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +11 -11
  304. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +17 -7
  305. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +2 -2
  306. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +5 -3
  307. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  308. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +7 -1
  309. package/vscode/src/vs/workbench/api/common/extHostMcp.js +30 -3
  310. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  311. package/vscode/src/vs/workbench/api/common/extHostSCM.js +3 -3
  312. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  313. package/vscode/src/vs/workbench/api/common/extHostTask.js +3 -0
  314. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
  315. package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +3 -1
  316. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +21 -6
  317. package/vscode/src/vs/workbench/api/common/extHostTimeline.js +1 -1
  318. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  319. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +2 -1
  320. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +22 -5
  321. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +22 -0
  322. package/vscode/src/vs/workbench/api/common/extHostTypes.js +19 -1
  323. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -1
  324. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  325. package/vscode/src/vs/workbench/api/worker/extHostConsoleForwarder.d.ts +1 -1
  326. package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
  327. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +130 -130
  328. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  329. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  330. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  331. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  332. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  333. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  334. package/vscode/src/vs/workbench/browser/media/style.css +21 -0
  335. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +23 -23
  336. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
  337. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
  338. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  339. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  340. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  341. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
  342. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  343. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  344. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  345. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  346. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  347. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  348. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
  349. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +135 -135
  350. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +28 -28
  351. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  352. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  353. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
  354. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  355. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.d.ts +1 -1
  356. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.js +8 -2
  357. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.d.ts +17 -0
  358. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +37 -5
  359. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  360. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  361. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  362. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +2 -2
  363. package/vscode/src/vs/workbench/browser/parts/editor/media/editorgroupview.css +5 -0
  364. package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +16 -5
  365. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +18 -4
  366. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +322 -56
  367. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  368. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  369. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  370. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  371. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  372. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
  373. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsCenter.css +1 -1
  374. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsToasts.css +1 -1
  375. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +22 -22
  376. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  377. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
  378. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +13 -13
  379. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  380. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
  381. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
  382. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
  383. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
  384. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  385. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +27 -27
  386. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
  387. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  388. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  389. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +18 -18
  390. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +15 -15
  391. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +2 -2
  392. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  393. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +7 -7
  394. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +4 -4
  395. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +5 -5
  396. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
  397. package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
  398. package/vscode/src/vs/workbench/browser/window.js +14 -14
  399. package/vscode/src/vs/workbench/browser/workbench.contribution.js +251 -252
  400. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  401. package/vscode/src/vs/workbench/common/contextkeys.js +77 -77
  402. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  403. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  404. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  405. package/vscode/src/vs/workbench/common/editor.d.ts +6 -1
  406. package/vscode/src/vs/workbench/common/editor.js +5 -4
  407. package/vscode/src/vs/workbench/common/theme.js +161 -161
  408. package/vscode/src/vs/workbench/common/views.d.ts +6 -0
  409. package/vscode/src/vs/workbench/common/views.js +4 -4
  410. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +154 -154
  411. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  412. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +182 -0
  413. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.service.d.ts +55 -0
  414. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.service.js +7 -0
  415. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.d.ts +55 -0
  416. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.service.d.ts +45 -0
  417. package/vscode/src/vs/workbench/contrib/browserView/common/browserZoomService.service.js +6 -0
  418. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +1 -0
  419. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +101 -63
  420. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +26 -3
  421. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +23 -16
  422. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +24 -16
  423. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +90 -42
  424. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsService.service.d.ts +2 -0
  425. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +78 -0
  426. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +32 -0
  427. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  428. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +3 -5
  429. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  430. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.service.d.ts +13 -0
  431. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.service.js +6 -0
  432. package/vscode/src/vs/workbench/contrib/chat/browser/chatImageUtils.js +7 -0
  433. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +10 -13
  434. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +7 -2
  435. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +104 -84
  436. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.d.ts +49 -0
  437. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.js +29 -0
  438. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +1 -1
  439. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +7 -4
  440. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +11 -7
  441. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.d.ts +215 -0
  442. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.js +17 -0
  443. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.d.ts +24 -1
  444. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +50 -1
  445. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +44 -5
  446. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +91 -23
  447. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +16 -5
  448. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +98 -57
  449. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +30 -5
  450. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +41 -32
  451. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +6 -1
  452. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +5 -0
  453. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +159 -0
  454. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +157 -0
  455. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.d.ts +39 -0
  456. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.js +6 -0
  457. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  458. package/vscode/src/vs/workbench/contrib/chat/common/enablement.d.ts +35 -0
  459. package/vscode/src/vs/workbench/contrib/chat/common/enablement.js +102 -0
  460. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  461. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +33 -11
  462. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +271 -36
  463. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +25 -4
  464. package/vscode/src/vs/workbench/contrib/chat/common/languageModelsConfiguration.d.ts +1 -0
  465. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +14 -5
  466. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +63 -45
  467. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +10 -5
  468. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +6 -2
  469. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.d.ts +5 -2
  470. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +5 -2
  471. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.d.ts +1 -0
  472. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.js +4 -1
  473. package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.js +8 -6
  474. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +2 -0
  475. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.d.ts +2 -0
  476. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +18 -4
  477. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.d.ts +2 -3
  478. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.d.ts +20 -0
  479. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +30 -1
  480. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +28 -1
  481. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginSource.d.ts +5 -2
  482. package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.service.d.ts +17 -0
  483. package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.service.js +6 -0
  484. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +9 -8
  485. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +36 -24
  486. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +4 -0
  487. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -0
  488. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +13 -1
  489. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +23 -17
  490. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
  491. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
  492. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +79 -79
  493. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +1 -1
  494. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +20 -0
  495. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +6 -1
  496. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +16 -9
  497. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +1 -0
  498. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +1 -8
  499. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +4 -4
  500. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +5 -2
  501. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +47 -63
  502. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.d.ts +19 -0
  503. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.js +115 -1
  504. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/editFileTool.js +2 -1
  505. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +12 -9
  506. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.d.ts +3 -0
  507. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +39 -11
  508. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.d.ts +13 -0
  509. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +103 -0
  510. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.d.ts +2 -1
  511. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +28 -10
  512. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.d.ts +13 -0
  513. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.js +6 -0
  514. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +13 -0
  515. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.js +11 -0
  516. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +29 -29
  517. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +13 -3
  518. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
  519. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
  520. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  521. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  522. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  523. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +4 -4
  524. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  525. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  526. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  527. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  528. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  529. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  530. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  531. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  532. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  533. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  534. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  535. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  536. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  537. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
  538. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  539. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  540. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  541. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  542. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  543. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  544. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  545. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  546. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  547. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  548. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  549. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  550. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  551. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  552. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  553. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
  554. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  555. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  556. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  557. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  558. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  559. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  560. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  561. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  562. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  563. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  564. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  565. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  566. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  567. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  568. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  569. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  570. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +7 -5
  571. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +69 -66
  572. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +8 -6
  573. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  574. package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +4 -1
  575. package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.js +26 -1
  576. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  577. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  578. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  579. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  580. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  581. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
  582. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  583. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  584. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +42 -42
  585. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  586. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  587. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  588. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +160 -152
  589. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +170 -170
  590. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  591. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  592. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  593. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
  594. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  595. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  596. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
  597. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +7 -7
  598. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
  599. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
  600. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  601. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +4 -2
  602. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  603. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  604. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  605. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  606. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  607. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  608. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
  609. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  610. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  611. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  612. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  613. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  614. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  615. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  616. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  617. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  618. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  619. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  620. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  621. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
  622. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
  623. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  624. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  625. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  626. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  627. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
  628. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  629. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  630. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  631. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  632. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  633. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  634. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  635. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  636. package/vscode/src/vs/workbench/contrib/git/browser/gitService.d.ts +3 -1
  637. package/vscode/src/vs/workbench/contrib/git/browser/gitService.js +6 -0
  638. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  639. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.d.ts +10 -0
  640. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.js +6 -0
  641. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
  642. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  643. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  644. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
  645. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.d.ts +36 -0
  646. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +201 -34
  647. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +37 -35
  648. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
  649. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
  650. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
  651. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +40 -40
  652. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.d.ts +14 -2
  653. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.d.ts +3 -1
  654. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +20 -18
  655. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +6 -2
  656. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +7 -5
  657. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +3 -0
  658. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  659. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  660. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +3 -3
  661. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  662. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
  663. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
  664. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  665. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +4 -4
  666. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  667. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  668. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +2 -2
  669. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  670. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  671. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  672. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  673. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +3 -3
  674. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +7 -7
  675. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +1 -1
  676. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +5 -5
  677. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +1 -1
  678. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  679. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  680. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  681. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  682. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  683. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  684. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  685. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  686. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  687. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  688. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  689. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  690. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  691. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  692. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  693. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  694. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  695. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  696. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  697. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  698. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  699. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +63 -59
  700. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.d.ts +1 -0
  701. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.js +2 -2
  702. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  703. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  704. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  705. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  706. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  707. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  708. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  709. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  710. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  711. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  712. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  713. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
  714. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  715. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  716. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  717. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  718. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  719. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  720. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  721. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  722. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  723. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  724. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  725. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  726. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  727. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  728. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  729. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  730. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  731. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  732. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +3 -2
  733. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +5 -4
  734. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  735. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  736. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  737. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  738. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
  739. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  740. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  741. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  742. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +5 -1
  743. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +4 -0
  744. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  745. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  746. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +5 -1
  747. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +116 -95
  748. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.service.d.ts +4 -0
  749. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  750. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  751. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
  752. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  753. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  754. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  755. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  756. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  757. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  758. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  759. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  760. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  761. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  762. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  763. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  764. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  765. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +28 -6
  766. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
  767. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  768. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +1 -0
  769. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +19 -17
  770. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  771. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  772. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  773. package/vscode/src/vs/workbench/services/editor/browser/editorService.js +15 -0
  774. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.d.ts +12 -19
  775. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.js +12 -6
  776. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +22 -6
  777. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  778. package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +1 -1
  779. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  780. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  781. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  782. package/vscode/src/vs/workbench/services/extensions/common/extensions.js +2 -2
  783. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.d.ts +2 -2
  784. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +90 -90
  785. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  786. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  787. package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +2 -1
  788. package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +1 -0
  789. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  790. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  791. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  792. package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
  793. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.d.ts +1 -1
  794. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  795. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.d.ts +137 -0
  796. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +1079 -0
  797. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.d.ts +11 -0
  798. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +359 -0
  799. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  800. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  801. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  802. package/vscode/src/vs/workbench/services/search/common/search.d.ts +1 -1
  803. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  804. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  805. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  806. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  807. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  808. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  809. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +8 -4
  810. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +14 -7
  811. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  812. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  813. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  814. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  815. package/vscode-dts/vscode.proposed.authIssuers.d.ts +2 -2
  816. package/vscode-dts/vscode.proposed.browser.d.ts +92 -0
  817. package/vscode-dts/vscode.proposed.chatDebug.d.ts +136 -2
  818. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +6 -0
  819. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +7 -0
  820. package/vscode-dts/vscode.proposed.chatProvider.d.ts +51 -0
  821. package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +52 -3
  822. package/vscode-dts/vscode.proposed.d.ts +3 -0
  823. package/vscode-dts/vscode.proposed.findFiles2.d.ts +6 -0
  824. package/vscode-dts/vscode.proposed.findTextInFiles2.d.ts +6 -0
  825. package/vscode-dts/vscode.proposed.mcpServerDefinitions.d.ts +36 -10
  826. package/vscode-dts/vscode.proposed.taskRunOptions.d.ts +34 -0
  827. package/vscode-dts/vscode.proposed.toolInvocationApproveCombination.d.ts +22 -0
  828. package/vscode/src/vs/base/common/parsers.d.ts +0 -32
  829. package/vscode/src/vs/base/common/parsers.js +0 -54
  830. package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.d.ts +0 -47
  831. package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.js +0 -6
  832. package/vscode/src/vs/sessions/contrib/chat/browser/sessionTargetPicker.d.ts +0 -73
  833. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.d.ts +0 -37
  834. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.js +0 -6
  835. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.d.ts +0 -47
  836. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.js +0 -6
  837. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.d.ts +0 -11
  838. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.js +0 -205
  839. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +0 -433
  840. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +0 -1637
  841. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +0 -514
  842. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +0 -1796
@@ -466,6 +466,7 @@ class EditorFind extends BaseEditorOption {
466
466
  globalFindClipboard: false,
467
467
  addExtraSpaceOnTop: true,
468
468
  loop: true,
469
+ closeOnResult: false,
469
470
  history: "workspace",
470
471
  replaceHistory: "workspace"
471
472
  };
@@ -529,24 +530,32 @@ class EditorFind extends BaseEditorOption {
529
530
  "Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."
530
531
  ))
531
532
  },
533
+ "editor.find.closeOnResult": {
534
+ type: "boolean",
535
+ default: defaults.closeOnResult,
536
+ description: ( localize(
537
+ 300,
538
+ "Controls whether the Find Widget closes after an explicit find navigation command lands on a result."
539
+ ))
540
+ },
532
541
  "editor.find.history": {
533
542
  type: "string",
534
543
  enum: ["never", "workspace"],
535
544
  default: "workspace",
536
- enumDescriptions: [( localize(300, "Do not store search history from the find widget.")), ( localize(301, "Store search history across the active workspace"))],
537
- description: ( localize(302, "Controls how the find widget history should be stored"))
545
+ enumDescriptions: [( localize(301, "Do not store search history from the find widget.")), ( localize(302, "Store search history across the active workspace"))],
546
+ description: ( localize(303, "Controls how the find widget history should be stored"))
538
547
  },
539
548
  "editor.find.replaceHistory": {
540
549
  type: "string",
541
550
  enum: ["never", "workspace"],
542
551
  default: "workspace",
543
- enumDescriptions: [( localize(303, "Do not store history from the replace widget.")), ( localize(304, "Store replace history across the active workspace"))],
544
- description: ( localize(305, "Controls how the replace widget history should be stored"))
552
+ enumDescriptions: [( localize(304, "Do not store history from the replace widget.")), ( localize(305, "Store replace history across the active workspace"))],
553
+ description: ( localize(306, "Controls how the replace widget history should be stored"))
545
554
  },
546
555
  "editor.find.findOnType": {
547
556
  type: "boolean",
548
557
  default: defaults.findOnType,
549
- description: ( localize(306, "Controls whether the Find Widget should search as you type."))
558
+ description: ( localize(307, "Controls whether the Find Widget should search as you type."))
550
559
  }
551
560
  });
552
561
  }
@@ -571,6 +580,7 @@ class EditorFind extends BaseEditorOption {
571
580
  globalFindClipboard: boolean(input.globalFindClipboard, this.defaultValue.globalFindClipboard),
572
581
  addExtraSpaceOnTop: boolean(input.addExtraSpaceOnTop, this.defaultValue.addExtraSpaceOnTop),
573
582
  loop: boolean(input.loop, this.defaultValue.loop),
583
+ closeOnResult: boolean(input.closeOnResult, this.defaultValue.closeOnResult),
574
584
  history: stringSet(input.history, this.defaultValue.history, ["never", "workspace"]),
575
585
  replaceHistory: stringSet(
576
586
  input.replaceHistory,
@@ -592,18 +602,18 @@ class EditorFontLigatures extends BaseEditorOption {
592
602
  anyOf: [{
593
603
  type: "boolean",
594
604
  description: ( localize(
595
- 307,
605
+ 308,
596
606
  "Enables/Disables font ligatures ('calt' and 'liga' font features). Change this to a string for fine-grained control of the 'font-feature-settings' CSS property."
597
607
  ))
598
608
  }, {
599
609
  type: "string",
600
610
  description: ( localize(
601
- 308,
611
+ 309,
602
612
  "Explicit 'font-feature-settings' CSS property. A boolean can be passed instead if one only needs to turn on/off ligatures."
603
613
  ))
604
614
  }],
605
615
  description: ( localize(
606
- 309,
616
+ 310,
607
617
  "Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property."
608
618
  )),
609
619
  default: false
@@ -640,18 +650,18 @@ class EditorFontVariations extends BaseEditorOption {
640
650
  anyOf: [{
641
651
  type: "boolean",
642
652
  description: ( localize(
643
- 310,
653
+ 311,
644
654
  "Enables/Disables the translation from font-weight to font-variation-settings. Change this to a string for fine-grained control of the 'font-variation-settings' CSS property."
645
655
  ))
646
656
  }, {
647
657
  type: "string",
648
658
  description: ( localize(
649
- 311,
659
+ 312,
650
660
  "Explicit 'font-variation-settings' CSS property. A boolean can be passed instead if one only needs to translate font-weight to font-variation-settings."
651
661
  ))
652
662
  }],
653
663
  description: ( localize(
654
- 312,
664
+ 313,
655
665
  "Configures font variations. Can be either a boolean to enable/disable the translation from font-weight to font-variation-settings or a string for the value of the CSS 'font-variation-settings' property."
656
666
  )),
657
667
  default: false
@@ -740,7 +750,7 @@ class EditorFontSize extends SimpleEditorOption {
740
750
  minimum: 6,
741
751
  maximum: 100,
742
752
  default: EDITOR_FONT_DEFAULTS.fontSize,
743
- description: ( localize(313, "Controls the font size in pixels."))
753
+ description: ( localize(314, "Controls the font size in pixels."))
744
754
  });
745
755
  }
746
756
  validate(input) {
@@ -783,7 +793,7 @@ class EditorFontWeight extends BaseEditorOption {
783
793
  minimum: EditorFontWeight.MINIMUM_VALUE,
784
794
  maximum: EditorFontWeight.MAXIMUM_VALUE,
785
795
  errorMessage: ( localize(
786
- 314,
796
+ 315,
787
797
  "Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed."
788
798
  ))
789
799
  }, {
@@ -794,7 +804,7 @@ class EditorFontWeight extends BaseEditorOption {
794
804
  }],
795
805
  default: EDITOR_FONT_DEFAULTS.fontWeight,
796
806
  description: ( localize(
797
- 315,
807
+ 316,
798
808
  "Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."
799
809
  ))
800
810
  });
@@ -832,7 +842,7 @@ class EditorGoToLocation extends BaseEditorOption {
832
842
  type: "string",
833
843
  enum: ["peek", "gotoAndPeek", "goto"],
834
844
  default: defaults.multiple,
835
- enumDescriptions: [( localize(316, "Show Peek view of the results (default)")), ( localize(317, "Go to the primary result and show a Peek view")), ( localize(318, "Go to the primary result and enable Peek-less navigation to others"))]
845
+ enumDescriptions: [( localize(317, "Show Peek view of the results (default)")), ( localize(318, "Go to the primary result and show a Peek view")), ( localize(319, "Go to the primary result and enable Peek-less navigation to others"))]
836
846
  };
837
847
  const alternativeCommandOptions = [
838
848
  "",
@@ -851,41 +861,41 @@ class EditorGoToLocation extends BaseEditorOption {
851
861
  super(EditorOption.gotoLocation, "gotoLocation", defaults, {
852
862
  "editor.gotoLocation.multiple": {
853
863
  deprecationMessage: ( localize(
854
- 319,
864
+ 320,
855
865
  "This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead."
856
866
  ))
857
867
  },
858
868
  "editor.gotoLocation.multipleDefinitions": {
859
869
  description: ( localize(
860
- 320,
870
+ 321,
861
871
  "Controls the behavior the 'Go to Definition'-command when multiple target locations exist."
862
872
  )),
863
873
  ...jsonSubset
864
874
  },
865
875
  "editor.gotoLocation.multipleTypeDefinitions": {
866
876
  description: ( localize(
867
- 321,
877
+ 322,
868
878
  "Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."
869
879
  )),
870
880
  ...jsonSubset
871
881
  },
872
882
  "editor.gotoLocation.multipleDeclarations": {
873
883
  description: ( localize(
874
- 322,
884
+ 323,
875
885
  "Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."
876
886
  )),
877
887
  ...jsonSubset
878
888
  },
879
889
  "editor.gotoLocation.multipleImplementations": {
880
890
  description: ( localize(
881
- 323,
891
+ 324,
882
892
  "Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."
883
893
  )),
884
894
  ...jsonSubset
885
895
  },
886
896
  "editor.gotoLocation.multipleReferences": {
887
897
  description: ( localize(
888
- 324,
898
+ 325,
889
899
  "Controls the behavior the 'Go to References'-command when multiple target locations exist."
890
900
  )),
891
901
  ...jsonSubset
@@ -895,7 +905,7 @@ class EditorGoToLocation extends BaseEditorOption {
895
905
  default: defaults.alternativeDefinitionCommand,
896
906
  enum: alternativeCommandOptions,
897
907
  description: ( localize(
898
- 325,
908
+ 326,
899
909
  "Alternative command id that is being executed when the result of 'Go to Definition' is the current location."
900
910
  ))
901
911
  },
@@ -904,7 +914,7 @@ class EditorGoToLocation extends BaseEditorOption {
904
914
  default: defaults.alternativeTypeDefinitionCommand,
905
915
  enum: alternativeCommandOptions,
906
916
  description: ( localize(
907
- 326,
917
+ 327,
908
918
  "Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."
909
919
  ))
910
920
  },
@@ -913,7 +923,7 @@ class EditorGoToLocation extends BaseEditorOption {
913
923
  default: defaults.alternativeDeclarationCommand,
914
924
  enum: alternativeCommandOptions,
915
925
  description: ( localize(
916
- 327,
926
+ 328,
917
927
  "Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."
918
928
  ))
919
929
  },
@@ -922,7 +932,7 @@ class EditorGoToLocation extends BaseEditorOption {
922
932
  default: defaults.alternativeImplementationCommand,
923
933
  enum: alternativeCommandOptions,
924
934
  description: ( localize(
925
- 328,
935
+ 329,
926
936
  "Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."
927
937
  ))
928
938
  },
@@ -931,7 +941,7 @@ class EditorGoToLocation extends BaseEditorOption {
931
941
  default: defaults.alternativeReferenceCommand,
932
942
  enum: alternativeCommandOptions,
933
943
  description: ( localize(
934
- 329,
944
+ 330,
935
945
  "Alternative command id that is being executed when the result of 'Go to Reference' is the current location."
936
946
  ))
937
947
  }
@@ -993,25 +1003,25 @@ class EditorHover extends BaseEditorOption {
993
1003
  type: "string",
994
1004
  enum: ["on", "off", "onKeyboardModifier"],
995
1005
  default: defaults.enabled,
996
- markdownEnumDescriptions: [( localize(330, "Hover is enabled.")), ( localize(331, "Hover is disabled.")), ( localize(
997
- 332,
1006
+ markdownEnumDescriptions: [( localize(331, "Hover is enabled.")), ( localize(332, "Hover is disabled.")), ( localize(
1007
+ 333,
998
1008
  "Hover is shown when holding `{0}` or `Alt` (the opposite modifier of `#editor.multiCursorModifier#`)",
999
1009
  isMacintosh ? `Command` : `Control`
1000
1010
  ))],
1001
- description: ( localize(333, "Controls whether the hover is shown."))
1011
+ description: ( localize(334, "Controls whether the hover is shown."))
1002
1012
  },
1003
1013
  "editor.hover.delay": {
1004
1014
  type: "number",
1005
1015
  default: defaults.delay,
1006
1016
  minimum: 0,
1007
1017
  maximum: 10000,
1008
- description: ( localize(334, "Controls the delay in milliseconds after which the hover is shown."))
1018
+ description: ( localize(335, "Controls the delay in milliseconds after which the hover is shown."))
1009
1019
  },
1010
1020
  "editor.hover.sticky": {
1011
1021
  type: "boolean",
1012
1022
  default: defaults.sticky,
1013
1023
  description: ( localize(
1014
- 335,
1024
+ 336,
1015
1025
  "Controls whether the hover should remain visible when mouse is moved over it."
1016
1026
  ))
1017
1027
  },
@@ -1020,20 +1030,20 @@ class EditorHover extends BaseEditorOption {
1020
1030
  minimum: 0,
1021
1031
  default: defaults.hidingDelay,
1022
1032
  markdownDescription: ( localize(
1023
- 336,
1033
+ 337,
1024
1034
  "Controls the delay in milliseconds after which the hover is hidden. Requires `#editor.hover.sticky#` to be enabled."
1025
1035
  ))
1026
1036
  },
1027
1037
  "editor.hover.above": {
1028
1038
  type: "boolean",
1029
1039
  default: defaults.above,
1030
- description: ( localize(337, "Prefer showing hovers above the line, if there's space."))
1040
+ description: ( localize(338, "Prefer showing hovers above the line, if there's space."))
1031
1041
  },
1032
1042
  "editor.hover.showLongLineWarning": {
1033
1043
  type: "boolean",
1034
1044
  default: defaults.showLongLineWarning,
1035
1045
  description: ( localize(
1036
- 338,
1046
+ 339,
1037
1047
  "Controls whether long line warning hovers are shown, such as when tokenization is skipped or rendering is paused."
1038
1048
  ))
1039
1049
  }
@@ -1390,17 +1400,17 @@ class WrappingStrategy extends BaseEditorOption {
1390
1400
  super(EditorOption.wrappingStrategy, "wrappingStrategy", "simple", {
1391
1401
  "editor.wrappingStrategy": {
1392
1402
  enumDescriptions: [( localize(
1393
- 339,
1403
+ 340,
1394
1404
  "Assumes that all characters are of the same width. This is a fast algorithm that works correctly for monospace fonts and certain scripts (like Latin characters) where glyphs are of equal width."
1395
1405
  )), ( localize(
1396
- 340,
1406
+ 341,
1397
1407
  "Delegates wrapping points computation to the browser. This is a slow algorithm, that might cause freezes for large files, but it works correctly in all cases."
1398
1408
  ))],
1399
1409
  type: "string",
1400
1410
  enum: ["simple", "advanced"],
1401
1411
  default: "simple",
1402
1412
  description: ( localize(
1403
- 341,
1413
+ 342,
1404
1414
  "Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."
1405
1415
  ))
1406
1416
  }
@@ -1437,11 +1447,11 @@ class EditorLightbulb extends BaseEditorOption {
1437
1447
  ShowLightbulbIconMode.On
1438
1448
  ],
1439
1449
  default: defaults.enabled,
1440
- enumDescriptions: [( localize(342, "Disable the code action menu.")), ( localize(343, "Show the code action menu when the cursor is on lines with code.")), ( localize(
1441
- 344,
1450
+ enumDescriptions: [( localize(343, "Disable the code action menu.")), ( localize(344, "Show the code action menu when the cursor is on lines with code.")), ( localize(
1451
+ 345,
1442
1452
  "Show the code action menu when the cursor is on lines with code or on empty lines."
1443
1453
  ))],
1444
- description: ( localize(345, "Enables the Code Action lightbulb in the editor."))
1454
+ description: ( localize(346, "Enables the Code Action lightbulb in the editor."))
1445
1455
  }
1446
1456
  });
1447
1457
  }
@@ -1472,7 +1482,7 @@ class EditorStickyScroll extends BaseEditorOption {
1472
1482
  type: "boolean",
1473
1483
  default: defaults.enabled,
1474
1484
  description: ( localize(
1475
- 346,
1485
+ 347,
1476
1486
  "Shows the nested current scopes during the scroll at the top of the editor."
1477
1487
  ))
1478
1488
  },
@@ -1481,14 +1491,14 @@ class EditorStickyScroll extends BaseEditorOption {
1481
1491
  default: defaults.maxLineCount,
1482
1492
  minimum: 1,
1483
1493
  maximum: 20,
1484
- description: ( localize(347, "Defines the maximum number of sticky lines to show."))
1494
+ description: ( localize(348, "Defines the maximum number of sticky lines to show."))
1485
1495
  },
1486
1496
  "editor.stickyScroll.defaultModel": {
1487
1497
  type: "string",
1488
1498
  enum: ["outlineModel", "foldingProviderModel", "indentationModel"],
1489
1499
  default: defaults.defaultModel,
1490
1500
  description: ( localize(
1491
- 348,
1501
+ 349,
1492
1502
  "Defines the model to use for determining which lines to stick. If the outline model does not exist, it will fall back on the folding provider model which falls back on the indentation model. This order is respected in all three cases."
1493
1503
  ))
1494
1504
  },
@@ -1496,7 +1506,7 @@ class EditorStickyScroll extends BaseEditorOption {
1496
1506
  type: "boolean",
1497
1507
  default: defaults.scrollWithEditor,
1498
1508
  description: ( localize(
1499
- 349,
1509
+ 350,
1500
1510
  "Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."
1501
1511
  ))
1502
1512
  }
@@ -1532,23 +1542,23 @@ class EditorInlayHints extends BaseEditorOption {
1532
1542
  "editor.inlayHints.enabled": {
1533
1543
  type: "string",
1534
1544
  default: defaults.enabled,
1535
- description: ( localize(350, "Enables the inlay hints in the editor.")),
1545
+ description: ( localize(351, "Enables the inlay hints in the editor.")),
1536
1546
  enum: ["on", "onUnlessPressed", "offUnlessPressed", "off"],
1537
- markdownEnumDescriptions: [( localize(351, "Inlay hints are enabled")), ( localize(
1538
- 352,
1547
+ markdownEnumDescriptions: [( localize(352, "Inlay hints are enabled")), ( localize(
1548
+ 353,
1539
1549
  "Inlay hints are showing by default and hide when holding {0}",
1540
1550
  isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
1541
1551
  )), ( localize(
1542
- 353,
1552
+ 354,
1543
1553
  "Inlay hints are hidden by default and show when holding {0}",
1544
1554
  isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
1545
- )), ( localize(354, "Inlay hints are disabled"))]
1555
+ )), ( localize(355, "Inlay hints are disabled"))]
1546
1556
  },
1547
1557
  "editor.inlayHints.fontSize": {
1548
1558
  type: "number",
1549
1559
  default: defaults.fontSize,
1550
1560
  markdownDescription: ( localize(
1551
- 355,
1561
+ 356,
1552
1562
  "Controls font size of inlay hints in the editor. As default the {0} is used when the configured value is less than {1} or greater than the editor font size.",
1553
1563
  "`#editor.fontSize#`",
1554
1564
  "`5`"
@@ -1558,7 +1568,7 @@ class EditorInlayHints extends BaseEditorOption {
1558
1568
  type: "string",
1559
1569
  default: defaults.fontFamily,
1560
1570
  markdownDescription: ( localize(
1561
- 356,
1571
+ 357,
1562
1572
  "Controls font family of inlay hints in the editor. When set to empty, the {0} is used.",
1563
1573
  "`#editor.fontFamily#`"
1564
1574
  ))
@@ -1566,13 +1576,13 @@ class EditorInlayHints extends BaseEditorOption {
1566
1576
  "editor.inlayHints.padding": {
1567
1577
  type: "boolean",
1568
1578
  default: defaults.padding,
1569
- description: ( localize(357, "Enables the padding around the inlay hints in the editor."))
1579
+ description: ( localize(358, "Enables the padding around the inlay hints in the editor."))
1570
1580
  },
1571
1581
  "editor.inlayHints.maximumLength": {
1572
1582
  type: "number",
1573
1583
  default: defaults.maximumLength,
1574
1584
  markdownDescription: ( localize(
1575
- 358,
1585
+ 359,
1576
1586
  "Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"
1577
1587
  ))
1578
1588
  }
@@ -1638,7 +1648,7 @@ class EditorLineHeight extends EditorFloatOption {
1638
1648
  x => EditorFloatOption.clamp(x, 0, 150),
1639
1649
  {
1640
1650
  markdownDescription: ( localize(
1641
- 359,
1651
+ 360,
1642
1652
  "Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."
1643
1653
  ))
1644
1654
  },
@@ -1671,45 +1681,45 @@ class EditorMinimap extends BaseEditorOption {
1671
1681
  "editor.minimap.enabled": {
1672
1682
  type: "boolean",
1673
1683
  default: defaults.enabled,
1674
- description: ( localize(360, "Controls whether the minimap is shown."))
1684
+ description: ( localize(361, "Controls whether the minimap is shown."))
1675
1685
  },
1676
1686
  "editor.minimap.autohide": {
1677
1687
  type: "string",
1678
1688
  enum: ["none", "mouseover", "scroll"],
1679
- enumDescriptions: [( localize(361, "The minimap is always shown.")), ( localize(
1680
- 362,
1689
+ enumDescriptions: [( localize(362, "The minimap is always shown.")), ( localize(
1690
+ 363,
1681
1691
  "The minimap is hidden when mouse is not over the minimap and shown when mouse is over the minimap."
1682
- )), ( localize(363, "The minimap is only shown when the editor is scrolled"))],
1692
+ )), ( localize(364, "The minimap is only shown when the editor is scrolled"))],
1683
1693
  default: defaults.autohide,
1684
- description: ( localize(364, "Controls whether the minimap is hidden automatically."))
1694
+ description: ( localize(365, "Controls whether the minimap is hidden automatically."))
1685
1695
  },
1686
1696
  "editor.minimap.size": {
1687
1697
  type: "string",
1688
1698
  enum: ["proportional", "fill", "fit"],
1689
1699
  enumDescriptions: [( localize(
1690
- 365,
1700
+ 366,
1691
1701
  "The minimap has the same size as the editor contents (and might scroll)."
1692
1702
  )), ( localize(
1693
- 366,
1703
+ 367,
1694
1704
  "The minimap will stretch or shrink as necessary to fill the height of the editor (no scrolling)."
1695
1705
  )), ( localize(
1696
- 367,
1706
+ 368,
1697
1707
  "The minimap will shrink as necessary to never be larger than the editor (no scrolling)."
1698
1708
  ))],
1699
1709
  default: defaults.size,
1700
- description: ( localize(368, "Controls the size of the minimap."))
1710
+ description: ( localize(369, "Controls the size of the minimap."))
1701
1711
  },
1702
1712
  "editor.minimap.side": {
1703
1713
  type: "string",
1704
1714
  enum: ["left", "right"],
1705
1715
  default: defaults.side,
1706
- description: ( localize(369, "Controls the side where to render the minimap."))
1716
+ description: ( localize(370, "Controls the side where to render the minimap."))
1707
1717
  },
1708
1718
  "editor.minimap.showSlider": {
1709
1719
  type: "string",
1710
1720
  enum: ["always", "mouseover"],
1711
1721
  default: defaults.showSlider,
1712
- description: ( localize(370, "Controls when the minimap slider is shown."))
1722
+ description: ( localize(371, "Controls when the minimap slider is shown."))
1713
1723
  },
1714
1724
  "editor.minimap.scale": {
1715
1725
  type: "number",
@@ -1717,18 +1727,18 @@ class EditorMinimap extends BaseEditorOption {
1717
1727
  minimum: 1,
1718
1728
  maximum: 3,
1719
1729
  enum: [1, 2, 3],
1720
- description: ( localize(371, "Scale of content drawn in the minimap: 1, 2 or 3."))
1730
+ description: ( localize(372, "Scale of content drawn in the minimap: 1, 2 or 3."))
1721
1731
  },
1722
1732
  "editor.minimap.renderCharacters": {
1723
1733
  type: "boolean",
1724
1734
  default: defaults.renderCharacters,
1725
- description: ( localize(372, "Render the actual characters on a line as opposed to color blocks."))
1735
+ description: ( localize(373, "Render the actual characters on a line as opposed to color blocks."))
1726
1736
  },
1727
1737
  "editor.minimap.maxColumn": {
1728
1738
  type: "number",
1729
1739
  default: defaults.maxColumn,
1730
1740
  description: ( localize(
1731
- 373,
1741
+ 374,
1732
1742
  "Limit the width of the minimap to render at most a certain number of columns."
1733
1743
  ))
1734
1744
  },
@@ -1736,7 +1746,7 @@ class EditorMinimap extends BaseEditorOption {
1736
1746
  type: "boolean",
1737
1747
  default: defaults.showRegionSectionHeaders,
1738
1748
  description: ( localize(
1739
- 374,
1749
+ 375,
1740
1750
  "Controls whether named regions are shown as section headers in the minimap."
1741
1751
  ))
1742
1752
  },
@@ -1744,7 +1754,7 @@ class EditorMinimap extends BaseEditorOption {
1744
1754
  type: "boolean",
1745
1755
  default: defaults.showMarkSectionHeaders,
1746
1756
  description: ( localize(
1747
- 375,
1757
+ 376,
1748
1758
  "Controls whether MARK: comments are shown as section headers in the minimap."
1749
1759
  ))
1750
1760
  },
@@ -1752,20 +1762,20 @@ class EditorMinimap extends BaseEditorOption {
1752
1762
  type: "string",
1753
1763
  default: defaults.markSectionHeaderRegex,
1754
1764
  description: ( localize(
1755
- 376,
1765
+ 377,
1756
1766
  "Defines the regular expression used to find section headers in comments. The regex must contain a named match group `label` (written as `(?<label>.+)`) that encapsulates the section header, otherwise it will not work. Optionally you can include another match group named `separator`. Use \\n in the pattern to match multi-line headers."
1757
1767
  ))
1758
1768
  },
1759
1769
  "editor.minimap.sectionHeaderFontSize": {
1760
1770
  type: "number",
1761
1771
  default: defaults.sectionHeaderFontSize,
1762
- description: ( localize(377, "Controls the font size of section headers in the minimap."))
1772
+ description: ( localize(378, "Controls the font size of section headers in the minimap."))
1763
1773
  },
1764
1774
  "editor.minimap.sectionHeaderLetterSpacing": {
1765
1775
  type: "number",
1766
1776
  default: defaults.sectionHeaderLetterSpacing,
1767
1777
  description: ( localize(
1768
- 378,
1778
+ 379,
1769
1779
  "Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."
1770
1780
  ))
1771
1781
  }
@@ -1830,7 +1840,7 @@ class EditorPadding extends BaseEditorOption {
1830
1840
  minimum: 0,
1831
1841
  maximum: 1000,
1832
1842
  description: ( localize(
1833
- 379,
1843
+ 380,
1834
1844
  "Controls the amount of space between the top edge of the editor and the first line."
1835
1845
  ))
1836
1846
  },
@@ -1840,7 +1850,7 @@ class EditorPadding extends BaseEditorOption {
1840
1850
  minimum: 0,
1841
1851
  maximum: 1000,
1842
1852
  description: ( localize(
1843
- 380,
1853
+ 381,
1844
1854
  "Controls the amount of space between the bottom edge of the editor and the last line."
1845
1855
  ))
1846
1856
  }
@@ -1868,7 +1878,7 @@ class EditorParameterHints extends BaseEditorOption {
1868
1878
  type: "boolean",
1869
1879
  default: defaults.enabled,
1870
1880
  description: ( localize(
1871
- 381,
1881
+ 382,
1872
1882
  "Enables a pop-up that shows parameter documentation and type information as you type."
1873
1883
  ))
1874
1884
  },
@@ -1876,7 +1886,7 @@ class EditorParameterHints extends BaseEditorOption {
1876
1886
  type: "boolean",
1877
1887
  default: defaults.cycle,
1878
1888
  description: ( localize(
1879
- 382,
1889
+ 383,
1880
1890
  "Controls whether the parameter hints menu cycles or closes when reaching the end of the list."
1881
1891
  ))
1882
1892
  }
@@ -1927,10 +1937,7 @@ class EditorQuickSuggestions extends BaseEditorOption {
1927
1937
  }, {
1928
1938
  type: "string",
1929
1939
  enum: ["on", "inline", "off", "offWhenInlineCompletions"],
1930
- enumDescriptions: [( localize(383, "Quick suggestions show inside the suggest widget")), ( localize(384, "Quick suggestions show as ghost text")), ( localize(385, "Quick suggestions are disabled")), ( localize(
1931
- 386,
1932
- "Quick suggestions are disabled when an inline completion provider is available"
1933
- ))]
1940
+ enumDescriptions: [( localize(384, "Quick suggestions show inside the suggest widget")), ( localize(385, "Quick suggestions show as ghost text")), ( localize(386, "Quick suggestions are disabled")), ( localize(387, "Quick suggestions are disabled when inline completions are showing"))]
1934
1941
  }];
1935
1942
  super(EditorOption.quickSuggestions, "quickSuggestions", defaults, {
1936
1943
  anyOf: [{
@@ -1938,9 +1945,9 @@ class EditorQuickSuggestions extends BaseEditorOption {
1938
1945
  }, {
1939
1946
  type: "string",
1940
1947
  enum: ["on", "inline", "off", "offWhenInlineCompletions"],
1941
- enumDescriptions: [( localize(387, "Quick suggestions are enabled for all token types")), ( localize(388, "Quick suggestions show as ghost text for all token types")), ( localize(389, "Quick suggestions are disabled for all token types")), ( localize(
1942
- 390,
1943
- "Quick suggestions are disabled for all token types when an inline completion provider is available"
1948
+ enumDescriptions: [( localize(388, "Quick suggestions are enabled for all token types")), ( localize(389, "Quick suggestions show as ghost text for all token types")), ( localize(390, "Quick suggestions are disabled for all token types")), ( localize(
1949
+ 391,
1950
+ "Quick suggestions are disabled for all token types when inline completions are showing"
1944
1951
  ))]
1945
1952
  }, {
1946
1953
  type: "object",
@@ -1949,23 +1956,23 @@ class EditorQuickSuggestions extends BaseEditorOption {
1949
1956
  strings: {
1950
1957
  anyOf: types,
1951
1958
  default: defaults.strings,
1952
- description: ( localize(391, "Enable quick suggestions inside strings."))
1959
+ description: ( localize(392, "Enable quick suggestions inside strings."))
1953
1960
  },
1954
1961
  comments: {
1955
1962
  anyOf: types,
1956
1963
  default: defaults.comments,
1957
- description: ( localize(392, "Enable quick suggestions inside comments."))
1964
+ description: ( localize(393, "Enable quick suggestions inside comments."))
1958
1965
  },
1959
1966
  other: {
1960
1967
  anyOf: types,
1961
1968
  default: defaults.other,
1962
- description: ( localize(393, "Enable quick suggestions outside of strings and comments."))
1969
+ description: ( localize(394, "Enable quick suggestions outside of strings and comments."))
1963
1970
  }
1964
1971
  }
1965
1972
  }],
1966
1973
  default: defaults,
1967
1974
  markdownDescription: ( localize(
1968
- 394,
1975
+ 395,
1969
1976
  "Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the {0}-setting which controls if suggestions are triggered by special characters.",
1970
1977
  "`#editor.suggestOnTriggerCharacters#`"
1971
1978
  )),
@@ -2043,9 +2050,9 @@ class EditorRenderLineNumbersOption extends BaseEditorOption {
2043
2050
  }, {
2044
2051
  type: "string",
2045
2052
  enum: ["off", "on", "relative", "interval"],
2046
- enumDescriptions: [( localize(395, "Line numbers are not rendered.")), ( localize(396, "Line numbers are rendered as absolute number.")), ( localize(397, "Line numbers are rendered as distance in lines to cursor position.")), ( localize(398, "Line numbers are rendered every 10 lines."))],
2053
+ enumDescriptions: [( localize(396, "Line numbers are not rendered.")), ( localize(397, "Line numbers are rendered as absolute number.")), ( localize(398, "Line numbers are rendered as distance in lines to cursor position.")), ( localize(399, "Line numbers are rendered every 10 lines."))],
2047
2054
  default: "on",
2048
- description: ( localize(399, "Controls the display of line numbers."))
2055
+ description: ( localize(400, "Controls the display of line numbers."))
2049
2056
  });
2050
2057
  }
2051
2058
  validate(lineNumbers) {
@@ -2087,7 +2094,7 @@ class EditorRulers extends BaseEditorOption {
2087
2094
  const columnSchema = {
2088
2095
  type: "number",
2089
2096
  description: ( localize(
2090
- 400,
2097
+ 401,
2091
2098
  "Number of monospace characters at which this editor ruler will render."
2092
2099
  ))
2093
2100
  };
@@ -2100,7 +2107,7 @@ class EditorRulers extends BaseEditorOption {
2100
2107
  column: columnSchema,
2101
2108
  color: {
2102
2109
  type: "string",
2103
- description: ( localize(401, "Color of this editor ruler.")),
2110
+ description: ( localize(402, "Color of this editor ruler.")),
2104
2111
  format: "color-hex"
2105
2112
  }
2106
2113
  }
@@ -2108,7 +2115,7 @@ class EditorRulers extends BaseEditorOption {
2108
2115
  },
2109
2116
  default: defaults,
2110
2117
  description: ( localize(
2111
- 402,
2118
+ 403,
2112
2119
  "Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty."
2113
2120
  ))
2114
2121
  });
@@ -2183,37 +2190,37 @@ class EditorScrollbar extends BaseEditorOption {
2183
2190
  "editor.scrollbar.vertical": {
2184
2191
  type: "string",
2185
2192
  enum: ["auto", "visible", "hidden"],
2186
- enumDescriptions: [( localize(403, "The vertical scrollbar will be visible only when necessary.")), ( localize(404, "The vertical scrollbar will always be visible.")), ( localize(405, "The vertical scrollbar will always be hidden."))],
2193
+ enumDescriptions: [( localize(404, "The vertical scrollbar will be visible only when necessary.")), ( localize(405, "The vertical scrollbar will always be visible.")), ( localize(406, "The vertical scrollbar will always be hidden."))],
2187
2194
  default: "auto",
2188
- description: ( localize(406, "Controls the visibility of the vertical scrollbar."))
2195
+ description: ( localize(407, "Controls the visibility of the vertical scrollbar."))
2189
2196
  },
2190
2197
  "editor.scrollbar.horizontal": {
2191
2198
  type: "string",
2192
2199
  enum: ["auto", "visible", "hidden"],
2193
- enumDescriptions: [( localize(407, "The horizontal scrollbar will be visible only when necessary.")), ( localize(408, "The horizontal scrollbar will always be visible.")), ( localize(409, "The horizontal scrollbar will always be hidden."))],
2200
+ enumDescriptions: [( localize(408, "The horizontal scrollbar will be visible only when necessary.")), ( localize(409, "The horizontal scrollbar will always be visible.")), ( localize(410, "The horizontal scrollbar will always be hidden."))],
2194
2201
  default: "auto",
2195
- description: ( localize(410, "Controls the visibility of the horizontal scrollbar."))
2202
+ description: ( localize(411, "Controls the visibility of the horizontal scrollbar."))
2196
2203
  },
2197
2204
  "editor.scrollbar.verticalScrollbarSize": {
2198
2205
  type: "number",
2199
2206
  default: defaults.verticalScrollbarSize,
2200
- description: ( localize(411, "The width of the vertical scrollbar."))
2207
+ description: ( localize(412, "The width of the vertical scrollbar."))
2201
2208
  },
2202
2209
  "editor.scrollbar.horizontalScrollbarSize": {
2203
2210
  type: "number",
2204
2211
  default: defaults.horizontalScrollbarSize,
2205
- description: ( localize(412, "The height of the horizontal scrollbar."))
2212
+ description: ( localize(413, "The height of the horizontal scrollbar."))
2206
2213
  },
2207
2214
  "editor.scrollbar.scrollByPage": {
2208
2215
  type: "boolean",
2209
2216
  default: defaults.scrollByPage,
2210
- description: ( localize(413, "Controls whether clicks scroll by page or jump to click position."))
2217
+ description: ( localize(414, "Controls whether clicks scroll by page or jump to click position."))
2211
2218
  },
2212
2219
  "editor.scrollbar.ignoreHorizontalScrollbarInContentHeight": {
2213
2220
  type: "boolean",
2214
2221
  default: defaults.ignoreHorizontalScrollbarInContentHeight,
2215
2222
  description: ( localize(
2216
- 414,
2223
+ 415,
2217
2224
  "When set, the horizontal scrollbar will not increase the size of the editor's content."
2218
2225
  ))
2219
2226
  }
@@ -2288,7 +2295,7 @@ class UnicodeHighlight extends BaseEditorOption {
2288
2295
  enum: [true, false, inUntrustedWorkspace],
2289
2296
  default: defaults.nonBasicASCII,
2290
2297
  description: ( localize(
2291
- 415,
2298
+ 416,
2292
2299
  "Controls whether all non-basic ASCII characters are highlighted. Only characters between U+0020 and U+007E, tab, line-feed and carriage-return are considered basic ASCII."
2293
2300
  ))
2294
2301
  },
@@ -2297,7 +2304,7 @@ class UnicodeHighlight extends BaseEditorOption {
2297
2304
  type: "boolean",
2298
2305
  default: defaults.invisibleCharacters,
2299
2306
  description: ( localize(
2300
- 416,
2307
+ 417,
2301
2308
  "Controls whether characters that just reserve space or have no width at all are highlighted."
2302
2309
  ))
2303
2310
  },
@@ -2306,7 +2313,7 @@ class UnicodeHighlight extends BaseEditorOption {
2306
2313
  type: "boolean",
2307
2314
  default: defaults.ambiguousCharacters,
2308
2315
  description: ( localize(
2309
- 417,
2316
+ 418,
2310
2317
  "Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."
2311
2318
  ))
2312
2319
  },
@@ -2316,7 +2323,7 @@ class UnicodeHighlight extends BaseEditorOption {
2316
2323
  enum: [true, false, inUntrustedWorkspace],
2317
2324
  default: defaults.includeComments,
2318
2325
  description: ( localize(
2319
- 418,
2326
+ 419,
2320
2327
  "Controls whether characters in comments should also be subject to Unicode highlighting."
2321
2328
  ))
2322
2329
  },
@@ -2326,7 +2333,7 @@ class UnicodeHighlight extends BaseEditorOption {
2326
2333
  enum: [true, false, inUntrustedWorkspace],
2327
2334
  default: defaults.includeStrings,
2328
2335
  description: ( localize(
2329
- 419,
2336
+ 420,
2330
2337
  "Controls whether characters in strings should also be subject to Unicode highlighting."
2331
2338
  ))
2332
2339
  },
@@ -2334,7 +2341,7 @@ class UnicodeHighlight extends BaseEditorOption {
2334
2341
  restricted: true,
2335
2342
  type: "object",
2336
2343
  default: defaults.allowedCharacters,
2337
- description: ( localize(420, "Defines allowed characters that are not being highlighted.")),
2344
+ description: ( localize(421, "Defines allowed characters that are not being highlighted.")),
2338
2345
  additionalProperties: {
2339
2346
  type: "boolean"
2340
2347
  }
@@ -2347,7 +2354,7 @@ class UnicodeHighlight extends BaseEditorOption {
2347
2354
  },
2348
2355
  default: defaults.allowedLocales,
2349
2356
  description: ( localize(
2350
- 421,
2357
+ 422,
2351
2358
  "Unicode characters that are common in allowed locales are not being highlighted."
2352
2359
  ))
2353
2360
  }
@@ -2450,7 +2457,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2450
2457
  type: "boolean",
2451
2458
  default: defaults.enabled,
2452
2459
  description: ( localize(
2453
- 422,
2460
+ 423,
2454
2461
  "Controls whether to automatically show inline suggestions in the editor."
2455
2462
  ))
2456
2463
  },
@@ -2459,19 +2466,19 @@ class InlineEditorSuggest extends BaseEditorOption {
2459
2466
  default: defaults.showToolbar,
2460
2467
  enum: ["always", "onHover", "never"],
2461
2468
  enumDescriptions: [( localize(
2462
- 423,
2469
+ 424,
2463
2470
  "Show the inline suggestion toolbar whenever an inline suggestion is shown."
2464
2471
  )), ( localize(
2465
- 424,
2472
+ 425,
2466
2473
  "Show the inline suggestion toolbar when hovering over an inline suggestion."
2467
- )), ( localize(425, "Never show the inline suggestion toolbar."))],
2468
- description: ( localize(426, "Controls when to show the inline suggestion toolbar."))
2474
+ )), ( localize(426, "Never show the inline suggestion toolbar."))],
2475
+ description: ( localize(427, "Controls when to show the inline suggestion toolbar."))
2469
2476
  },
2470
2477
  "editor.inlineSuggest.syntaxHighlightingEnabled": {
2471
2478
  type: "boolean",
2472
2479
  default: defaults.syntaxHighlightingEnabled,
2473
2480
  description: ( localize(
2474
- 427,
2481
+ 428,
2475
2482
  "Controls whether to show syntax highlighting for inline suggestions in the editor."
2476
2483
  ))
2477
2484
  },
@@ -2479,7 +2486,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2479
2486
  type: "boolean",
2480
2487
  default: defaults.suppressSuggestions,
2481
2488
  description: ( localize(
2482
- 428,
2489
+ 429,
2483
2490
  "Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
2484
2491
  ))
2485
2492
  },
@@ -2487,7 +2494,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2487
2494
  type: "boolean",
2488
2495
  default: defaults.suppressInSnippetMode,
2489
2496
  description: ( localize(
2490
- 429,
2497
+ 430,
2491
2498
  "Controls whether inline suggestions are suppressed when in snippet mode."
2492
2499
  ))
2493
2500
  },
@@ -2497,7 +2504,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2497
2504
  minimum: 0,
2498
2505
  maximum: 10000,
2499
2506
  description: ( localize(
2500
- 430,
2507
+ 431,
2501
2508
  "Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."
2502
2509
  ))
2503
2510
  },
@@ -2506,7 +2513,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2506
2513
  default: defaults.experimental.suppressInlineSuggestions,
2507
2514
  tags: ["experimental"],
2508
2515
  description: ( localize(
2509
- 431,
2516
+ 432,
2510
2517
  "Suppresses inline completions for specified extension IDs -- comma separated."
2511
2518
  )),
2512
2519
  experiment: {
@@ -2518,7 +2525,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2518
2525
  default: defaults.experimental.emptyResponseInformation,
2519
2526
  tags: ["experimental"],
2520
2527
  description: ( localize(
2521
- 432,
2528
+ 433,
2522
2529
  "Controls whether to send request information from the inline suggestion provider."
2523
2530
  )),
2524
2531
  experiment: {
@@ -2530,7 +2537,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2530
2537
  default: defaults.triggerCommandOnProviderChange,
2531
2538
  tags: ["experimental"],
2532
2539
  description: ( localize(
2533
- 433,
2540
+ 434,
2534
2541
  "Controls whether to trigger a command when the inline suggestion provider changes."
2535
2542
  )),
2536
2543
  experiment: {
@@ -2543,7 +2550,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2543
2550
  tags: ["experimental"],
2544
2551
  enum: ["always", "never", "whenSuggestListIsIncomplete"],
2545
2552
  description: ( localize(
2546
- 434,
2553
+ 435,
2547
2554
  "Controls whether to show inline suggestions when there is a suggest conflict."
2548
2555
  )),
2549
2556
  experiment: {
@@ -2553,13 +2560,13 @@ class InlineEditorSuggest extends BaseEditorOption {
2553
2560
  "editor.inlineSuggest.fontFamily": {
2554
2561
  type: "string",
2555
2562
  default: defaults.fontFamily,
2556
- description: ( localize(435, "Controls the font family of the inline suggestions."))
2563
+ description: ( localize(436, "Controls the font family of the inline suggestions."))
2557
2564
  },
2558
2565
  "editor.inlineSuggest.edits.allowCodeShifting": {
2559
2566
  type: "string",
2560
2567
  default: defaults.edits.allowCodeShifting,
2561
2568
  description: ( localize(
2562
- 436,
2569
+ 437,
2563
2570
  "Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
2564
2571
  )),
2565
2572
  enum: ["always", "horizontal", "never"],
@@ -2568,19 +2575,19 @@ class InlineEditorSuggest extends BaseEditorOption {
2568
2575
  "editor.inlineSuggest.edits.showLongDistanceHint": {
2569
2576
  type: "boolean",
2570
2577
  default: defaults.edits.showLongDistanceHint,
2571
- description: ( localize(437, "Controls whether long distance inline suggestions are shown.")),
2578
+ description: ( localize(438, "Controls whether long distance inline suggestions are shown.")),
2572
2579
  tags: ["nextEditSuggestions", "experimental"]
2573
2580
  },
2574
2581
  "editor.inlineSuggest.edits.renderSideBySide": {
2575
2582
  type: "string",
2576
2583
  default: defaults.edits.renderSideBySide,
2577
- description: ( localize(438, "Controls whether larger suggestions can be shown side by side.")),
2584
+ description: ( localize(439, "Controls whether larger suggestions can be shown side by side.")),
2578
2585
  enum: ["auto", "never"],
2579
2586
  enumDescriptions: [( localize(
2580
- 439,
2587
+ 440,
2581
2588
  "Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
2582
2589
  )), ( localize(
2583
- 440,
2590
+ 441,
2584
2591
  "Larger suggestions are never shown side by side and will always be shown below."
2585
2592
  ))],
2586
2593
  tags: ["nextEditSuggestions"]
@@ -2589,7 +2596,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2589
2596
  type: "boolean",
2590
2597
  default: defaults.edits.showCollapsed,
2591
2598
  description: ( localize(
2592
- 441,
2599
+ 442,
2593
2600
  "Controls whether the suggestion will show as collapsed until jumping to it."
2594
2601
  )),
2595
2602
  tags: ["nextEditSuggestions"]
@@ -2684,7 +2691,7 @@ class BracketPairColorization extends BaseEditorOption {
2684
2691
  type: "boolean",
2685
2692
  default: defaults.enabled,
2686
2693
  markdownDescription: ( localize(
2687
- 442,
2694
+ 443,
2688
2695
  "Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
2689
2696
  "`#workbench.colorCustomizations#`"
2690
2697
  ))
@@ -2693,7 +2700,7 @@ class BracketPairColorization extends BaseEditorOption {
2693
2700
  type: "boolean",
2694
2701
  default: defaults.independentColorPoolPerBracketType,
2695
2702
  description: ( localize(
2696
- 443,
2703
+ 444,
2697
2704
  "Controls whether each bracket type has its own independent color pool."
2698
2705
  ))
2699
2706
  }
@@ -2727,43 +2734,43 @@ class GuideOptions extends BaseEditorOption {
2727
2734
  "editor.guides.bracketPairs": {
2728
2735
  type: ["boolean", "string"],
2729
2736
  enum: [true, "active", false],
2730
- enumDescriptions: [( localize(444, "Enables bracket pair guides.")), ( localize(445, "Enables bracket pair guides only for the active bracket pair.")), ( localize(446, "Disables bracket pair guides."))],
2737
+ enumDescriptions: [( localize(445, "Enables bracket pair guides.")), ( localize(446, "Enables bracket pair guides only for the active bracket pair.")), ( localize(447, "Disables bracket pair guides."))],
2731
2738
  default: defaults.bracketPairs,
2732
- description: ( localize(447, "Controls whether bracket pair guides are enabled or not."))
2739
+ description: ( localize(448, "Controls whether bracket pair guides are enabled or not."))
2733
2740
  },
2734
2741
  "editor.guides.bracketPairsHorizontal": {
2735
2742
  type: ["boolean", "string"],
2736
2743
  enum: [true, "active", false],
2737
2744
  enumDescriptions: [( localize(
2738
- 448,
2745
+ 449,
2739
2746
  "Enables horizontal guides as addition to vertical bracket pair guides."
2740
- )), ( localize(449, "Enables horizontal guides only for the active bracket pair.")), ( localize(450, "Disables horizontal bracket pair guides."))],
2747
+ )), ( localize(450, "Enables horizontal guides only for the active bracket pair.")), ( localize(451, "Disables horizontal bracket pair guides."))],
2741
2748
  default: defaults.bracketPairsHorizontal,
2742
- description: ( localize(451, "Controls whether horizontal bracket pair guides are enabled or not."))
2749
+ description: ( localize(452, "Controls whether horizontal bracket pair guides are enabled or not."))
2743
2750
  },
2744
2751
  "editor.guides.highlightActiveBracketPair": {
2745
2752
  type: "boolean",
2746
2753
  default: defaults.highlightActiveBracketPair,
2747
2754
  description: ( localize(
2748
- 452,
2755
+ 453,
2749
2756
  "Controls whether the editor should highlight the active bracket pair."
2750
2757
  ))
2751
2758
  },
2752
2759
  "editor.guides.indentation": {
2753
2760
  type: "boolean",
2754
2761
  default: defaults.indentation,
2755
- description: ( localize(453, "Controls whether the editor should render indent guides."))
2762
+ description: ( localize(454, "Controls whether the editor should render indent guides."))
2756
2763
  },
2757
2764
  "editor.guides.highlightActiveIndentation": {
2758
2765
  type: ["boolean", "string"],
2759
2766
  enum: [true, "always", false],
2760
- enumDescriptions: [( localize(454, "Highlights the active indent guide.")), ( localize(
2761
- 455,
2767
+ enumDescriptions: [( localize(455, "Highlights the active indent guide.")), ( localize(
2768
+ 456,
2762
2769
  "Highlights the active indent guide even if bracket guides are highlighted."
2763
- )), ( localize(456, "Do not highlight the active indent guide."))],
2770
+ )), ( localize(457, "Do not highlight the active indent guide."))],
2764
2771
  default: defaults.highlightActiveIndentation,
2765
2772
  description: ( localize(
2766
- 457,
2773
+ 458,
2767
2774
  "Controls whether the editor should highlight the active indent guide."
2768
2775
  ))
2769
2776
  }
@@ -2853,10 +2860,10 @@ class EditorSuggest extends BaseEditorOption {
2853
2860
  "editor.suggest.insertMode": {
2854
2861
  type: "string",
2855
2862
  enum: ["insert", "replace"],
2856
- enumDescriptions: [( localize(458, "Insert suggestion without overwriting text right of the cursor.")), ( localize(459, "Insert suggestion and overwrite text right of the cursor."))],
2863
+ enumDescriptions: [( localize(459, "Insert suggestion without overwriting text right of the cursor.")), ( localize(460, "Insert suggestion and overwrite text right of the cursor."))],
2857
2864
  default: defaults.insertMode,
2858
2865
  description: ( localize(
2859
- 460,
2866
+ 461,
2860
2867
  "Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
2861
2868
  ))
2862
2869
  },
@@ -2864,7 +2871,7 @@ class EditorSuggest extends BaseEditorOption {
2864
2871
  type: "boolean",
2865
2872
  default: defaults.filterGraceful,
2866
2873
  description: ( localize(
2867
- 461,
2874
+ 462,
2868
2875
  "Controls whether filtering and sorting suggestions accounts for small typos."
2869
2876
  ))
2870
2877
  },
@@ -2872,7 +2879,7 @@ class EditorSuggest extends BaseEditorOption {
2872
2879
  type: "boolean",
2873
2880
  default: defaults.localityBonus,
2874
2881
  description: ( localize(
2875
- 462,
2882
+ 463,
2876
2883
  "Controls whether sorting favors words that appear close to the cursor."
2877
2884
  ))
2878
2885
  },
@@ -2880,7 +2887,7 @@ class EditorSuggest extends BaseEditorOption {
2880
2887
  type: "boolean",
2881
2888
  default: defaults.shareSuggestSelections,
2882
2889
  markdownDescription: ( localize(
2883
- 463,
2890
+ 464,
2884
2891
  "Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
2885
2892
  ))
2886
2893
  },
@@ -2888,18 +2895,18 @@ class EditorSuggest extends BaseEditorOption {
2888
2895
  type: "string",
2889
2896
  enum: ["always", "never", "whenTriggerCharacter", "whenQuickSuggestion"],
2890
2897
  enumDescriptions: [( localize(
2891
- 464,
2898
+ 465,
2892
2899
  "Always select a suggestion when automatically triggering IntelliSense."
2893
2900
  )), ( localize(
2894
- 465,
2901
+ 466,
2895
2902
  "Never select a suggestion when automatically triggering IntelliSense."
2896
2903
  )), ( localize(
2897
- 466,
2904
+ 467,
2898
2905
  "Select a suggestion only when triggering IntelliSense from a trigger character."
2899
- )), ( localize(467, "Select a suggestion only when triggering IntelliSense as you type."))],
2906
+ )), ( localize(468, "Select a suggestion only when triggering IntelliSense as you type."))],
2900
2907
  default: defaults.selectionMode,
2901
2908
  markdownDescription: ( localize(
2902
- 468,
2909
+ 469,
2903
2910
  "Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions ({0} and {1}) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`.",
2904
2911
  "`#editor.quickSuggestions#`",
2905
2912
  "`#editor.suggestOnTriggerCharacters#`"
@@ -2908,197 +2915,197 @@ class EditorSuggest extends BaseEditorOption {
2908
2915
  "editor.suggest.snippetsPreventQuickSuggestions": {
2909
2916
  type: "boolean",
2910
2917
  default: defaults.snippetsPreventQuickSuggestions,
2911
- description: ( localize(469, "Controls whether an active snippet prevents quick suggestions."))
2918
+ description: ( localize(470, "Controls whether an active snippet prevents quick suggestions."))
2912
2919
  },
2913
2920
  "editor.suggest.showIcons": {
2914
2921
  type: "boolean",
2915
2922
  default: defaults.showIcons,
2916
- description: ( localize(470, "Controls whether to show or hide icons in suggestions."))
2923
+ description: ( localize(471, "Controls whether to show or hide icons in suggestions."))
2917
2924
  },
2918
2925
  "editor.suggest.showStatusBar": {
2919
2926
  type: "boolean",
2920
2927
  default: defaults.showStatusBar,
2921
2928
  description: ( localize(
2922
- 471,
2929
+ 472,
2923
2930
  "Controls the visibility of the status bar at the bottom of the suggest widget."
2924
2931
  ))
2925
2932
  },
2926
2933
  "editor.suggest.preview": {
2927
2934
  type: "boolean",
2928
2935
  default: defaults.preview,
2929
- description: ( localize(472, "Controls whether to preview the suggestion outcome in the editor."))
2936
+ description: ( localize(473, "Controls whether to preview the suggestion outcome in the editor."))
2930
2937
  },
2931
2938
  "editor.suggest.showInlineDetails": {
2932
2939
  type: "boolean",
2933
2940
  default: defaults.showInlineDetails,
2934
2941
  description: ( localize(
2935
- 473,
2942
+ 474,
2936
2943
  "Controls whether suggest details show inline with the label or only in the details widget."
2937
2944
  ))
2938
2945
  },
2939
2946
  "editor.suggest.maxVisibleSuggestions": {
2940
2947
  type: "number",
2941
- deprecationMessage: ( localize(474, "This setting is deprecated. The suggest widget can now be resized."))
2948
+ deprecationMessage: ( localize(475, "This setting is deprecated. The suggest widget can now be resized."))
2942
2949
  },
2943
2950
  "editor.suggest.filteredTypes": {
2944
2951
  type: "object",
2945
2952
  deprecationMessage: ( localize(
2946
- 475,
2953
+ 476,
2947
2954
  "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
2948
2955
  ))
2949
2956
  },
2950
2957
  "editor.suggest.showMethods": {
2951
2958
  type: "boolean",
2952
2959
  default: true,
2953
- markdownDescription: ( localize(476, "When enabled IntelliSense shows `method`-suggestions."))
2960
+ markdownDescription: ( localize(477, "When enabled IntelliSense shows `method`-suggestions."))
2954
2961
  },
2955
2962
  "editor.suggest.showFunctions": {
2956
2963
  type: "boolean",
2957
2964
  default: true,
2958
- markdownDescription: ( localize(477, "When enabled IntelliSense shows `function`-suggestions."))
2965
+ markdownDescription: ( localize(478, "When enabled IntelliSense shows `function`-suggestions."))
2959
2966
  },
2960
2967
  "editor.suggest.showConstructors": {
2961
2968
  type: "boolean",
2962
2969
  default: true,
2963
- markdownDescription: ( localize(478, "When enabled IntelliSense shows `constructor`-suggestions."))
2970
+ markdownDescription: ( localize(479, "When enabled IntelliSense shows `constructor`-suggestions."))
2964
2971
  },
2965
2972
  "editor.suggest.showDeprecated": {
2966
2973
  type: "boolean",
2967
2974
  default: true,
2968
- markdownDescription: ( localize(479, "When enabled IntelliSense shows `deprecated`-suggestions."))
2975
+ markdownDescription: ( localize(480, "When enabled IntelliSense shows `deprecated`-suggestions."))
2969
2976
  },
2970
2977
  "editor.suggest.matchOnWordStartOnly": {
2971
2978
  type: "boolean",
2972
2979
  default: true,
2973
2980
  markdownDescription: ( localize(
2974
- 480,
2981
+ 481,
2975
2982
  "When enabled IntelliSense filtering requires that the first character matches on a word start. For example, `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality."
2976
2983
  ))
2977
2984
  },
2978
2985
  "editor.suggest.showFields": {
2979
2986
  type: "boolean",
2980
2987
  default: true,
2981
- markdownDescription: ( localize(481, "When enabled IntelliSense shows `field`-suggestions."))
2988
+ markdownDescription: ( localize(482, "When enabled IntelliSense shows `field`-suggestions."))
2982
2989
  },
2983
2990
  "editor.suggest.showVariables": {
2984
2991
  type: "boolean",
2985
2992
  default: true,
2986
- markdownDescription: ( localize(482, "When enabled IntelliSense shows `variable`-suggestions."))
2993
+ markdownDescription: ( localize(483, "When enabled IntelliSense shows `variable`-suggestions."))
2987
2994
  },
2988
2995
  "editor.suggest.showClasses": {
2989
2996
  type: "boolean",
2990
2997
  default: true,
2991
- markdownDescription: ( localize(483, "When enabled IntelliSense shows `class`-suggestions."))
2998
+ markdownDescription: ( localize(484, "When enabled IntelliSense shows `class`-suggestions."))
2992
2999
  },
2993
3000
  "editor.suggest.showStructs": {
2994
3001
  type: "boolean",
2995
3002
  default: true,
2996
- markdownDescription: ( localize(484, "When enabled IntelliSense shows `struct`-suggestions."))
3003
+ markdownDescription: ( localize(485, "When enabled IntelliSense shows `struct`-suggestions."))
2997
3004
  },
2998
3005
  "editor.suggest.showInterfaces": {
2999
3006
  type: "boolean",
3000
3007
  default: true,
3001
- markdownDescription: ( localize(485, "When enabled IntelliSense shows `interface`-suggestions."))
3008
+ markdownDescription: ( localize(486, "When enabled IntelliSense shows `interface`-suggestions."))
3002
3009
  },
3003
3010
  "editor.suggest.showModules": {
3004
3011
  type: "boolean",
3005
3012
  default: true,
3006
- markdownDescription: ( localize(486, "When enabled IntelliSense shows `module`-suggestions."))
3013
+ markdownDescription: ( localize(487, "When enabled IntelliSense shows `module`-suggestions."))
3007
3014
  },
3008
3015
  "editor.suggest.showProperties": {
3009
3016
  type: "boolean",
3010
3017
  default: true,
3011
- markdownDescription: ( localize(487, "When enabled IntelliSense shows `property`-suggestions."))
3018
+ markdownDescription: ( localize(488, "When enabled IntelliSense shows `property`-suggestions."))
3012
3019
  },
3013
3020
  "editor.suggest.showEvents": {
3014
3021
  type: "boolean",
3015
3022
  default: true,
3016
- markdownDescription: ( localize(488, "When enabled IntelliSense shows `event`-suggestions."))
3023
+ markdownDescription: ( localize(489, "When enabled IntelliSense shows `event`-suggestions."))
3017
3024
  },
3018
3025
  "editor.suggest.showOperators": {
3019
3026
  type: "boolean",
3020
3027
  default: true,
3021
- markdownDescription: ( localize(489, "When enabled IntelliSense shows `operator`-suggestions."))
3028
+ markdownDescription: ( localize(490, "When enabled IntelliSense shows `operator`-suggestions."))
3022
3029
  },
3023
3030
  "editor.suggest.showUnits": {
3024
3031
  type: "boolean",
3025
3032
  default: true,
3026
- markdownDescription: ( localize(490, "When enabled IntelliSense shows `unit`-suggestions."))
3033
+ markdownDescription: ( localize(491, "When enabled IntelliSense shows `unit`-suggestions."))
3027
3034
  },
3028
3035
  "editor.suggest.showValues": {
3029
3036
  type: "boolean",
3030
3037
  default: true,
3031
- markdownDescription: ( localize(491, "When enabled IntelliSense shows `value`-suggestions."))
3038
+ markdownDescription: ( localize(492, "When enabled IntelliSense shows `value`-suggestions."))
3032
3039
  },
3033
3040
  "editor.suggest.showConstants": {
3034
3041
  type: "boolean",
3035
3042
  default: true,
3036
- markdownDescription: ( localize(492, "When enabled IntelliSense shows `constant`-suggestions."))
3043
+ markdownDescription: ( localize(493, "When enabled IntelliSense shows `constant`-suggestions."))
3037
3044
  },
3038
3045
  "editor.suggest.showEnums": {
3039
3046
  type: "boolean",
3040
3047
  default: true,
3041
- markdownDescription: ( localize(493, "When enabled IntelliSense shows `enum`-suggestions."))
3048
+ markdownDescription: ( localize(494, "When enabled IntelliSense shows `enum`-suggestions."))
3042
3049
  },
3043
3050
  "editor.suggest.showEnumMembers": {
3044
3051
  type: "boolean",
3045
3052
  default: true,
3046
- markdownDescription: ( localize(494, "When enabled IntelliSense shows `enumMember`-suggestions."))
3053
+ markdownDescription: ( localize(495, "When enabled IntelliSense shows `enumMember`-suggestions."))
3047
3054
  },
3048
3055
  "editor.suggest.showKeywords": {
3049
3056
  type: "boolean",
3050
3057
  default: true,
3051
- markdownDescription: ( localize(495, "When enabled IntelliSense shows `keyword`-suggestions."))
3058
+ markdownDescription: ( localize(496, "When enabled IntelliSense shows `keyword`-suggestions."))
3052
3059
  },
3053
3060
  "editor.suggest.showWords": {
3054
3061
  type: "boolean",
3055
3062
  default: true,
3056
- markdownDescription: ( localize(496, "When enabled IntelliSense shows `text`-suggestions."))
3063
+ markdownDescription: ( localize(497, "When enabled IntelliSense shows `text`-suggestions."))
3057
3064
  },
3058
3065
  "editor.suggest.showColors": {
3059
3066
  type: "boolean",
3060
3067
  default: true,
3061
- markdownDescription: ( localize(497, "When enabled IntelliSense shows `color`-suggestions."))
3068
+ markdownDescription: ( localize(498, "When enabled IntelliSense shows `color`-suggestions."))
3062
3069
  },
3063
3070
  "editor.suggest.showFiles": {
3064
3071
  type: "boolean",
3065
3072
  default: true,
3066
- markdownDescription: ( localize(498, "When enabled IntelliSense shows `file`-suggestions."))
3073
+ markdownDescription: ( localize(499, "When enabled IntelliSense shows `file`-suggestions."))
3067
3074
  },
3068
3075
  "editor.suggest.showReferences": {
3069
3076
  type: "boolean",
3070
3077
  default: true,
3071
- markdownDescription: ( localize(499, "When enabled IntelliSense shows `reference`-suggestions."))
3078
+ markdownDescription: ( localize(500, "When enabled IntelliSense shows `reference`-suggestions."))
3072
3079
  },
3073
3080
  "editor.suggest.showCustomcolors": {
3074
3081
  type: "boolean",
3075
3082
  default: true,
3076
- markdownDescription: ( localize(500, "When enabled IntelliSense shows `customcolor`-suggestions."))
3083
+ markdownDescription: ( localize(501, "When enabled IntelliSense shows `customcolor`-suggestions."))
3077
3084
  },
3078
3085
  "editor.suggest.showFolders": {
3079
3086
  type: "boolean",
3080
3087
  default: true,
3081
- markdownDescription: ( localize(501, "When enabled IntelliSense shows `folder`-suggestions."))
3088
+ markdownDescription: ( localize(502, "When enabled IntelliSense shows `folder`-suggestions."))
3082
3089
  },
3083
3090
  "editor.suggest.showTypeParameters": {
3084
3091
  type: "boolean",
3085
3092
  default: true,
3086
- markdownDescription: ( localize(502, "When enabled IntelliSense shows `typeParameter`-suggestions."))
3093
+ markdownDescription: ( localize(503, "When enabled IntelliSense shows `typeParameter`-suggestions."))
3087
3094
  },
3088
3095
  "editor.suggest.showSnippets": {
3089
3096
  type: "boolean",
3090
3097
  default: true,
3091
- markdownDescription: ( localize(503, "When enabled IntelliSense shows `snippet`-suggestions."))
3098
+ markdownDescription: ( localize(504, "When enabled IntelliSense shows `snippet`-suggestions."))
3092
3099
  },
3093
3100
  "editor.suggest.showUsers": {
3094
3101
  type: "boolean",
3095
3102
  default: true,
3096
- markdownDescription: ( localize(504, "When enabled IntelliSense shows `user`-suggestions."))
3103
+ markdownDescription: ( localize(505, "When enabled IntelliSense shows `user`-suggestions."))
3097
3104
  },
3098
3105
  "editor.suggest.showIssues": {
3099
3106
  type: "boolean",
3100
3107
  default: true,
3101
- markdownDescription: ( localize(505, "When enabled IntelliSense shows `issues`-suggestions."))
3108
+ markdownDescription: ( localize(506, "When enabled IntelliSense shows `issues`-suggestions."))
3102
3109
  }
3103
3110
  });
3104
3111
  }
@@ -3166,13 +3173,13 @@ class SmartSelect extends BaseEditorOption {
3166
3173
  selectSubwords: true
3167
3174
  }, {
3168
3175
  "editor.smartSelect.selectLeadingAndTrailingWhitespace": {
3169
- description: ( localize(506, "Whether leading and trailing whitespace should always be selected.")),
3176
+ description: ( localize(507, "Whether leading and trailing whitespace should always be selected.")),
3170
3177
  default: true,
3171
3178
  type: "boolean"
3172
3179
  },
3173
3180
  "editor.smartSelect.selectSubwords": {
3174
3181
  description: ( localize(
3175
- 507,
3182
+ 508,
3176
3183
  "Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
3177
3184
  )),
3178
3185
  default: true,
@@ -3206,7 +3213,7 @@ class WordSegmenterLocales extends BaseEditorOption {
3206
3213
  }
3207
3214
  }],
3208
3215
  description: ( localize(
3209
- 508,
3216
+ 509,
3210
3217
  "Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."
3211
3218
  )),
3212
3219
  type: "array",
@@ -3249,8 +3256,8 @@ class WrappingIndentOption extends BaseEditorOption {
3249
3256
  "editor.wrappingIndent": {
3250
3257
  type: "string",
3251
3258
  enum: ["none", "same", "indent", "deepIndent"],
3252
- enumDescriptions: [( localize(509, "No indentation. Wrapped lines begin at column 1.")), ( localize(510, "Wrapped lines get the same indentation as the parent.")), ( localize(511, "Wrapped lines get +1 indentation toward the parent.")), ( localize(512, "Wrapped lines get +2 indentation toward the parent."))],
3253
- description: ( localize(513, "Controls the indentation of wrapped lines.")),
3259
+ enumDescriptions: [( localize(510, "No indentation. Wrapped lines begin at column 1.")), ( localize(511, "Wrapped lines get the same indentation as the parent.")), ( localize(512, "Wrapped lines get +1 indentation toward the parent.")), ( localize(513, "Wrapped lines get +2 indentation toward the parent."))],
3260
+ description: ( localize(514, "Controls the indentation of wrapped lines.")),
3254
3261
  default: "same"
3255
3262
  }
3256
3263
  });
@@ -3306,22 +3313,22 @@ class EditorDropIntoEditor extends BaseEditorOption {
3306
3313
  type: "boolean",
3307
3314
  default: defaults.enabled,
3308
3315
  markdownDescription: ( localize(
3309
- 514,
3316
+ 515,
3310
3317
  "Controls whether you can drag and drop a file into a text editor by holding down the `Shift` key (instead of opening the file in an editor)."
3311
3318
  ))
3312
3319
  },
3313
3320
  "editor.dropIntoEditor.showDropSelector": {
3314
3321
  type: "string",
3315
3322
  markdownDescription: ( localize(
3316
- 515,
3323
+ 516,
3317
3324
  "Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
3318
3325
  )),
3319
3326
  enum: ["afterDrop", "never"],
3320
3327
  enumDescriptions: [( localize(
3321
- 516,
3328
+ 517,
3322
3329
  "Show the drop selector widget after a file is dropped into the editor."
3323
3330
  )), ( localize(
3324
- 517,
3331
+ 518,
3325
3332
  "Never show the drop selector widget. Instead the default drop provider is always used."
3326
3333
  ))],
3327
3334
  default: "afterDrop"
@@ -3353,20 +3360,20 @@ class EditorPasteAs extends BaseEditorOption {
3353
3360
  "editor.pasteAs.enabled": {
3354
3361
  type: "boolean",
3355
3362
  default: defaults.enabled,
3356
- markdownDescription: ( localize(518, "Controls whether you can paste content in different ways."))
3363
+ markdownDescription: ( localize(519, "Controls whether you can paste content in different ways."))
3357
3364
  },
3358
3365
  "editor.pasteAs.showPasteSelector": {
3359
3366
  type: "string",
3360
3367
  markdownDescription: ( localize(
3361
- 519,
3368
+ 520,
3362
3369
  "Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
3363
3370
  )),
3364
3371
  enum: ["afterPaste", "never"],
3365
3372
  enumDescriptions: [( localize(
3366
- 520,
3373
+ 521,
3367
3374
  "Show the paste selector widget after content is pasted into the editor."
3368
3375
  )), ( localize(
3369
- 521,
3376
+ 522,
3370
3377
  "Never show the paste selector widget. Instead the default pasting behavior is always used."
3371
3378
  ))],
3372
3379
  default: "afterPaste"
@@ -3577,7 +3584,7 @@ const EditorOptions = {
3577
3584
  true,
3578
3585
  {
3579
3586
  markdownDescription: ( localize(
3580
- 522,
3587
+ 523,
3581
3588
  "Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character."
3582
3589
  ))
3583
3590
  }
@@ -3589,11 +3596,11 @@ const EditorOptions = {
3589
3596
  ["on", "smart", "off"],
3590
3597
  {
3591
3598
  markdownEnumDescriptions: ["", ( localize(
3592
- 523,
3599
+ 524,
3593
3600
  "Only accept a suggestion with `Enter` when it makes a textual change."
3594
3601
  )), ""],
3595
3602
  markdownDescription: ( localize(
3596
- 524,
3603
+ 525,
3597
3604
  "Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
3598
3605
  ))
3599
3606
  }
@@ -3607,7 +3614,7 @@ const EditorOptions = {
3607
3614
  Constants.MAX_SAFE_SMALL_INTEGER,
3608
3615
  {
3609
3616
  description: ( localize(
3610
- 525,
3617
+ 526,
3611
3618
  "Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default."
3612
3619
  )),
3613
3620
  tags: ["accessibility"]
@@ -3616,12 +3623,12 @@ const EditorOptions = {
3616
3623
  allowOverflow: register(( new EditorBooleanOption(EditorOption.allowOverflow, "allowOverflow", true))),
3617
3624
  allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, "allowVariableLineHeights", true, {
3618
3625
  description: ( localize(
3619
- 526,
3626
+ 527,
3620
3627
  "Controls whether to allow using variable line heights in the editor."
3621
3628
  ))
3622
3629
  }))),
3623
3630
  allowVariableFonts: register(( new EditorBooleanOption(EditorOption.allowVariableFonts, "allowVariableFonts", true, {
3624
- description: ( localize(527, "Controls whether to allow using variable fonts in the editor."))
3631
+ description: ( localize(528, "Controls whether to allow using variable fonts in the editor."))
3625
3632
  }))),
3626
3633
  allowVariableFontsInAccessibilityMode: register(( new EditorBooleanOption(
3627
3634
  EditorOption.allowVariableFontsInAccessibilityMode,
@@ -3629,13 +3636,13 @@ const EditorOptions = {
3629
3636
  false,
3630
3637
  {
3631
3638
  description: ( localize(
3632
- 528,
3639
+ 529,
3633
3640
  "Controls whether to allow using variable fonts in the editor in the accessibility mode."
3634
3641
  )),
3635
3642
  tags: ["accessibility"]
3636
3643
  }
3637
3644
  ))),
3638
- ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, "ariaLabel", ( localize(529, "Editor content"))))),
3645
+ ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, "ariaLabel", ( localize(530, "Editor content"))))),
3639
3646
  ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, "ariaRequired", false, undefined))),
3640
3647
  screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
3641
3648
  EditorOption.screenReaderAnnounceInlineSuggestion,
@@ -3643,7 +3650,7 @@ const EditorOptions = {
3643
3650
  true,
3644
3651
  {
3645
3652
  description: ( localize(
3646
- 530,
3653
+ 531,
3647
3654
  "Control whether inline suggestions are announced by a screen reader."
3648
3655
  )),
3649
3656
  tags: ["accessibility"]
@@ -3656,14 +3663,14 @@ const EditorOptions = {
3656
3663
  ["always", "languageDefined", "beforeWhitespace", "never"],
3657
3664
  {
3658
3665
  enumDescriptions: ["", ( localize(
3659
- 531,
3666
+ 532,
3660
3667
  "Use language configurations to determine when to autoclose brackets."
3661
3668
  )), ( localize(
3662
- 532,
3669
+ 533,
3663
3670
  "Autoclose brackets only when the cursor is to the left of whitespace."
3664
3671
  )), ""],
3665
3672
  description: ( localize(
3666
- 533,
3673
+ 534,
3667
3674
  "Controls whether the editor should automatically close brackets after the user adds an opening bracket."
3668
3675
  ))
3669
3676
  }
@@ -3675,14 +3682,14 @@ const EditorOptions = {
3675
3682
  ["always", "languageDefined", "beforeWhitespace", "never"],
3676
3683
  {
3677
3684
  enumDescriptions: ["", ( localize(
3678
- 534,
3685
+ 535,
3679
3686
  "Use language configurations to determine when to autoclose comments."
3680
3687
  )), ( localize(
3681
- 535,
3688
+ 536,
3682
3689
  "Autoclose comments only when the cursor is to the left of whitespace."
3683
3690
  )), ""],
3684
3691
  description: ( localize(
3685
- 536,
3692
+ 537,
3686
3693
  "Controls whether the editor should automatically close comments after the user adds an opening comment."
3687
3694
  ))
3688
3695
  }
@@ -3694,11 +3701,11 @@ const EditorOptions = {
3694
3701
  ["always", "auto", "never"],
3695
3702
  {
3696
3703
  enumDescriptions: ["", ( localize(
3697
- 537,
3704
+ 538,
3698
3705
  "Remove adjacent closing quotes or brackets only if they were automatically inserted."
3699
3706
  )), ""],
3700
3707
  description: ( localize(
3701
- 538,
3708
+ 539,
3702
3709
  "Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
3703
3710
  ))
3704
3711
  }
@@ -3710,11 +3717,11 @@ const EditorOptions = {
3710
3717
  ["always", "auto", "never"],
3711
3718
  {
3712
3719
  enumDescriptions: ["", ( localize(
3713
- 539,
3720
+ 540,
3714
3721
  "Type over closing quotes or brackets only if they were automatically inserted."
3715
3722
  )), ""],
3716
3723
  description: ( localize(
3717
- 540,
3724
+ 541,
3718
3725
  "Controls whether the editor should type over closing quotes or brackets."
3719
3726
  ))
3720
3727
  }
@@ -3725,9 +3732,9 @@ const EditorOptions = {
3725
3732
  "languageDefined",
3726
3733
  ["always", "languageDefined", "beforeWhitespace", "never"],
3727
3734
  {
3728
- enumDescriptions: ["", ( localize(541, "Use language configurations to determine when to autoclose quotes.")), ( localize(542, "Autoclose quotes only when the cursor is to the left of whitespace.")), ""],
3735
+ enumDescriptions: ["", ( localize(542, "Use language configurations to determine when to autoclose quotes.")), ( localize(543, "Autoclose quotes only when the cursor is to the left of whitespace.")), ""],
3729
3736
  description: ( localize(
3730
- 543,
3737
+ 544,
3731
3738
  "Controls whether the editor should automatically close quotes after the user adds an opening quote."
3732
3739
  ))
3733
3740
  }
@@ -3740,25 +3747,25 @@ const EditorOptions = {
3740
3747
  ["none", "keep", "brackets", "advanced", "full"],
3741
3748
  _autoIndentFromString,
3742
3749
  {
3743
- enumDescriptions: [( localize(544, "The editor will not insert indentation automatically.")), ( localize(545, "The editor will keep the current line's indentation.")), ( localize(
3744
- 546,
3750
+ enumDescriptions: [( localize(545, "The editor will not insert indentation automatically.")), ( localize(546, "The editor will keep the current line's indentation.")), ( localize(
3751
+ 547,
3745
3752
  "The editor will keep the current line's indentation and honor language defined brackets."
3746
3753
  )), ( localize(
3747
- 547,
3754
+ 548,
3748
3755
  "The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
3749
3756
  )), ( localize(
3750
- 548,
3757
+ 549,
3751
3758
  "The editor will keep the current line's indentation, honor language defined brackets, invoke special onEnterRules defined by languages, and honor indentationRules defined by languages."
3752
3759
  ))],
3753
3760
  description: ( localize(
3754
- 549,
3761
+ 550,
3755
3762
  "Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
3756
3763
  ))
3757
3764
  }
3758
3765
  ))),
3759
3766
  autoIndentOnPaste: register(( new EditorBooleanOption(EditorOption.autoIndentOnPaste, "autoIndentOnPaste", false, {
3760
3767
  description: ( localize(
3761
- 550,
3768
+ 551,
3762
3769
  "Controls whether the editor should automatically auto-indent the pasted content."
3763
3770
  ))
3764
3771
  }))),
@@ -3768,7 +3775,7 @@ const EditorOptions = {
3768
3775
  true,
3769
3776
  {
3770
3777
  description: ( localize(
3771
- 551,
3778
+ 552,
3772
3779
  "Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true."
3773
3780
  ))
3774
3781
  }
@@ -3781,11 +3788,11 @@ const EditorOptions = {
3781
3788
  ["languageDefined", "quotes", "brackets", "never"],
3782
3789
  {
3783
3790
  enumDescriptions: [( localize(
3784
- 552,
3791
+ 553,
3785
3792
  "Use language configurations to determine when to automatically surround selections."
3786
- )), ( localize(553, "Surround with quotes but not brackets.")), ( localize(554, "Surround with brackets but not quotes.")), ""],
3793
+ )), ( localize(554, "Surround with quotes but not brackets.")), ( localize(555, "Surround with brackets but not quotes.")), ""],
3787
3794
  description: ( localize(
3788
- 555,
3795
+ 556,
3789
3796
  "Controls whether the editor should automatically surround selections when typing quotes or brackets."
3790
3797
  ))
3791
3798
  }
@@ -3794,15 +3801,15 @@ const EditorOptions = {
3794
3801
  bracketPairGuides: register(( new GuideOptions())),
3795
3802
  stickyTabStops: register(( new EditorBooleanOption(EditorOption.stickyTabStops, "stickyTabStops", false, {
3796
3803
  description: ( localize(
3797
- 556,
3804
+ 557,
3798
3805
  "Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
3799
3806
  ))
3800
3807
  }))),
3801
3808
  codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, "codeLens", true, {
3802
- description: ( localize(557, "Controls whether the editor shows CodeLens."))
3809
+ description: ( localize(558, "Controls whether the editor shows CodeLens."))
3803
3810
  }))),
3804
3811
  codeLensFontFamily: register(( new EditorStringOption(EditorOption.codeLensFontFamily, "codeLensFontFamily", "", {
3805
- description: ( localize(558, "Controls the font family for CodeLens."))
3812
+ description: ( localize(559, "Controls the font family for CodeLens."))
3806
3813
  }))),
3807
3814
  codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, "codeLensFontSize", 0, 0, 100, {
3808
3815
  type: "number",
@@ -3810,13 +3817,13 @@ const EditorOptions = {
3810
3817
  minimum: 0,
3811
3818
  maximum: 100,
3812
3819
  markdownDescription: ( localize(
3813
- 559,
3820
+ 560,
3814
3821
  "Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
3815
3822
  ))
3816
3823
  }))),
3817
3824
  colorDecorators: register(( new EditorBooleanOption(EditorOption.colorDecorators, "colorDecorators", true, {
3818
3825
  description: ( localize(
3819
- 560,
3826
+ 561,
3820
3827
  "Controls whether the editor should render the inline color decorators and color picker."
3821
3828
  ))
3822
3829
  }))),
@@ -3827,11 +3834,11 @@ const EditorOptions = {
3827
3834
  ["clickAndHover", "hover", "click"],
3828
3835
  {
3829
3836
  enumDescriptions: [( localize(
3830
- 561,
3837
+ 562,
3831
3838
  "Make the color picker appear both on click and hover of the color decorator"
3832
- )), ( localize(562, "Make the color picker appear on hover of the color decorator")), ( localize(563, "Make the color picker appear on click of the color decorator"))],
3839
+ )), ( localize(563, "Make the color picker appear on hover of the color decorator")), ( localize(564, "Make the color picker appear on click of the color decorator"))],
3833
3840
  description: ( localize(
3834
- 564,
3841
+ 565,
3835
3842
  "Controls the condition to make a color picker appear from a color decorator."
3836
3843
  ))
3837
3844
  }
@@ -3844,14 +3851,14 @@ const EditorOptions = {
3844
3851
  1000000,
3845
3852
  {
3846
3853
  markdownDescription: ( localize(
3847
- 565,
3854
+ 566,
3848
3855
  "Controls the max number of color decorators that can be rendered in an editor at once."
3849
3856
  ))
3850
3857
  }
3851
3858
  ))),
3852
3859
  columnSelection: register(( new EditorBooleanOption(EditorOption.columnSelection, "columnSelection", false, {
3853
3860
  description: ( localize(
3854
- 566,
3861
+ 567,
3855
3862
  "Enable that the selection with the mouse and keys is doing column selection."
3856
3863
  ))
3857
3864
  }))),
@@ -3863,7 +3870,7 @@ const EditorOptions = {
3863
3870
  true,
3864
3871
  {
3865
3872
  description: ( localize(
3866
- 567,
3873
+ 568,
3867
3874
  "Controls whether syntax highlighting should be copied into the clipboard."
3868
3875
  ))
3869
3876
  }
@@ -3876,7 +3883,7 @@ const EditorOptions = {
3876
3883
  ["blink", "smooth", "phase", "expand", "solid"],
3877
3884
  cursorBlinkingStyleFromString,
3878
3885
  {
3879
- description: ( localize(568, "Control the cursor animation style."))
3886
+ description: ( localize(569, "Control the cursor animation style."))
3880
3887
  }
3881
3888
  ))),
3882
3889
  cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
@@ -3885,11 +3892,11 @@ const EditorOptions = {
3885
3892
  "off",
3886
3893
  ["off", "explicit", "on"],
3887
3894
  {
3888
- enumDescriptions: [( localize(569, "Smooth caret animation is disabled.")), ( localize(
3889
- 570,
3895
+ enumDescriptions: [( localize(570, "Smooth caret animation is disabled.")), ( localize(
3896
+ 571,
3890
3897
  "Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
3891
- )), ( localize(571, "Smooth caret animation is always enabled."))],
3892
- description: ( localize(572, "Controls whether the smooth caret animation should be enabled."))
3898
+ )), ( localize(572, "Smooth caret animation is always enabled."))],
3899
+ description: ( localize(573, "Controls whether the smooth caret animation should be enabled."))
3893
3900
  }
3894
3901
  ))),
3895
3902
  cursorStyle: register(( new EditorEnumOption(
@@ -3907,7 +3914,7 @@ const EditorOptions = {
3907
3914
  ],
3908
3915
  cursorStyleFromString,
3909
3916
  {
3910
- description: ( localize(573, "Controls the cursor style in insert input mode."))
3917
+ description: ( localize(574, "Controls the cursor style in insert input mode."))
3911
3918
  }
3912
3919
  ))),
3913
3920
  overtypeCursorStyle: register(( new EditorEnumOption(
@@ -3925,7 +3932,7 @@ const EditorOptions = {
3925
3932
  ],
3926
3933
  cursorStyleFromString,
3927
3934
  {
3928
- description: ( localize(574, "Controls the cursor style in overtype input mode."))
3935
+ description: ( localize(575, "Controls the cursor style in overtype input mode."))
3929
3936
  }
3930
3937
  ))),
3931
3938
  cursorSurroundingLines: register(( new EditorIntOption(
@@ -3936,7 +3943,7 @@ const EditorOptions = {
3936
3943
  Constants.MAX_SAFE_SMALL_INTEGER,
3937
3944
  {
3938
3945
  description: ( localize(
3939
- 575,
3946
+ 576,
3940
3947
  "Controls the minimal number of visible leading lines (minimum 0) and trailing lines (minimum 1) surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors."
3941
3948
  ))
3942
3949
  }
@@ -3948,10 +3955,10 @@ const EditorOptions = {
3948
3955
  ["default", "all"],
3949
3956
  {
3950
3957
  enumDescriptions: [( localize(
3951
- 576,
3958
+ 577,
3952
3959
  "`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
3953
- )), ( localize(577, "`cursorSurroundingLines` is enforced always."))],
3954
- markdownDescription: ( localize(578, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
3960
+ )), ( localize(578, "`cursorSurroundingLines` is enforced always."))],
3961
+ markdownDescription: ( localize(579, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
3955
3962
  }
3956
3963
  ))),
3957
3964
  cursorWidth: register(( new EditorIntOption(
@@ -3962,7 +3969,7 @@ const EditorOptions = {
3962
3969
  Constants.MAX_SAFE_SMALL_INTEGER,
3963
3970
  {
3964
3971
  markdownDescription: ( localize(
3965
- 579,
3972
+ 580,
3966
3973
  "Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
3967
3974
  ))
3968
3975
  }
@@ -3975,7 +3982,7 @@ const EditorOptions = {
3975
3982
  Constants.MAX_SAFE_SMALL_INTEGER,
3976
3983
  {
3977
3984
  markdownDescription: ( localize(
3978
- 580,
3985
+ 581,
3979
3986
  "Controls the height of the cursor when `#editor.cursorStyle#` is set to `line`. Cursor's max height depends on line height."
3980
3987
  ))
3981
3988
  }
@@ -3989,13 +3996,13 @@ const EditorOptions = {
3989
3996
  domReadOnly: register(( new EditorBooleanOption(EditorOption.domReadOnly, "domReadOnly", false))),
3990
3997
  doubleClickSelectsBlock: register(( new EditorBooleanOption(EditorOption.doubleClickSelectsBlock, "doubleClickSelectsBlock", true, {
3991
3998
  description: ( localize(
3992
- 581,
3999
+ 582,
3993
4000
  "Controls whether double-clicking next to a bracket or quote selects the content inside."
3994
4001
  ))
3995
4002
  }))),
3996
4003
  dragAndDrop: register(( new EditorBooleanOption(EditorOption.dragAndDrop, "dragAndDrop", true, {
3997
4004
  description: ( localize(
3998
- 582,
4005
+ 583,
3999
4006
  "Controls whether the editor should allow moving selections via drag and drop."
4000
4007
  ))
4001
4008
  }))),
@@ -4003,7 +4010,7 @@ const EditorOptions = {
4003
4010
  dropIntoEditor: register(( new EditorDropIntoEditor())),
4004
4011
  editContext: register(( new EditorBooleanOption(EditorOption.editContext, "editContext", true, {
4005
4012
  description: ( localize(
4006
- 583,
4013
+ 584,
4007
4014
  "Sets whether the EditContext API should be used instead of the text area to power input in the editor."
4008
4015
  )),
4009
4016
  included: isChrome || isEdge || isNative
@@ -4014,7 +4021,7 @@ const EditorOptions = {
4014
4021
  false,
4015
4022
  {
4016
4023
  markdownDescription: ( localize(
4017
- 584,
4024
+ 585,
4018
4025
  "Whether to render rich screen reader content when the `#editor.editContext#` setting is enabled."
4019
4026
  ))
4020
4027
  }
@@ -4027,9 +4034,9 @@ const EditorOptions = {
4027
4034
  ["off", "on"],
4028
4035
  {
4029
4036
  tags: ["experimental"],
4030
- enumDescriptions: [( localize(585, "Use regular DOM-based rendering.")), ( localize(586, "Use GPU acceleration."))],
4037
+ enumDescriptions: [( localize(586, "Use regular DOM-based rendering.")), ( localize(587, "Use GPU acceleration."))],
4031
4038
  description: ( localize(
4032
- 587,
4039
+ 588,
4033
4040
  "Controls whether to use the experimental GPU acceleration to render the editor."
4034
4041
  ))
4035
4042
  }
@@ -4040,9 +4047,9 @@ const EditorOptions = {
4040
4047
  "svg",
4041
4048
  ["svg", "font", "off"],
4042
4049
  {
4043
- enumDescriptions: [( localize(588, "Use a new rendering method with svgs.")), ( localize(589, "Use a new rendering method with font characters.")), ( localize(590, "Use the stable rendering method."))],
4050
+ enumDescriptions: [( localize(589, "Use a new rendering method with svgs.")), ( localize(590, "Use a new rendering method with font characters.")), ( localize(591, "Use the stable rendering method."))],
4044
4051
  description: ( localize(
4045
- 591,
4052
+ 592,
4046
4053
  "Controls whether whitespace is rendered with a new, experimental method."
4047
4054
  ))
4048
4055
  }
@@ -4054,13 +4061,13 @@ const EditorOptions = {
4054
4061
  5,
4055
4062
  x => (x <= 0 ? 5 : x),
4056
4063
  {
4057
- markdownDescription: ( localize(592, "Scrolling speed multiplier when pressing `Alt`."))
4064
+ markdownDescription: ( localize(593, "Scrolling speed multiplier when pressing `Alt`."))
4058
4065
  }
4059
4066
  ))),
4060
4067
  find: register(( new EditorFind())),
4061
4068
  fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, "fixedOverflowWidgets", false))),
4062
4069
  folding: register(( new EditorBooleanOption(EditorOption.folding, "folding", true, {
4063
- description: ( localize(593, "Controls whether the editor has code folding enabled."))
4070
+ description: ( localize(594, "Controls whether the editor has code folding enabled."))
4064
4071
  }))),
4065
4072
  foldingStrategy: register(( new EditorStringEnumOption(
4066
4073
  EditorOption.foldingStrategy,
@@ -4069,17 +4076,17 @@ const EditorOptions = {
4069
4076
  ["auto", "indentation"],
4070
4077
  {
4071
4078
  enumDescriptions: [( localize(
4072
- 594,
4079
+ 595,
4073
4080
  "Use a language-specific folding strategy if available, else the indentation-based one."
4074
- )), ( localize(595, "Use the indentation-based folding strategy."))],
4075
- description: ( localize(596, "Controls the strategy for computing folding ranges."))
4081
+ )), ( localize(596, "Use the indentation-based folding strategy."))],
4082
+ description: ( localize(597, "Controls the strategy for computing folding ranges."))
4076
4083
  }
4077
4084
  ))),
4078
4085
  foldingHighlight: register(( new EditorBooleanOption(EditorOption.foldingHighlight, "foldingHighlight", true, {
4079
- description: ( localize(597, "Controls whether the editor should highlight folded ranges."))
4086
+ description: ( localize(598, "Controls whether the editor should highlight folded ranges."))
4080
4087
  }))),
4081
4088
  foldingImportsByDefault: register(( new EditorBooleanOption(EditorOption.foldingImportsByDefault, "foldingImportsByDefault", false, {
4082
- description: ( localize(598, "Controls whether the editor automatically collapses import ranges."))
4089
+ description: ( localize(599, "Controls whether the editor automatically collapses import ranges."))
4083
4090
  }))),
4084
4091
  foldingMaximumRegions: register(( new EditorIntOption(
4085
4092
  EditorOption.foldingMaximumRegions,
@@ -4089,7 +4096,7 @@ const EditorOptions = {
4089
4096
  65000,
4090
4097
  {
4091
4098
  description: ( localize(
4092
- 599,
4099
+ 600,
4093
4100
  "The maximum number of foldable regions. Increasing this value may result in the editor becoming less responsive when the current source has a large number of foldable regions."
4094
4101
  ))
4095
4102
  }
@@ -4100,13 +4107,13 @@ const EditorOptions = {
4100
4107
  false,
4101
4108
  {
4102
4109
  description: ( localize(
4103
- 600,
4110
+ 601,
4104
4111
  "Controls whether clicking on the empty content after a folded line will unfold the line."
4105
4112
  ))
4106
4113
  }
4107
4114
  ))),
4108
4115
  fontFamily: register(( new EditorStringOption(EditorOption.fontFamily, "fontFamily", EDITOR_FONT_DEFAULTS.fontFamily, {
4109
- description: ( localize(601, "Controls the font family."))
4116
+ description: ( localize(602, "Controls the font family."))
4110
4117
  }))),
4111
4118
  fontInfo: register(( new EditorFontInfo())),
4112
4119
  fontLigatures2: register(( new EditorFontLigatures())),
@@ -4115,19 +4122,19 @@ const EditorOptions = {
4115
4122
  fontVariations: register(( new EditorFontVariations())),
4116
4123
  formatOnPaste: register(( new EditorBooleanOption(EditorOption.formatOnPaste, "formatOnPaste", false, {
4117
4124
  description: ( localize(
4118
- 602,
4125
+ 603,
4119
4126
  "Controls whether the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document."
4120
4127
  ))
4121
4128
  }))),
4122
4129
  formatOnType: register(( new EditorBooleanOption(EditorOption.formatOnType, "formatOnType", false, {
4123
4130
  description: ( localize(
4124
- 603,
4131
+ 604,
4125
4132
  "Controls whether the editor should automatically format the line after typing."
4126
4133
  ))
4127
4134
  }))),
4128
4135
  glyphMargin: register(( new EditorBooleanOption(EditorOption.glyphMargin, "glyphMargin", true, {
4129
4136
  description: ( localize(
4130
- 604,
4137
+ 605,
4131
4138
  "Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
4132
4139
  ))
4133
4140
  }))),
@@ -4137,13 +4144,13 @@ const EditorOptions = {
4137
4144
  "hideCursorInOverviewRuler",
4138
4145
  false,
4139
4146
  {
4140
- description: ( localize(605, "Controls whether the cursor should be hidden in the overview ruler."))
4147
+ description: ( localize(606, "Controls whether the cursor should be hidden in the overview ruler."))
4141
4148
  }
4142
4149
  ))),
4143
4150
  hover: register(( new EditorHover())),
4144
4151
  inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, "inDiffEditor", false))),
4145
4152
  inertialScroll: register(( new EditorBooleanOption(EditorOption.inertialScroll, "inertialScroll", false, {
4146
- description: ( localize(606, "Make scrolling inertial - mostly useful with touchpad on linux."))
4153
+ description: ( localize(607, "Make scrolling inertial - mostly useful with touchpad on linux."))
4147
4154
  }))),
4148
4155
  letterSpacing: register(( new EditorFloatOption(
4149
4156
  EditorOption.letterSpacing,
@@ -4151,7 +4158,7 @@ const EditorOptions = {
4151
4158
  EDITOR_FONT_DEFAULTS.letterSpacing,
4152
4159
  x => EditorFloatOption.clamp(x, -5, 20),
4153
4160
  {
4154
- description: ( localize(607, "Controls the letter spacing in pixels."))
4161
+ description: ( localize(608, "Controls the letter spacing in pixels."))
4155
4162
  }
4156
4163
  ))),
4157
4164
  lightbulb: register(( new EditorLightbulb())),
@@ -4161,13 +4168,13 @@ const EditorOptions = {
4161
4168
  lineNumbersMinChars: register(( new EditorIntOption(EditorOption.lineNumbersMinChars, "lineNumbersMinChars", 5, 1, 300))),
4162
4169
  linkedEditing: register(( new EditorBooleanOption(EditorOption.linkedEditing, "linkedEditing", false, {
4163
4170
  description: ( localize(
4164
- 608,
4171
+ 609,
4165
4172
  "Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
4166
4173
  ))
4167
4174
  }))),
4168
4175
  links: register(( new EditorBooleanOption(EditorOption.links, "links", true, {
4169
4176
  description: ( localize(
4170
- 609,
4177
+ 610,
4171
4178
  "Controls whether the editor should detect links and make them clickable."
4172
4179
  ))
4173
4180
  }))),
@@ -4177,7 +4184,7 @@ const EditorOptions = {
4177
4184
  "always",
4178
4185
  ["always", "near", "never"],
4179
4186
  {
4180
- description: ( localize(610, "Highlight matching brackets."))
4187
+ description: ( localize(611, "Highlight matching brackets."))
4181
4188
  }
4182
4189
  ))),
4183
4190
  minimap: register(( new EditorMinimap())),
@@ -4189,17 +4196,17 @@ const EditorOptions = {
4189
4196
  x => (x === 0 ? 1 : x),
4190
4197
  {
4191
4198
  markdownDescription: ( localize(
4192
- 611,
4199
+ 612,
4193
4200
  "A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
4194
4201
  ))
4195
4202
  }
4196
4203
  ))),
4197
4204
  mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, "mouseWheelZoom", false, {
4198
4205
  markdownDescription: isMacintosh ? ( localize(
4199
- 612,
4206
+ 613,
4200
4207
  "Zoom the font of the editor when using mouse wheel and holding `Cmd`."
4201
4208
  )) : ( localize(
4202
- 613,
4209
+ 614,
4203
4210
  "Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
4204
4211
  ))
4205
4212
  }))),
@@ -4208,7 +4215,7 @@ const EditorOptions = {
4208
4215
  "multiCursorMergeOverlapping",
4209
4216
  true,
4210
4217
  {
4211
- description: ( localize(614, "Merge multiple cursors when they are overlapping."))
4218
+ description: ( localize(615, "Merge multiple cursors when they are overlapping."))
4212
4219
  }
4213
4220
  ))),
4214
4221
  multiCursorModifier: register(( new EditorEnumOption(
@@ -4219,9 +4226,9 @@ const EditorOptions = {
4219
4226
  ["ctrlCmd", "alt"],
4220
4227
  _multiCursorModifierFromString,
4221
4228
  {
4222
- markdownEnumDescriptions: [( localize(615, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")), ( localize(616, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))],
4229
+ markdownEnumDescriptions: [( localize(616, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")), ( localize(617, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))],
4223
4230
  markdownDescription: ( localize(
4224
- 617,
4231
+ 618,
4225
4232
  "The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the [multicursor modifier](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier)."
4226
4233
  ))
4227
4234
  }
@@ -4233,7 +4240,7 @@ const EditorOptions = {
4233
4240
  ["default", "openLink", "ctrlLeftClick"],
4234
4241
  {
4235
4242
  description: ( localize(
4236
- 618,
4243
+ 619,
4237
4244
  "Controls what happens when middle mouse button is clicked in the editor."
4238
4245
  ))
4239
4246
  }
@@ -4244,16 +4251,16 @@ const EditorOptions = {
4244
4251
  "spread",
4245
4252
  ["spread", "full"],
4246
4253
  {
4247
- markdownEnumDescriptions: [( localize(619, "Each cursor pastes a single line of the text.")), ( localize(620, "Each cursor pastes the full text."))],
4254
+ markdownEnumDescriptions: [( localize(620, "Each cursor pastes a single line of the text.")), ( localize(621, "Each cursor pastes the full text."))],
4248
4255
  markdownDescription: ( localize(
4249
- 621,
4256
+ 622,
4250
4257
  "Controls pasting when the line count of the pasted text matches the cursor count."
4251
4258
  ))
4252
4259
  }
4253
4260
  ))),
4254
4261
  multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, "multiCursorLimit", 10000, 1, 100000, {
4255
4262
  markdownDescription: ( localize(
4256
- 622,
4263
+ 623,
4257
4264
  "Controls the max number of cursors that can be in an active editor at once."
4258
4265
  ))
4259
4266
  }))),
@@ -4263,9 +4270,9 @@ const EditorOptions = {
4263
4270
  "singleFile",
4264
4271
  ["off", "singleFile", "multiFile"],
4265
4272
  {
4266
- markdownEnumDescriptions: [( localize(623, "Does not highlight occurrences.")), ( localize(624, "Highlights occurrences only in the current file.")), ( localize(625, "Experimental: Highlights occurrences across all valid open files."))],
4273
+ markdownEnumDescriptions: [( localize(624, "Does not highlight occurrences.")), ( localize(625, "Highlights occurrences only in the current file.")), ( localize(626, "Experimental: Highlights occurrences across all valid open files."))],
4267
4274
  markdownDescription: ( localize(
4268
- 626,
4275
+ 627,
4269
4276
  "Controls whether occurrences should be highlighted across open files."
4270
4277
  ))
4271
4278
  }
@@ -4278,18 +4285,18 @@ const EditorOptions = {
4278
4285
  2000,
4279
4286
  {
4280
4287
  description: ( localize(
4281
- 627,
4288
+ 628,
4282
4289
  "Controls the delay in milliseconds after which occurrences are highlighted."
4283
4290
  )),
4284
4291
  tags: ["preview"]
4285
4292
  }
4286
4293
  ))),
4287
4294
  overtypeOnPaste: register(( new EditorBooleanOption(EditorOption.overtypeOnPaste, "overtypeOnPaste", true, {
4288
- description: ( localize(628, "Controls whether pasting should overtype."))
4295
+ description: ( localize(629, "Controls whether pasting should overtype."))
4289
4296
  }))),
4290
4297
  overviewRulerBorder: register(( new EditorBooleanOption(EditorOption.overviewRulerBorder, "overviewRulerBorder", true, {
4291
4298
  description: ( localize(
4292
- 629,
4299
+ 630,
4293
4300
  "Controls whether a border should be drawn around the overview ruler."
4294
4301
  ))
4295
4302
  }))),
@@ -4303,9 +4310,9 @@ const EditorOptions = {
4303
4310
  "tree",
4304
4311
  ["tree", "editor"],
4305
4312
  {
4306
- enumDescriptions: [( localize(630, "Focus the tree when opening peek")), ( localize(631, "Focus the editor when opening peek"))],
4313
+ enumDescriptions: [( localize(631, "Focus the tree when opening peek")), ( localize(632, "Focus the editor when opening peek"))],
4307
4314
  description: ( localize(
4308
- 632,
4315
+ 633,
4309
4316
  "Controls whether to focus the inline editor or the tree in the peek widget."
4310
4317
  ))
4311
4318
  }
@@ -4317,7 +4324,7 @@ const EditorOptions = {
4317
4324
  false,
4318
4325
  {
4319
4326
  description: ( localize(
4320
- 633,
4327
+ 634,
4321
4328
  "Controls whether the Go to Definition mouse gesture always opens the peek widget."
4322
4329
  ))
4323
4330
  }
@@ -4331,7 +4338,7 @@ const EditorOptions = {
4331
4338
  Constants.MAX_SAFE_SMALL_INTEGER,
4332
4339
  {
4333
4340
  description: ( localize(
4334
- 634,
4341
+ 635,
4335
4342
  "Controls the delay in milliseconds after which quick suggestions will show up."
4336
4343
  )),
4337
4344
  experiment: {
@@ -4342,11 +4349,11 @@ const EditorOptions = {
4342
4349
  readOnly: register(( new EditorBooleanOption(EditorOption.readOnly, "readOnly", false))),
4343
4350
  readOnlyMessage: register(( new ReadonlyMessage())),
4344
4351
  renameOnType: register(( new EditorBooleanOption(EditorOption.renameOnType, "renameOnType", false, {
4345
- description: ( localize(635, "Controls whether the editor auto renames on type.")),
4346
- markdownDeprecationMessage: ( localize(636, "Deprecated, use `#editor.linkedEditing#` instead."))
4352
+ description: ( localize(636, "Controls whether the editor auto renames on type.")),
4353
+ markdownDeprecationMessage: ( localize(637, "Deprecated, use `#editor.linkedEditing#` instead."))
4347
4354
  }))),
4348
4355
  renderControlCharacters: register(( new EditorBooleanOption(EditorOption.renderControlCharacters, "renderControlCharacters", true, {
4349
- description: ( localize(637, "Controls whether the editor should render control characters.")),
4356
+ description: ( localize(638, "Controls whether the editor should render control characters.")),
4350
4357
  restricted: true
4351
4358
  }))),
4352
4359
  renderFinalNewline: register(( new EditorStringEnumOption(
@@ -4355,7 +4362,7 @@ const EditorOptions = {
4355
4362
  (isLinux ? "dimmed" : "on"),
4356
4363
  ["off", "on", "dimmed"],
4357
4364
  {
4358
- description: ( localize(638, "Render last line number when the file ends with a newline."))
4365
+ description: ( localize(639, "Render last line number when the file ends with a newline."))
4359
4366
  }
4360
4367
  ))),
4361
4368
  renderLineHighlight: register(( new EditorStringEnumOption(
@@ -4364,8 +4371,8 @@ const EditorOptions = {
4364
4371
  "line",
4365
4372
  ["none", "gutter", "line", "all"],
4366
4373
  {
4367
- enumDescriptions: ["", "", "", ( localize(639, "Highlights both the gutter and the current line."))],
4368
- description: ( localize(640, "Controls how the editor should render the current line highlight."))
4374
+ enumDescriptions: ["", "", "", ( localize(640, "Highlights both the gutter and the current line."))],
4375
+ description: ( localize(641, "Controls how the editor should render the current line highlight."))
4369
4376
  }
4370
4377
  ))),
4371
4378
  renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
@@ -4374,7 +4381,7 @@ const EditorOptions = {
4374
4381
  false,
4375
4382
  {
4376
4383
  description: ( localize(
4377
- 641,
4384
+ 642,
4378
4385
  "Controls if the editor should render the current line highlight only when the editor is focused."
4379
4386
  ))
4380
4387
  }
@@ -4392,10 +4399,10 @@ const EditorOptions = {
4392
4399
  ["none", "boundary", "selection", "trailing", "all"],
4393
4400
  {
4394
4401
  enumDescriptions: ["", ( localize(
4395
- 642,
4402
+ 643,
4396
4403
  "Render whitespace characters except for single spaces between words."
4397
- )), ( localize(643, "Render whitespace characters only on selected text.")), ( localize(644, "Render only trailing whitespace characters.")), ""],
4398
- description: ( localize(645, "Controls how the editor should render whitespace characters."))
4404
+ )), ( localize(644, "Render whitespace characters only on selected text.")), ( localize(645, "Render only trailing whitespace characters.")), ""],
4405
+ description: ( localize(646, "Controls how the editor should render whitespace characters."))
4399
4406
  }
4400
4407
  ))),
4401
4408
  revealHorizontalRightPadding: register(( new EditorIntOption(
@@ -4406,7 +4413,7 @@ const EditorOptions = {
4406
4413
  1000
4407
4414
  ))),
4408
4415
  roundedSelection: register(( new EditorBooleanOption(EditorOption.roundedSelection, "roundedSelection", true, {
4409
- description: ( localize(646, "Controls whether selections should have rounded corners."))
4416
+ description: ( localize(647, "Controls whether selections should have rounded corners."))
4410
4417
  }))),
4411
4418
  rulers: register(( new EditorRulers())),
4412
4419
  scrollbar: register(( new EditorScrollbar())),
@@ -4418,33 +4425,33 @@ const EditorOptions = {
4418
4425
  Constants.MAX_SAFE_SMALL_INTEGER,
4419
4426
  {
4420
4427
  description: ( localize(
4421
- 647,
4428
+ 648,
4422
4429
  "Controls the number of extra characters beyond which the editor will scroll horizontally."
4423
4430
  ))
4424
4431
  }
4425
4432
  ))),
4426
4433
  scrollBeyondLastLine: register(( new EditorBooleanOption(EditorOption.scrollBeyondLastLine, "scrollBeyondLastLine", true, {
4427
- description: ( localize(648, "Controls whether the editor will scroll beyond the last line."))
4434
+ description: ( localize(649, "Controls whether the editor will scroll beyond the last line."))
4428
4435
  }))),
4429
4436
  scrollOnMiddleClick: register(( new EditorBooleanOption(EditorOption.scrollOnMiddleClick, "scrollOnMiddleClick", false, {
4430
4437
  description: ( localize(
4431
- 649,
4438
+ 650,
4432
4439
  "Controls whether the editor will scroll when the middle button is pressed."
4433
4440
  ))
4434
4441
  }))),
4435
4442
  scrollPredominantAxis: register(( new EditorBooleanOption(EditorOption.scrollPredominantAxis, "scrollPredominantAxis", true, {
4436
4443
  description: ( localize(
4437
- 650,
4444
+ 651,
4438
4445
  "Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time. Prevents horizontal drift when scrolling vertically on a trackpad."
4439
4446
  ))
4440
4447
  }))),
4441
4448
  selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, "selectionClipboard", true, {
4442
- description: ( localize(651, "Controls whether the Linux primary clipboard should be supported.")),
4449
+ description: ( localize(652, "Controls whether the Linux primary clipboard should be supported.")),
4443
4450
  included: isLinux
4444
4451
  }))),
4445
4452
  selectionHighlight: register(( new EditorBooleanOption(EditorOption.selectionHighlight, "selectionHighlight", true, {
4446
4453
  description: ( localize(
4447
- 652,
4454
+ 653,
4448
4455
  "Controls whether the editor should highlight matches similar to the selection."
4449
4456
  ))
4450
4457
  }))),
@@ -4456,7 +4463,7 @@ const EditorOptions = {
4456
4463
  Constants.MAX_SAFE_SMALL_INTEGER,
4457
4464
  {
4458
4465
  description: ( localize(
4459
- 653,
4466
+ 654,
4460
4467
  "Controls how many characters can be in the selection before similiar matches are not highlighted. Set to zero for unlimited."
4461
4468
  ))
4462
4469
  }
@@ -4467,7 +4474,7 @@ const EditorOptions = {
4467
4474
  false,
4468
4475
  {
4469
4476
  description: ( localize(
4470
- 654,
4477
+ 655,
4471
4478
  "Controls whether the editor should highlight selection matches that span multiple lines."
4472
4479
  ))
4473
4480
  }
@@ -4479,15 +4486,15 @@ const EditorOptions = {
4479
4486
  "mouseover",
4480
4487
  ["always", "never", "mouseover"],
4481
4488
  {
4482
- enumDescriptions: [( localize(655, "Always show the folding controls.")), ( localize(656, "Never show the folding controls and reduce the gutter size.")), ( localize(657, "Only show the folding controls when the mouse is over the gutter."))],
4483
- description: ( localize(658, "Controls when the folding controls on the gutter are shown."))
4489
+ enumDescriptions: [( localize(656, "Always show the folding controls.")), ( localize(657, "Never show the folding controls and reduce the gutter size.")), ( localize(658, "Only show the folding controls when the mouse is over the gutter."))],
4490
+ description: ( localize(659, "Controls when the folding controls on the gutter are shown."))
4484
4491
  }
4485
4492
  ))),
4486
4493
  showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, "showUnused", true, {
4487
- description: ( localize(659, "Controls fading out of unused code."))
4494
+ description: ( localize(660, "Controls fading out of unused code."))
4488
4495
  }))),
4489
4496
  showDeprecated: register(( new EditorBooleanOption(EditorOption.showDeprecated, "showDeprecated", true, {
4490
- description: ( localize(660, "Controls strikethrough deprecated variables."))
4497
+ description: ( localize(661, "Controls strikethrough deprecated variables."))
4491
4498
  }))),
4492
4499
  inlayHints: register(( new EditorInlayHints())),
4493
4500
  snippetSuggestions: register(( new EditorStringEnumOption(
@@ -4496,16 +4503,16 @@ const EditorOptions = {
4496
4503
  "inline",
4497
4504
  ["top", "bottom", "inline", "none"],
4498
4505
  {
4499
- enumDescriptions: [( localize(661, "Show snippet suggestions on top of other suggestions.")), ( localize(662, "Show snippet suggestions below other suggestions.")), ( localize(663, "Show snippets suggestions with other suggestions.")), ( localize(664, "Do not show snippet suggestions."))],
4506
+ enumDescriptions: [( localize(662, "Show snippet suggestions on top of other suggestions.")), ( localize(663, "Show snippet suggestions below other suggestions.")), ( localize(664, "Show snippets suggestions with other suggestions.")), ( localize(665, "Do not show snippet suggestions."))],
4500
4507
  description: ( localize(
4501
- 665,
4508
+ 666,
4502
4509
  "Controls whether snippets are shown with other suggestions and how they are sorted."
4503
4510
  ))
4504
4511
  }
4505
4512
  ))),
4506
4513
  smartSelect: register(( new SmartSelect())),
4507
4514
  smoothScrolling: register(( new EditorBooleanOption(EditorOption.smoothScrolling, "smoothScrolling", false, {
4508
- description: ( localize(666, "Controls whether the editor will scroll using an animation."))
4515
+ description: ( localize(667, "Controls whether the editor will scroll using an animation."))
4509
4516
  }))),
4510
4517
  stopRenderingLineAfter: register(( new EditorIntOption(
4511
4518
  EditorOption.stopRenderingLineAfter,
@@ -4522,14 +4529,14 @@ const EditorOptions = {
4522
4529
  false,
4523
4530
  {
4524
4531
  description: ( localize(
4525
- 667,
4532
+ 668,
4526
4533
  "Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
4527
4534
  ))
4528
4535
  }
4529
4536
  ))),
4530
4537
  suggestFontSize: register(( new EditorIntOption(EditorOption.suggestFontSize, "suggestFontSize", 0, 0, 1000, {
4531
4538
  markdownDescription: ( localize(
4532
- 668,
4539
+ 669,
4533
4540
  "Font size for the suggest widget. When set to {0}, the value of {1} is used.",
4534
4541
  "`0`",
4535
4542
  "`#editor.fontSize#`"
@@ -4537,7 +4544,7 @@ const EditorOptions = {
4537
4544
  }))),
4538
4545
  suggestLineHeight: register(( new EditorIntOption(EditorOption.suggestLineHeight, "suggestLineHeight", 0, 0, 1000, {
4539
4546
  markdownDescription: ( localize(
4540
- 669,
4547
+ 670,
4541
4548
  "Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
4542
4549
  "`0`",
4543
4550
  "`#editor.lineHeight#`"
@@ -4549,7 +4556,7 @@ const EditorOptions = {
4549
4556
  true,
4550
4557
  {
4551
4558
  description: ( localize(
4552
- 670,
4559
+ 671,
4553
4560
  "Controls whether suggestions should automatically show up when typing trigger characters."
4554
4561
  ))
4555
4562
  }
@@ -4560,15 +4567,15 @@ const EditorOptions = {
4560
4567
  "first",
4561
4568
  ["first", "recentlyUsed", "recentlyUsedByPrefix"],
4562
4569
  {
4563
- markdownEnumDescriptions: [( localize(671, "Always select the first suggestion.")), ( localize(
4564
- 672,
4570
+ markdownEnumDescriptions: [( localize(672, "Always select the first suggestion.")), ( localize(
4571
+ 673,
4565
4572
  "Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
4566
4573
  )), ( localize(
4567
- 673,
4574
+ 674,
4568
4575
  "Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
4569
4576
  ))],
4570
4577
  description: ( localize(
4571
- 674,
4578
+ 675,
4572
4579
  "Controls how suggestions are pre-selected when showing the suggest list."
4573
4580
  ))
4574
4581
  }
@@ -4580,19 +4587,19 @@ const EditorOptions = {
4580
4587
  ["on", "off", "onlySnippets"],
4581
4588
  {
4582
4589
  enumDescriptions: [( localize(
4583
- 675,
4590
+ 676,
4584
4591
  "Tab complete will insert the best matching suggestion when pressing tab."
4585
- )), ( localize(676, "Disable tab completions.")), ( localize(
4586
- 677,
4592
+ )), ( localize(677, "Disable tab completions.")), ( localize(
4593
+ 678,
4587
4594
  "Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
4588
4595
  ))],
4589
- description: ( localize(678, "Enables tab completions."))
4596
+ description: ( localize(679, "Enables tab completions."))
4590
4597
  }
4591
4598
  ))),
4592
4599
  tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, "tabIndex", 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
4593
4600
  trimWhitespaceOnDelete: register(( new EditorBooleanOption(EditorOption.trimWhitespaceOnDelete, "trimWhitespaceOnDelete", false, {
4594
4601
  description: ( localize(
4595
- 679,
4602
+ 680,
4596
4603
  "Controls whether the editor will also delete the next line's indentation whitespace when deleting a newline."
4597
4604
  ))
4598
4605
  }))),
@@ -4603,31 +4610,31 @@ const EditorOptions = {
4603
4610
  "prompt",
4604
4611
  ["auto", "off", "prompt"],
4605
4612
  {
4606
- enumDescriptions: [( localize(680, "Unusual line terminators are automatically removed.")), ( localize(681, "Unusual line terminators are ignored.")), ( localize(682, "Unusual line terminators prompt to be removed."))],
4607
- description: ( localize(683, "Remove unusual line terminators that might cause problems."))
4613
+ enumDescriptions: [( localize(681, "Unusual line terminators are automatically removed.")), ( localize(682, "Unusual line terminators are ignored.")), ( localize(683, "Unusual line terminators prompt to be removed."))],
4614
+ description: ( localize(684, "Remove unusual line terminators that might cause problems."))
4608
4615
  }
4609
4616
  ))),
4610
4617
  useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, "useShadowDOM", true))),
4611
4618
  useTabStops: register(( new EditorBooleanOption(EditorOption.useTabStops, "useTabStops", true, {
4612
4619
  description: ( localize(
4613
- 684,
4620
+ 685,
4614
4621
  "Spaces and tabs are inserted and deleted in alignment with tab stops."
4615
4622
  ))
4616
4623
  }))),
4617
4624
  wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, "wordBreak", "normal", ["normal", "keepAll"], {
4618
- markdownEnumDescriptions: [( localize(685, "Use the default line break rule.")), ( localize(
4619
- 686,
4625
+ markdownEnumDescriptions: [( localize(686, "Use the default line break rule.")), ( localize(
4626
+ 687,
4620
4627
  "Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
4621
4628
  ))],
4622
4629
  description: ( localize(
4623
- 687,
4630
+ 688,
4624
4631
  "Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
4625
4632
  ))
4626
4633
  }))),
4627
4634
  wordSegmenterLocales: register(( new WordSegmenterLocales())),
4628
4635
  wordSeparators: register(( new EditorStringOption(EditorOption.wordSeparators, "wordSeparators", USUAL_WORD_SEPARATORS, {
4629
4636
  description: ( localize(
4630
- 688,
4637
+ 689,
4631
4638
  "Characters that will be used as word separators when doing word related navigations or operations."
4632
4639
  ))
4633
4640
  }))),
@@ -4637,11 +4644,11 @@ const EditorOptions = {
4637
4644
  "off",
4638
4645
  ["off", "on", "wordWrapColumn", "bounded"],
4639
4646
  {
4640
- markdownEnumDescriptions: [( localize(689, "Lines will never wrap.")), ( localize(690, "Lines will wrap at the viewport width.")), ( localize(691, "Lines will wrap at `#editor.wordWrapColumn#`.")), ( localize(
4641
- 692,
4647
+ markdownEnumDescriptions: [( localize(690, "Lines will never wrap.")), ( localize(691, "Lines will wrap at the viewport width.")), ( localize(692, "Lines will wrap at `#editor.wordWrapColumn#`.")), ( localize(
4648
+ 693,
4642
4649
  "Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
4643
4650
  ))],
4644
- description: ( localize(693, "Controls how lines should wrap."))
4651
+ description: ( localize(694, "Controls how lines should wrap."))
4645
4652
  }
4646
4653
  ))),
4647
4654
  wordWrapBreakAfterCharacters: register(( new EditorStringOption(
@@ -4662,7 +4669,7 @@ const EditorOptions = {
4662
4669
  Constants.MAX_SAFE_SMALL_INTEGER,
4663
4670
  {
4664
4671
  markdownDescription: ( localize(
4665
- 694,
4672
+ 695,
4666
4673
  "Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
4667
4674
  ))
4668
4675
  }
@@ -4681,7 +4688,7 @@ const EditorOptions = {
4681
4688
  ))),
4682
4689
  wrapOnEscapedLineFeeds: register(( new EditorBooleanOption(EditorOption.wrapOnEscapedLineFeeds, "wrapOnEscapedLineFeeds", false, {
4683
4690
  markdownDescription: ( localize(
4684
- 695,
4691
+ 696,
4685
4692
  "Controls whether literal `\\n` shall trigger a wordWrap when `#editor.wordWrap#` is enabled.\n\nFor example:\n```c\nchar* str=\"hello\\nworld\"\n```\nwill be displayed as\n```c\nchar* str=\"hello\\n\n world\"\n```"
4686
4693
  ))
4687
4694
  }))),
@@ -4694,11 +4701,11 @@ const EditorOptions = {
4694
4701
  ["auto", "always", "never"],
4695
4702
  {
4696
4703
  enumDescriptions: [( localize(
4697
- 696,
4704
+ 697,
4698
4705
  "Show default color decorators only when no extension provides colors decorators."
4699
- )), ( localize(697, "Always show default color decorators.")), ( localize(698, "Never show default color decorators."))],
4706
+ )), ( localize(698, "Always show default color decorators.")), ( localize(699, "Never show default color decorators."))],
4700
4707
  description: ( localize(
4701
- 699,
4708
+ 700,
4702
4709
  "Controls whether inline color decorations should be shown using the default document color provider."
4703
4710
  ))
4704
4711
  }
@@ -4706,7 +4713,7 @@ const EditorOptions = {
4706
4713
  pixelRatio: register(( new EditorPixelRatio())),
4707
4714
  tabFocusMode: register(( new EditorBooleanOption(EditorOption.tabFocusMode, "tabFocusMode", false, {
4708
4715
  markdownDescription: ( localize(
4709
- 700,
4716
+ 701,
4710
4717
  "Controls whether the editor receives tabs or defers them to the workbench for navigation."
4711
4718
  ))
4712
4719
  }))),