@codingame/monaco-vscode-api 27.0.0 → 28.0.1

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