@codingame/monaco-vscode-api 26.2.2 → 28.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1167) hide show
  1. package/missing-services.js +507 -27
  2. package/package.json +9 -9
  3. package/service-override/tools/editor.d.ts +4 -2
  4. package/service-override/tools/editor.js +1 -0
  5. package/services.d.ts +16 -1
  6. package/services.js +21 -4
  7. package/vscode/product.json.js +1 -1
  8. package/vscode/src/vs/base/browser/dom.d.ts +0 -15
  9. package/vscode/src/vs/base/browser/dom.js +3 -42
  10. package/vscode/src/vs/base/browser/pixelRatio.js +4 -1
  11. package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +3 -3
  12. package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +1 -1
  13. package/vscode/src/vs/base/browser/ui/animations/animations.d.ts +40 -0
  14. package/vscode/src/vs/base/browser/ui/animations/animations.js +373 -0
  15. package/vscode/src/vs/base/browser/ui/button/button.js +11 -4
  16. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  17. package/vscode/src/vs/base/browser/ui/contextview/contextview.d.ts +3 -42
  18. package/vscode/src/vs/base/browser/ui/contextview/contextview.js +48 -126
  19. package/vscode/src/vs/base/browser/ui/dialog/dialog.css +19 -2
  20. package/vscode/src/vs/base/browser/ui/dialog/dialog.d.ts +1 -0
  21. package/vscode/src/vs/base/browser/ui/dialog/dialog.js +2 -0
  22. package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +5 -0
  23. package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +2 -1
  24. package/vscode/src/vs/base/browser/ui/grid/grid.d.ts +2 -1
  25. package/vscode/src/vs/base/browser/ui/grid/grid.js +2 -2
  26. package/vscode/src/vs/base/browser/ui/grid/gridview.d.ts +1 -1
  27. package/vscode/src/vs/base/browser/ui/grid/gridview.js +6 -2
  28. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +1 -0
  29. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +8 -3
  30. package/vscode/src/vs/base/browser/ui/list/listView.js +9 -2
  31. package/vscode/src/vs/base/browser/ui/menu/menu.d.ts +1 -1
  32. package/vscode/src/vs/base/browser/ui/menu/menu.js +12 -10
  33. package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +1 -0
  34. package/vscode/src/vs/base/browser/ui/progressbar/progressbar.js +6 -0
  35. package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +2 -2
  36. package/vscode/src/vs/base/browser/ui/selectBox/selectBox.d.ts +1 -0
  37. package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +2 -1
  38. package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +42 -5
  39. package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +69 -35
  40. package/vscode/src/vs/base/browser/ui/selectBox/selectBoxNative.js +8 -3
  41. package/vscode/src/vs/base/browser/ui/splitview/paneview.js +1 -1
  42. package/vscode/src/vs/base/browser/ui/table/tableWidget.js +1 -1
  43. package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
  44. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +3 -0
  45. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +24 -19
  46. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +3 -1
  47. package/vscode/src/vs/base/browser/ui/tree/treeDefaults.js +1 -1
  48. package/vscode/src/vs/base/common/actions.d.ts +4 -0
  49. package/vscode/src/vs/base/common/actions.js +15 -1
  50. package/vscode/src/vs/base/common/codicons.d.ts +2 -0
  51. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +2 -0
  52. package/vscode/src/vs/base/common/codiconsLibrary.js +2 -0
  53. package/vscode/src/vs/base/common/date.js +40 -40
  54. package/vscode/src/vs/base/common/defaultAccount.d.ts +5 -0
  55. package/vscode/src/vs/base/common/errorMessage.js +6 -6
  56. package/vscode/src/vs/base/common/event.d.ts +3 -2
  57. package/vscode/src/vs/base/common/event.js +40 -1
  58. package/vscode/src/vs/base/common/jsonErrorMessages.js +9 -9
  59. package/vscode/src/vs/base/common/keyCodes.js +4 -2
  60. package/vscode/src/vs/base/common/keybindingLabels.js +20 -20
  61. package/vscode/src/vs/base/common/layout.d.ts +67 -0
  62. package/vscode/src/vs/base/common/layout.js +96 -0
  63. package/vscode/src/vs/base/common/lifecycle.d.ts +32 -0
  64. package/vscode/src/vs/base/common/lifecycle.js +58 -1
  65. package/vscode/src/vs/base/common/mime.js +7 -5
  66. package/vscode/src/vs/base/common/parsers.d.ts +32 -0
  67. package/vscode/src/vs/base/common/parsers.js +54 -0
  68. package/vscode/src/vs/base/common/platform.d.ts +1 -0
  69. package/vscode/src/vs/base/common/product.d.ts +2 -0
  70. package/vscode/src/vs/base/common/strings.d.ts +0 -30
  71. package/vscode/src/vs/base/common/strings.js +0 -11
  72. package/vscode/src/vs/base/common/uri.js +5 -1
  73. package/vscode/src/vs/base/common/yaml.d.ts +29 -53
  74. package/vscode/src/vs/base/common/yaml.js +1119 -502
  75. package/vscode/src/vs/base/parts/ipc/common/ipc.js +3 -2
  76. package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +2 -2
  77. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +1 -1
  78. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +21 -11
  79. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -1
  80. package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +4 -4
  81. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
  82. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +1 -1
  83. package/vscode/src/vs/editor/browser/coreCommands.js +3 -3
  84. package/vscode/src/vs/editor/browser/editorExtensions.js +9 -9
  85. package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.js +3 -0
  86. package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +3 -0
  87. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +1 -1
  88. package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +4 -4
  89. package/vscode/src/vs/editor/browser/view/viewController.js +29 -9
  90. package/vscode/src/vs/editor/browser/view.d.ts +3 -1
  91. package/vscode/src/vs/editor/browser/view.js +10 -7
  92. package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +5 -1
  93. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +1 -1
  94. package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +0 -3
  95. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +3 -1
  96. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +8 -4
  97. package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +1 -0
  98. package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.d.ts +2 -1
  99. package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.js +4 -2
  100. package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
  101. package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +12 -12
  102. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
  103. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +4 -4
  104. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
  105. package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.js +1 -0
  106. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
  107. package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
  108. package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +1 -1
  109. package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
  110. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
  111. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +1 -1
  112. package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +50 -50
  113. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +10 -3
  114. package/vscode/src/vs/editor/common/config/editorOptions.js +428 -385
  115. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
  116. package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +5 -0
  117. package/vscode/src/vs/editor/common/core/edits/stringEdit.js +19 -21
  118. package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +4 -0
  119. package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +7 -1
  120. package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.js +93 -3
  121. package/vscode/src/vs/editor/common/editorContextKeys.d.ts +1 -0
  122. package/vscode/src/vs/editor/common/editorContextKeys.js +49 -48
  123. package/vscode/src/vs/editor/common/languageFeatureRegistry.d.ts +1 -0
  124. package/vscode/src/vs/editor/common/languageFeatureRegistry.js +8 -1
  125. package/vscode/src/vs/editor/common/languageSelector.d.ts +1 -0
  126. package/vscode/src/vs/editor/common/languageSelector.js +15 -1
  127. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  128. package/vscode/src/vs/editor/common/languages.d.ts +13 -0
  129. package/vscode/src/vs/editor/common/languages.js +56 -56
  130. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsImpl.js +1 -1
  131. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/bracketPairsTree.js +1 -1
  132. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/colorizedBracketPairsDecorationProvider.js +1 -1
  133. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  134. package/vscode/src/vs/editor/common/model/prefixSumComputer.js +6 -1
  135. package/vscode/src/vs/editor/common/model/textModel.d.ts +9 -4
  136. package/vscode/src/vs/editor/common/model/textModel.js +99 -34
  137. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +3 -2
  138. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +3 -0
  139. package/vscode/src/vs/editor/common/model/tokens/annotations.js +9 -1
  140. package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.js +2 -2
  141. package/vscode/src/vs/editor/common/model.d.ts +2 -1
  142. package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +2 -1
  143. package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +1 -0
  144. package/vscode/src/vs/editor/common/standaloneStrings.d.ts +1 -0
  145. package/vscode/src/vs/editor/common/standaloneStrings.js +55 -49
  146. package/vscode/src/vs/editor/common/textModelEvents.d.ts +25 -5
  147. package/vscode/src/vs/editor/common/textModelEvents.js +13 -4
  148. package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +14 -4
  149. package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +192 -91
  150. package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +3 -3
  151. package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +11 -15
  152. package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +3 -3
  153. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  154. package/vscode/src/vs/editor/common/viewModel/inlineDecorations.d.ts +71 -7
  155. package/vscode/src/vs/editor/common/viewModel/inlineDecorations.js +180 -14
  156. package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.js +8 -2
  157. package/vscode/src/vs/editor/common/viewModel/modelLineProjection.d.ts +2 -2
  158. package/vscode/src/vs/editor/common/viewModel/modelLineProjection.js +31 -82
  159. package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +2 -23
  160. package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.js +19 -114
  161. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +11 -0
  162. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +174 -141
  163. package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +1 -0
  164. package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +16 -3
  165. package/vscode/src/vs/editor/common/viewModel.d.ts +6 -3
  166. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  167. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  168. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  169. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  170. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  171. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  172. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +19 -19
  173. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  174. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.d.ts +9 -1
  175. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +56 -13
  176. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  177. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.d.ts +2 -0
  178. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +23 -3
  179. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.d.ts +2 -0
  180. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +59 -52
  181. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +3 -2
  182. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerModel.d.ts +2 -1
  183. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerModel.js +6 -4
  184. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  185. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  186. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +2 -2
  187. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerStrip.js +2 -2
  188. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  189. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  190. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  191. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
  192. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  193. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  194. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
  195. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +5 -5
  196. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  197. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +1 -1
  198. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  199. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  200. package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +25 -1
  201. package/vscode/src/vs/editor/contrib/find/browser/findController.js +38 -20
  202. package/vscode/src/vs/editor/contrib/find/browser/findDecorations.js +1 -1
  203. package/vscode/src/vs/editor/contrib/find/browser/findModel.d.ts +5 -0
  204. package/vscode/src/vs/editor/contrib/find/browser/findModel.js +2 -1
  205. package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +1 -1
  206. package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +5 -7
  207. package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +29 -1
  208. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +101 -33
  209. package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.css +39 -3
  210. package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.js +11 -7
  211. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  212. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  213. package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.d.ts +2 -1
  214. package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.js +1 -0
  215. package/vscode/src/vs/editor/contrib/folding/browser/hiddenRangeModel.d.ts +2 -1
  216. package/vscode/src/vs/editor/contrib/folding/browser/hiddenRangeModel.js +1 -0
  217. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  218. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  219. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  220. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -13
  221. package/vscode/src/vs/editor/contrib/gotoError/browser/markerSelectionStatus.d.ts +1 -0
  222. package/vscode/src/vs/editor/contrib/gotoError/browser/markerSelectionStatus.js +60 -0
  223. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +33 -33
  224. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  225. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  226. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  227. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +4 -4
  228. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  229. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  230. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  231. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  232. package/vscode/src/vs/editor/contrib/hover/browser/hover.css +6 -3
  233. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  234. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.d.ts +1 -0
  235. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +4 -3
  236. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +22 -22
  237. package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +6 -0
  238. package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
  239. package/vscode/src/vs/editor/contrib/hover/browser/hoverUtils.js +8 -4
  240. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +27 -18
  241. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  242. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  243. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +18 -18
  244. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +5 -5
  245. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
  246. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/common.d.ts +4 -0
  247. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/common.js +11 -0
  248. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
  249. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +4 -2
  250. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  251. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +4 -4
  252. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +6 -1
  253. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +41 -13
  254. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +10 -3
  255. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +44 -9
  256. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +18 -7
  257. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +79 -37
  258. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +1 -0
  259. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +53 -1
  260. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +5 -3
  261. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/textModelValueReference.d.ts +30 -0
  262. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/textModelValueReference.js +65 -0
  263. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.d.ts +1 -1
  264. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +27 -20
  265. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +9 -3
  266. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +30 -15
  267. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +3 -3
  268. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +20 -7
  269. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +4 -5
  270. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +3 -1
  271. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +6 -3
  272. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +4 -2
  273. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +17 -9
  274. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.d.ts +7 -1
  275. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +74 -39
  276. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistancePreviewEditor.d.ts +6 -0
  277. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistancePreviewEditor.js +3 -2
  278. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
  279. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +2 -2
  280. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +14 -0
  281. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  282. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  283. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
  284. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  285. package/vscode/src/vs/editor/contrib/links/browser/links.js +6 -6
  286. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  287. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  288. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +2 -0
  289. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  290. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.js +1 -1
  291. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  292. package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +4 -0
  293. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +19 -18
  294. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  295. package/vscode/src/vs/editor/contrib/quickAccess/browser/editorNavigationQuickAccess.js +9 -1
  296. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +20 -10
  297. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
  298. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  299. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  300. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +1 -0
  301. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +8 -8
  302. package/vscode/src/vs/editor/contrib/semanticTokens/browser/documentSemanticTokens.d.ts +1 -0
  303. package/vscode/src/vs/editor/contrib/semanticTokens/browser/documentSemanticTokens.js +42 -24
  304. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  305. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  306. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  307. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +1 -1
  308. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  309. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +1 -0
  310. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +5 -1
  311. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +5 -5
  312. package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +3 -1
  313. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  314. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  315. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +3 -1
  316. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +22 -17
  317. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +4 -2
  318. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  319. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  320. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +34 -34
  321. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  322. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  323. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  324. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  325. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  326. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  327. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  328. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  329. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  330. package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +3 -2
  331. package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.js +10 -6
  332. package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +3 -3
  333. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +71 -65
  334. package/vscode/src/vs/platform/accessibility/browser/accessibilityService.d.ts +7 -0
  335. package/vscode/src/vs/platform/accessibility/browser/accessibilityService.js +38 -4
  336. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +7 -1
  337. package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +6 -0
  338. package/vscode/src/vs/platform/accessibility/common/accessibility.service.d.ts +2 -0
  339. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  340. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  341. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +104 -4
  342. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +533 -56
  343. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +89 -14
  344. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +6 -2
  345. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +133 -10
  346. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -2
  347. package/vscode/src/vs/platform/actions/browser/floatingMenu.js +1 -1
  348. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +2 -0
  349. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +15 -4
  350. package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +11 -0
  351. package/vscode/src/vs/platform/actions/browser/toolbar.js +27 -21
  352. package/vscode/src/vs/platform/actions/common/actions.d.ts +9 -1
  353. package/vscode/src/vs/platform/actions/common/actions.js +25 -2
  354. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  355. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  356. package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +11 -4
  357. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +24 -12
  358. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  359. package/vscode/src/vs/platform/contextkey/common/contextkey.js +26 -12
  360. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  361. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  362. package/vscode/src/vs/platform/contextview/browser/contextView.d.ts +2 -0
  363. package/vscode/src/vs/platform/contextview/browser/contextView.service.d.ts +2 -1
  364. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +4 -1
  365. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +4 -1
  366. package/vscode/src/vs/platform/dialogs/common/dialogs.d.ts +11 -0
  367. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  368. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  369. package/vscode/src/vs/platform/editor/common/editor.d.ts +32 -0
  370. package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
  371. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +0 -1
  372. package/vscode/src/vs/platform/environment/common/environmentService.d.ts +0 -1
  373. package/vscode/src/vs/platform/extensionManagement/common/extensionEnablementService.js +1 -1
  374. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  375. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  376. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
  377. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  378. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
  379. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +12 -1
  380. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +15 -4
  381. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  382. package/vscode/src/vs/platform/files/common/files.js +6 -6
  383. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  384. package/vscode/src/vs/platform/hover/browser/hover.css +1 -1
  385. package/vscode/src/vs/platform/hover/browser/hoverService.js +1 -1
  386. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +3 -2
  387. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  388. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  389. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  390. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  391. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  392. package/vscode/src/vs/platform/log/common/log.js +6 -6
  393. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  394. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  395. package/vscode/src/vs/platform/mcp/common/mcpManagement.d.ts +2 -1
  396. package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.d.ts +42 -0
  397. package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.js +105 -0
  398. package/vscode/src/vs/platform/mcp/common/mcpManagementService.d.ts +130 -0
  399. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +666 -0
  400. package/vscode/src/vs/platform/mcp/common/mcpPlatformTypes.d.ts +12 -0
  401. package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.service.d.ts +1 -0
  402. package/vscode/src/vs/platform/mcp/common/modelContextProtocol.d.ts +2917 -0
  403. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.d.ts +1 -0
  404. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +32 -0
  405. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.d.ts +44 -0
  406. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.js +62 -0
  407. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.service.d.ts +18 -0
  408. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.service.js +6 -0
  409. package/vscode/src/vs/platform/native/common/native.d.ts +43 -5
  410. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  411. package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +10 -2
  412. package/vscode/src/vs/platform/product/common/product.js +3 -3
  413. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +13 -1
  414. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  415. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  416. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +9 -0
  417. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +15 -4
  418. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +77 -15
  419. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +6 -6
  420. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  421. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  422. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  423. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +1 -1
  424. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +1 -0
  425. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +5 -1
  426. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +19 -0
  427. package/vscode/src/vs/platform/remote/common/remoteHosts.d.ts +13 -0
  428. package/vscode/src/vs/platform/remote/common/remoteHosts.js +11 -1
  429. package/vscode/src/vs/platform/request/common/request.js +19 -19
  430. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +8 -2
  431. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +13 -2
  432. package/vscode/src/vs/platform/terminal/common/terminal.js +2 -0
  433. package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
  434. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +31 -31
  435. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  436. package/vscode/src/vs/platform/terminal/common/xterm/shellIntegrationAddon.d.ts +0 -13
  437. package/vscode/src/vs/platform/terminal/common/xterm/shellIntegrationAddon.js +2 -2
  438. package/vscode/src/vs/platform/theme/browser/defaultStyles.js +3 -3
  439. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  440. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
  441. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  442. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  443. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +51 -51
  444. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  445. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +8 -8
  446. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  447. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  448. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  449. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  450. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  451. package/vscode/src/vs/platform/theme/common/sizeRegistry.d.ts +2 -0
  452. package/vscode/src/vs/platform/theme/common/sizeUtils.d.ts +90 -0
  453. package/vscode/src/vs/platform/theme/common/sizeUtils.js +142 -0
  454. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.d.ts +11 -0
  455. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +18 -0
  456. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  457. package/vscode/src/vs/platform/tunnel/common/tunnel.js +4 -3
  458. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  459. package/vscode/src/vs/platform/update/common/update.d.ts +14 -6
  460. package/vscode/src/vs/platform/update/common/update.js +4 -3
  461. package/vscode/src/vs/platform/update/common/update.service.d.ts +5 -2
  462. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  463. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  464. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  465. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  466. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  467. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  468. package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.d.ts +25 -0
  469. package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.service.d.ts +28 -0
  470. package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.service.js +6 -0
  471. package/vscode/src/vs/platform/userInteraction/browser/userInteractionServiceImpl.d.ts +13 -0
  472. package/vscode/src/vs/platform/userInteraction/browser/userInteractionServiceImpl.js +62 -0
  473. package/vscode/src/vs/platform/window/common/window.d.ts +1 -0
  474. package/vscode/src/vs/platform/workspace/common/workspace.d.ts +1 -7
  475. package/vscode/src/vs/platform/workspace/common/workspace.js +3 -16
  476. package/vscode/src/vs/platform/workspace/common/workspace.service.d.ts +4 -0
  477. package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.d.ts +47 -0
  478. package/vscode/src/vs/{workbench/services/layout/common/workbenchModeService.service.js → sessions/contrib/agentFeedback/browser/agentFeedbackService.service.js} +2 -2
  479. package/vscode/src/vs/sessions/contrib/chat/browser/sessionTargetPicker.d.ts +73 -0
  480. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.d.ts +37 -0
  481. package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.js +6 -0
  482. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.d.ts +47 -0
  483. package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.js +6 -0
  484. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
  485. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +145 -7
  486. package/vscode/src/vs/workbench/api/common/extHost.common.services.js +6 -0
  487. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +250 -12
  488. package/vscode/src/vs/workbench/api/common/extHost.protocol.js +17 -3
  489. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +6 -5
  490. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +23 -3
  491. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +68 -5
  492. package/vscode/src/vs/workbench/api/common/extHostChatContext.js +34 -13
  493. package/vscode/src/vs/workbench/api/common/extHostChatDebug.d.ts +22 -0
  494. package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +287 -0
  495. package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +4 -12
  496. package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +158 -139
  497. package/vscode/src/vs/workbench/api/common/extHostComments.js +1 -0
  498. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  499. package/vscode/src/vs/workbench/api/common/extHostDocuments.d.ts +1 -1
  500. package/vscode/src/vs/workbench/api/common/extHostDocuments.js +6 -6
  501. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +6 -3
  502. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.d.ts +31 -0
  503. package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +167 -0
  504. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +1 -0
  505. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +41 -3
  506. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +0 -3
  507. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
  508. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +7 -4
  509. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  510. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -0
  511. package/vscode/src/vs/workbench/api/common/extHostMcp.js +15 -1
  512. package/vscode/src/vs/workbench/api/common/extHostMeteredConnection.d.ts +19 -0
  513. package/vscode/src/vs/workbench/api/common/extHostMeteredConnection.js +28 -0
  514. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  515. package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +6 -3
  516. package/vscode/src/vs/workbench/api/common/extHostPower.d.ts +45 -0
  517. package/vscode/src/vs/workbench/api/common/extHostPower.js +88 -0
  518. package/vscode/src/vs/workbench/api/common/extHostSCM.js +3 -0
  519. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +4 -2
  520. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -1
  521. package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
  522. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +46 -12
  523. package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +3 -3
  524. package/vscode/src/vs/workbench/api/common/extHostTextEditors.js +7 -7
  525. package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +11 -24
  526. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +3 -3
  527. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +11 -5
  528. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +173 -16
  529. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +159 -8
  530. package/vscode/src/vs/workbench/api/common/extHostTypes.js +132 -7
  531. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +0 -1
  532. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -10
  533. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  534. package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
  535. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +130 -130
  536. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  537. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  538. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  539. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  540. package/vscode/src/vs/workbench/browser/contextkeys.d.ts +2 -8
  541. package/vscode/src/vs/workbench/browser/contextkeys.js +8 -26
  542. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  543. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  544. package/vscode/src/vs/workbench/browser/media/style.css +14 -1
  545. package/vscode/src/vs/workbench/browser/panecomposite.d.ts +1 -0
  546. package/vscode/src/vs/workbench/browser/panecomposite.js +3 -1
  547. package/vscode/src/vs/workbench/browser/part.d.ts +1 -1
  548. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.d.ts +15 -4
  549. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +112 -33
  550. package/vscode/src/vs/workbench/browser/parts/activitybar/media/activityaction.css +26 -6
  551. package/vscode/src/vs/workbench/browser/parts/activitybar/media/activitybarpart.css +10 -1
  552. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +44 -40
  553. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.d.ts +2 -0
  554. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +39 -6
  555. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  556. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +13 -13
  557. package/vscode/src/vs/workbench/browser/parts/compositePart.d.ts +1 -1
  558. package/vscode/src/vs/workbench/browser/parts/compositePart.js +23 -17
  559. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.d.ts +11 -0
  560. package/vscode/src/vs/{platform/dialogs/browser → workbench/browser/parts/dialogs}/dialog.js +12 -10
  561. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.d.ts +1 -0
  562. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +19 -7
  563. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  564. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  565. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  566. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  567. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +3 -3
  568. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +8 -10
  569. package/vscode/src/vs/workbench/browser/parts/editor/editor.d.ts +3 -2
  570. package/vscode/src/vs/workbench/browser/parts/editor/editor.js +2 -0
  571. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +135 -135
  572. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.d.ts +6 -0
  573. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +220 -20
  574. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.d.ts +3 -1
  575. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +14 -6
  576. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  577. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +13 -13
  578. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  579. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.d.ts +5 -5
  580. package/vscode/src/vs/workbench/browser/parts/editor/editorPart.js +16 -9
  581. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.d.ts +9 -2
  582. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +79 -22
  583. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  584. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  585. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  586. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +4 -3
  587. package/vscode/src/vs/workbench/browser/parts/editor/media/breadcrumbscontrol.css +4 -0
  588. package/vscode/src/vs/workbench/browser/parts/editor/media/editorgroupview.css +46 -0
  589. package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +142 -0
  590. package/vscode/src/vs/workbench/browser/parts/editor/media/multieditortabscontrol.css +8 -0
  591. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +64 -0
  592. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +405 -0
  593. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  594. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  595. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  596. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  597. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  598. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +21 -20
  599. package/vscode/src/vs/workbench/browser/parts/media/paneCompositePart.css +9 -1
  600. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsCenter.css +14 -2
  601. package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsToasts.css +19 -5
  602. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.d.ts +12 -1
  603. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +49 -18
  604. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  605. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.d.ts +10 -1
  606. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +87 -28
  607. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +92 -11
  608. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  609. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.d.ts +5 -1
  610. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +58 -25
  611. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.d.ts +8 -1
  612. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +62 -20
  613. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.d.ts +3 -1
  614. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +24 -8
  615. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.d.ts +3 -2
  616. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +9 -8
  617. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.d.ts +13 -7
  618. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +89 -68
  619. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +38 -50
  620. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +6 -4
  621. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  622. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.d.ts +2 -0
  623. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +44 -7
  624. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +21 -21
  625. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +23 -14
  626. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +3 -3
  627. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  628. package/vscode/src/vs/workbench/browser/parts/views/media/paneviewlet.css +1 -1
  629. package/vscode/src/vs/workbench/browser/parts/views/media/views.css +33 -2
  630. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +8 -7
  631. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.d.ts +19 -1
  632. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +27 -4
  633. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +7 -5
  634. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +178 -174
  635. package/vscode/src/vs/workbench/browser/parts/visibleViewContainersTracker.d.ts +29 -0
  636. package/vscode/src/vs/workbench/browser/parts/visibleViewContainersTracker.js +104 -0
  637. package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
  638. package/vscode/src/vs/workbench/browser/window.js +14 -14
  639. package/vscode/src/vs/workbench/browser/workbench.contribution.js +317 -225
  640. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  641. package/vscode/src/vs/workbench/common/contextkeys.d.ts +4 -2
  642. package/vscode/src/vs/workbench/common/contextkeys.js +78 -76
  643. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  644. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +4 -1
  645. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  646. package/vscode/src/vs/workbench/common/editor.d.ts +7 -1
  647. package/vscode/src/vs/workbench/common/editor.js +5 -4
  648. package/vscode/src/vs/workbench/common/notifications.d.ts +11 -0
  649. package/vscode/src/vs/workbench/common/notifications.js +19 -1
  650. package/vscode/src/vs/workbench/common/theme.d.ts +1 -0
  651. package/vscode/src/vs/workbench/common/theme.js +161 -160
  652. package/vscode/src/vs/workbench/common/views.d.ts +32 -5
  653. package/vscode/src/vs/workbench/common/views.js +16 -12
  654. package/vscode/src/vs/workbench/common/views.service.d.ts +1 -0
  655. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +4 -2
  656. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +170 -152
  657. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  658. package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +1 -0
  659. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +40 -0
  660. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +524 -102
  661. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +4 -6
  662. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +26 -18
  663. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +9 -2
  664. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +34 -12
  665. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentResolveService.service.d.ts +1 -0
  666. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgetRegistry.service.d.ts +19 -0
  667. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgetRegistry.service.js +6 -0
  668. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatDynamicVariables.d.ts +44 -0
  669. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatDynamicVariables.js +243 -0
  670. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  671. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatVariables.d.ts +15 -0
  672. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatVariables.js +76 -0
  673. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +48 -0
  674. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +9 -0
  675. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  676. package/vscode/src/vs/workbench/contrib/chat/browser/chatTipService.service.d.ts +73 -7
  677. package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.js +2 -2
  678. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.d.ts +3 -1
  679. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +30 -17
  680. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +24 -1
  681. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +137 -66
  682. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +71 -0
  683. package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.js +6 -0
  684. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +40 -4
  685. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +3 -3
  686. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.d.ts +91 -0
  687. package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.js +6 -0
  688. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +10 -1
  689. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +41 -13
  690. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +123 -5
  691. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.js +4 -2
  692. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +27 -13
  693. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +11 -6
  694. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +36 -13
  695. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +34 -9
  696. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +29 -11
  697. package/vscode/src/vs/workbench/contrib/chat/common/contextContrib/chatContext.d.ts +3 -2
  698. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  699. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  700. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +52 -6
  701. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +253 -32
  702. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +33 -3
  703. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +21 -6
  704. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +104 -12
  705. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +22 -0
  706. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +26 -0
  707. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.d.ts +71 -0
  708. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +298 -0
  709. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.d.ts +1 -0
  710. package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.js +5 -0
  711. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +17 -33
  712. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +10 -73
  713. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.service.d.ts +1 -1
  714. package/vscode/src/vs/workbench/contrib/chat/common/participants/chatSlashCommands.service.d.ts +2 -2
  715. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.d.ts +23 -0
  716. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +64 -0
  717. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.js +6 -0
  718. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.d.ts +10 -0
  719. package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.js +6 -0
  720. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +20 -0
  721. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.js +6 -0
  722. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +21 -0
  723. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.js +6 -0
  724. package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginSource.d.ts +53 -0
  725. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +7 -1
  726. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +35 -20
  727. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +4 -0
  728. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -0
  729. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +10 -1
  730. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +20 -2
  731. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.d.ts +54 -76
  732. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +221 -158
  733. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.d.ts +34 -0
  734. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +94 -0
  735. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.d.ts +67 -0
  736. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +565 -0
  737. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +21 -36
  738. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +148 -111
  739. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +6 -0
  740. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +8 -1
  741. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +60 -18
  742. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +3 -9
  743. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +30 -7
  744. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptEditHelper.d.ts +2 -2
  745. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptEditHelper.js +1 -1
  746. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptsServiceUtils.d.ts +7 -0
  747. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptsServiceUtils.js +12 -1
  748. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.d.ts +5 -1
  749. package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +15 -3
  750. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +57 -0
  751. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +544 -0
  752. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.d.ts +3 -0
  753. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.js +40 -2
  754. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +9 -9
  755. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.d.ts +11 -0
  756. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.js +205 -0
  757. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.d.ts +3 -6
  758. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +40 -29
  759. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/taskCompleteTool.d.ts +12 -0
  760. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/taskCompleteTool.js +53 -0
  761. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +17 -1
  762. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatTodoListService.service.d.ts +1 -0
  763. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +3 -1
  764. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.service.d.ts +9 -0
  765. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +45 -25
  766. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +9 -11
  767. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +4 -4
  768. package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +3 -0
  769. package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.js +12 -1
  770. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.service.d.ts +15 -0
  771. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.service.js +6 -0
  772. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
  773. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  774. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +1 -1
  775. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  776. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  777. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  778. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.css +1 -1
  779. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.d.ts +19 -1
  780. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +35 -11
  781. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  782. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  783. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.d.ts +1 -3
  784. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +9 -11
  785. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  786. package/vscode/src/vs/workbench/contrib/codeEditor/browser/suggestEnabledInput/suggestEnabledInput.js +2 -2
  787. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  788. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  789. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  790. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  791. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +6 -6
  792. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  793. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  794. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  795. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +5 -4
  796. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  797. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +4 -4
  798. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  799. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +4 -4
  800. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +7 -4
  801. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  802. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.d.ts +2 -2
  803. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +30 -28
  804. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  805. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  806. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  807. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  808. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  809. package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.d.ts +2 -1
  810. package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.js +4 -1
  811. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  812. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  813. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  814. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
  815. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  816. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  817. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  818. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +14 -8
  819. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  820. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  821. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +5 -8
  822. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +4 -3
  823. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  824. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  825. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  826. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  827. package/vscode/src/vs/workbench/contrib/debug/browser/media/repl.css +7 -2
  828. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +19 -19
  829. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  830. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +11 -11
  831. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +3 -1
  832. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +68 -68
  833. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +7 -9
  834. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  835. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  836. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +2 -2
  837. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  838. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  839. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  840. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
  841. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  842. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  843. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +49 -47
  844. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  845. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  846. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  847. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +159 -147
  848. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +181 -181
  849. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  850. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  851. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  852. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.d.ts +1 -0
  853. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +29 -25
  854. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsList.js +4 -3
  855. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  856. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.d.ts +10 -2
  857. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +93 -13
  858. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +4 -4
  859. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +92 -91
  860. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.d.ts +2 -0
  861. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +24 -6
  862. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.d.ts +7 -0
  863. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +58 -31
  864. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.d.ts +3 -1
  865. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +134 -82
  866. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  867. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extension.css +24 -3
  868. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +1 -1
  869. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css +34 -9
  870. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  871. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  872. package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +2 -1
  873. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +6 -0
  874. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +3 -2
  875. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  876. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  877. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  878. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
  879. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  880. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  881. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  882. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  883. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  884. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  885. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  886. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  887. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  888. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  889. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  890. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  891. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
  892. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
  893. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  894. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  895. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  896. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  897. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +18 -17
  898. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  899. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  900. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  901. package/vscode/src/vs/workbench/contrib/files/common/explorerModel.js +1 -0
  902. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  903. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  904. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  905. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  906. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  907. package/vscode/src/vs/workbench/contrib/git/browser/gitService.d.ts +25 -0
  908. package/vscode/src/vs/workbench/contrib/git/browser/gitService.js +61 -0
  909. package/vscode/src/vs/workbench/contrib/git/common/gitService.service.d.ts +10 -0
  910. package/vscode/src/vs/workbench/contrib/git/common/gitService.service.js +6 -0
  911. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  912. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  913. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  914. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +71 -69
  915. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.d.ts +259 -0
  916. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +1225 -0
  917. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.d.ts +72 -0
  918. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +996 -0
  919. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.d.ts +17 -0
  920. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +49 -0
  921. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.d.ts +5 -0
  922. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +12 -0
  923. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.d.ts +88 -0
  924. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +464 -0
  925. package/vscode/src/vs/workbench/contrib/mcp/browser/media/mcpServerEditor.css +94 -0
  926. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +118 -31
  927. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.d.ts +11 -0
  928. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.d.ts +26 -0
  929. package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.js +6 -0
  930. package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.service.d.ts +13 -0
  931. package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.service.js +6 -0
  932. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.d.ts +15 -3
  933. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +155 -19
  934. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTaskManager.js +1 -1
  935. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -3
  936. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +15 -12
  937. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +1 -1
  938. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypesUtils.js +1 -0
  939. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +1 -2917
  940. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  941. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  942. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  943. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  944. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.d.ts +1 -0
  945. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +55 -0
  946. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.d.ts +13 -0
  947. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +62 -0
  948. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  949. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  950. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  951. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/findModel.js +1 -1
  952. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.css +1 -1
  953. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +19 -18
  954. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +2 -2
  955. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  956. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  957. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  958. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  959. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +3 -3
  960. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +7 -7
  961. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +1 -1
  962. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +2 -4
  963. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +5 -5
  964. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +1 -1
  965. package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebook.css +13 -1
  966. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +4 -4
  967. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  968. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  969. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  970. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  971. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  972. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  973. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  974. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  975. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  976. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  977. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  978. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  979. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  980. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModelImpl.js +1 -1
  981. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  982. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  983. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  984. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  985. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +4 -5
  986. package/vscode/src/vs/workbench/contrib/preferences/browser/media/keybindings.css +3 -0
  987. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  988. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +11 -11
  989. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.d.ts +1 -1
  990. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +151 -57
  991. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.d.ts +1 -1
  992. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.js +16 -4
  993. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +0 -1
  994. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -6
  995. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  996. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +18 -17
  997. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  998. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +84 -84
  999. package/vscode/src/vs/workbench/contrib/remote/browser/urlFinder.d.ts +15 -2
  1000. package/vscode/src/vs/workbench/contrib/remote/browser/urlFinder.js +28 -5
  1001. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  1002. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  1003. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  1004. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  1005. package/vscode/src/vs/workbench/contrib/search/browser/media/searchview.css +3 -3
  1006. package/vscode/src/vs/workbench/contrib/search/browser/notebookSearch/notebookSearchModel.js +1 -1
  1007. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  1008. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  1009. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
  1010. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  1011. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +6 -6
  1012. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  1013. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  1014. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  1015. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  1016. package/vscode/src/vs/workbench/contrib/search/browser/searchTreeModel/fileMatch.js +1 -1
  1017. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  1018. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.d.ts +15 -0
  1019. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +33 -10
  1020. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  1021. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  1022. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  1023. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  1024. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  1025. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  1026. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  1027. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  1028. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +433 -0
  1029. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +1637 -0
  1030. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +514 -0
  1031. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +1796 -0
  1032. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  1033. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.d.ts +1 -0
  1034. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  1035. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +18 -14
  1036. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +30 -27
  1037. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +1 -0
  1038. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +6 -7
  1039. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +4 -4
  1040. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  1041. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.d.ts +2 -1
  1042. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +195 -87
  1043. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  1044. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.d.ts +5 -3
  1045. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +17 -9
  1046. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  1047. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  1048. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  1049. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +2 -0
  1050. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  1051. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  1052. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +71 -61
  1053. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  1054. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  1055. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
  1056. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.d.ts +6 -0
  1057. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +21 -0
  1058. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  1059. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  1060. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  1061. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  1062. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  1063. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  1064. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  1065. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.d.ts +2 -1
  1066. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  1067. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +6 -3
  1068. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.d.ts +10 -0
  1069. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +118 -0
  1070. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +10 -4
  1071. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  1072. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +6 -2
  1073. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +193 -100
  1074. package/vscode/src/vs/workbench/services/assignment/common/assignmentService.d.ts +1 -1
  1075. package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
  1076. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
  1077. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  1078. package/vscode/src/vs/workbench/services/banner/browser/bannerService.d.ts +1 -1
  1079. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +2 -0
  1080. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +9 -0
  1081. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +34 -17
  1082. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +3 -0
  1083. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  1084. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  1085. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  1086. package/vscode/src/vs/workbench/services/editor/common/editorGroupColumn.js +2 -2
  1087. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.d.ts +7 -7
  1088. package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.js +39 -20
  1089. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +59 -3
  1090. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.js +6 -1
  1091. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +14 -1
  1092. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  1093. package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +6 -1
  1094. package/vscode/src/vs/workbench/services/editor/common/editorService.js +2 -1
  1095. package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +1 -1
  1096. package/vscode/src/vs/workbench/services/environment/browser/environmentService.d.ts +1 -1
  1097. package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +16 -9
  1098. package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +1 -0
  1099. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  1100. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  1101. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  1102. package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +1 -1
  1103. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +90 -90
  1104. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  1105. package/vscode/src/vs/workbench/services/host/browser/host.d.ts +11 -0
  1106. package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +11 -0
  1107. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  1108. package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +3 -0
  1109. package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +3 -0
  1110. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  1111. package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.d.ts +87 -0
  1112. package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.js +702 -0
  1113. package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.d.ts +1 -1
  1114. package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +3 -0
  1115. package/vscode/src/vs/workbench/services/power/common/powerService.d.ts +12 -0
  1116. package/vscode/src/vs/workbench/services/power/common/powerService.service.d.ts +25 -0
  1117. package/vscode/src/vs/workbench/services/power/common/powerService.service.js +6 -0
  1118. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  1119. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  1120. package/vscode/src/vs/workbench/services/preferences/common/preferences.d.ts +1 -0
  1121. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  1122. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  1123. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.d.ts +1 -1
  1124. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +13 -13
  1125. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  1126. package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +16 -14
  1127. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  1128. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  1129. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  1130. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  1131. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  1132. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  1133. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +9 -9
  1134. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +10 -8
  1135. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  1136. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  1137. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  1138. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  1139. package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.d.ts +12 -0
  1140. package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +7 -0
  1141. package/vscode-dts/vscode.d.ts +26 -1
  1142. package/vscode-dts/vscode.proposed.chatContextProvider.d.ts +47 -11
  1143. package/vscode-dts/vscode.proposed.chatDebug.d.ts +657 -0
  1144. package/vscode-dts/vscode.proposed.chatHooks.d.ts +1 -1
  1145. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +98 -12
  1146. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +36 -6
  1147. package/vscode-dts/vscode.proposed.chatPromptFiles.d.ts +33 -0
  1148. package/vscode-dts/vscode.proposed.chatProvider.d.ts +16 -1
  1149. package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +90 -15
  1150. package/vscode-dts/vscode.proposed.d.ts +4 -1
  1151. package/vscode-dts/{vscode.proposed.envIsAppPortable.d.ts → vscode.proposed.envIsConnectionMetered.d.ts} +7 -7
  1152. package/vscode-dts/vscode.proposed.environmentPower.d.ts +166 -0
  1153. package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +17 -0
  1154. package/vscode-dts/vscode.proposed.languageModelToolSupportsModel.d.ts +1 -1
  1155. package/vscode-dts/vscode.proposed.mcpServerDefinitions.d.ts +28 -0
  1156. package/vscode-dts/vscode.proposed.terminalTitle.d.ts +37 -0
  1157. package/vscode/src/vs/platform/assignment/common/assignment.d.ts +0 -85
  1158. package/vscode/src/vs/platform/dialogs/browser/dialog.d.ts +0 -10
  1159. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatContentParts.d.ts +0 -44
  1160. package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.d.ts +0 -16
  1161. package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.js +0 -20
  1162. package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.service.d.ts +0 -27
  1163. package/vscode/src/vs/workbench/services/views/browser/viewsService.d.ts +0 -77
  1164. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +0 -733
  1165. /package/vscode/src/vs/{workbench/contrib → platform}/mcp/common/modelContextProtocol.js +0 -0
  1166. /package/vscode/src/vs/workbench/contrib/url/{browser → common}/trustedDomainService.service.d.ts +0 -0
  1167. /package/vscode/src/vs/workbench/contrib/url/{browser → common}/trustedDomainService.service.js +0 -0
@@ -292,11 +292,11 @@ class EditorAccessibilitySupport extends BaseEditorOption {
292
292
  {
293
293
  type: "string",
294
294
  enum: ["auto", "on", "off"],
295
- enumDescriptions: [( localize(270, "Use platform APIs to detect when a Screen Reader is attached.")), ( localize(271, "Optimize for usage with a Screen Reader.")), ( localize(272, "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
- 273,
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(274, "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
- 275,
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
- 276,
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
- 277,
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(278, "Never seed search string from the editor selection.")), ( localize(
486
- 279,
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(280, "Only seed search string from the editor selection."))],
488
+ )), ( localize(291, "Only seed search string from the editor selection."))],
489
489
  description: ( localize(
490
- 281,
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(282, "Never turn on Find in Selection automatically (default).")), ( localize(283, "Always turn on Find in Selection automatically.")), ( localize(
499
- 284,
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
- 285,
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
- 286,
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
- 287,
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
- 288,
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(289, "Do not store search history from the find widget.")), ( localize(290, "Store search history across the active workspace"))],
537
- description: ( localize(291, "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(292, "Do not store history from the replace widget.")), ( localize(293, "Store replace history across the active workspace"))],
544
- description: ( localize(294, "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(295, "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
- 296,
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
- 297,
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
- 298,
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
- 299,
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
- 300,
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
- 301,
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(302, "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
- 303,
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
- 304,
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(305, "Show Peek view of the results (default)")), ( localize(306, "Go to the primary result and show a Peek view")), ( localize(307, "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
- 308,
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
- 309,
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
- 310,
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
- 311,
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
- 312,
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
- 313,
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
- 314,
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
- 315,
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
- 316,
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
- 317,
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
- 318,
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(319, "Hover is enabled.")), ( localize(320, "Hover is disabled.")), ( localize(
996
- 321,
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(322, "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(323, "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
- 324,
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
- 325,
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(326, "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
- 327,
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
- 328,
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
- 329,
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(330, "Disable the code action menu.")), ( localize(331, "Show the code action menu when the cursor is on lines with code.")), ( localize(
1431
- 332,
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(333, "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
- 334,
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(335, "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
- 336,
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
- 337,
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(338, "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(339, "Inlay hints are enabled")), ( localize(
1528
- 340,
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
- 341,
1542
+ 353,
1533
1543
  "Inlay hints are hidden by default and show when holding {0}",
1534
1544
  isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
1535
- )), ( localize(342, "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
- 343,
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
- 344,
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(345, "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
- 346,
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
- 347,
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(348, "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(349, "The minimap is always shown.")), ( localize(
1670
- 350,
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(351, "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(352, "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
- 353,
1690
+ 365,
1681
1691
  "The minimap has the same size as the editor contents (and might scroll)."
1682
1692
  )), ( localize(
1683
- 354,
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
- 355,
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(356, "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(357, "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(358, "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(359, "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(360, "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
- 361,
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
- 362,
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
- 363,
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
- 364,
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(365, "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
- 366,
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
- 367,
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
- 368,
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
- 369,
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
- 370,
1879
+ 382,
1870
1880
  "Controls whether the parameter hints menu cycles or closes when reaching the end of the list."
1871
1881
  ))
1872
1882
  }
@@ -1916,35 +1926,52 @@ class EditorQuickSuggestions extends BaseEditorOption {
1916
1926
  type: "boolean"
1917
1927
  }, {
1918
1928
  type: "string",
1919
- enum: ["on", "inline", "off"],
1920
- enumDescriptions: [( localize(371, "Quick suggestions show inside the suggest widget")), ( localize(372, "Quick suggestions show as ghost text")), ( localize(373, "Quick suggestions are disabled"))]
1929
+ enum: ["on", "inline", "off", "offWhenInlineCompletions"],
1930
+ enumDescriptions: [( localize(383, "Quick suggestions show inside the suggest widget")), ( localize(384, "Quick suggestions show as ghost text")), ( localize(385, "Quick suggestions are disabled")), ( localize(
1931
+ 386,
1932
+ "Quick suggestions are disabled when an inline completion provider is available"
1933
+ ))]
1921
1934
  }];
1922
1935
  super(EditorOption.quickSuggestions, "quickSuggestions", defaults, {
1923
- type: "object",
1924
- additionalProperties: false,
1925
- properties: {
1926
- strings: {
1927
- anyOf: types,
1928
- default: defaults.strings,
1929
- description: ( localize(374, "Enable quick suggestions inside strings."))
1930
- },
1931
- comments: {
1932
- anyOf: types,
1933
- default: defaults.comments,
1934
- description: ( localize(375, "Enable quick suggestions inside comments."))
1935
- },
1936
- other: {
1937
- anyOf: types,
1938
- default: defaults.other,
1939
- description: ( localize(376, "Enable quick suggestions outside of strings and comments."))
1936
+ anyOf: [{
1937
+ type: "boolean"
1938
+ }, {
1939
+ type: "string",
1940
+ enum: ["on", "inline", "off", "offWhenInlineCompletions"],
1941
+ enumDescriptions: [( localize(387, "Quick suggestions are enabled for all token types")), ( localize(388, "Quick suggestions show as ghost text for all token types")), ( localize(389, "Quick suggestions are disabled for all token types")), ( localize(
1942
+ 390,
1943
+ "Quick suggestions are disabled for all token types when an inline completion provider is available"
1944
+ ))]
1945
+ }, {
1946
+ type: "object",
1947
+ additionalProperties: false,
1948
+ properties: {
1949
+ strings: {
1950
+ anyOf: types,
1951
+ default: defaults.strings,
1952
+ description: ( localize(391, "Enable quick suggestions inside strings."))
1953
+ },
1954
+ comments: {
1955
+ anyOf: types,
1956
+ default: defaults.comments,
1957
+ description: ( localize(392, "Enable quick suggestions inside comments."))
1958
+ },
1959
+ other: {
1960
+ anyOf: types,
1961
+ default: defaults.other,
1962
+ description: ( localize(393, "Enable quick suggestions outside of strings and comments."))
1963
+ }
1940
1964
  }
1941
- },
1965
+ }],
1942
1966
  default: defaults,
1943
1967
  markdownDescription: ( localize(
1944
- 377,
1968
+ 394,
1945
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.",
1946
1970
  "`#editor.suggestOnTriggerCharacters#`"
1947
- ))
1971
+ )),
1972
+ experiment: {
1973
+ mode: "auto"
1974
+ }
1948
1975
  });
1949
1976
  this.defaultValue = defaults;
1950
1977
  }
@@ -1957,6 +1984,15 @@ class EditorQuickSuggestions extends BaseEditorOption {
1957
1984
  other: value
1958
1985
  };
1959
1986
  }
1987
+ if (typeof input === "string") {
1988
+ const allowedValues = ["on", "inline", "off", "offWhenInlineCompletions"];
1989
+ const validated = stringSet(input, this.defaultValue.other, allowedValues);
1990
+ return {
1991
+ comments: validated,
1992
+ strings: validated,
1993
+ other: validated
1994
+ };
1995
+ }
1960
1996
  if (!input || typeof input !== "object") {
1961
1997
  return this.defaultValue;
1962
1998
  }
@@ -1965,7 +2001,7 @@ class EditorQuickSuggestions extends BaseEditorOption {
1965
2001
  comments,
1966
2002
  strings
1967
2003
  } = input;
1968
- const allowedValues = ["on", "inline", "off"];
2004
+ const allowedValues = ["on", "inline", "off", "offWhenInlineCompletions"];
1969
2005
  let validatedOther;
1970
2006
  let validatedComments;
1971
2007
  let validatedStrings;
@@ -2007,9 +2043,9 @@ class EditorRenderLineNumbersOption extends BaseEditorOption {
2007
2043
  }, {
2008
2044
  type: "string",
2009
2045
  enum: ["off", "on", "relative", "interval"],
2010
- enumDescriptions: [( localize(378, "Line numbers are not rendered.")), ( localize(379, "Line numbers are rendered as absolute number.")), ( localize(380, "Line numbers are rendered as distance in lines to cursor position.")), ( localize(381, "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."))],
2011
2047
  default: "on",
2012
- description: ( localize(382, "Controls the display of line numbers."))
2048
+ description: ( localize(399, "Controls the display of line numbers."))
2013
2049
  });
2014
2050
  }
2015
2051
  validate(lineNumbers) {
@@ -2051,7 +2087,7 @@ class EditorRulers extends BaseEditorOption {
2051
2087
  const columnSchema = {
2052
2088
  type: "number",
2053
2089
  description: ( localize(
2054
- 383,
2090
+ 400,
2055
2091
  "Number of monospace characters at which this editor ruler will render."
2056
2092
  ))
2057
2093
  };
@@ -2064,7 +2100,7 @@ class EditorRulers extends BaseEditorOption {
2064
2100
  column: columnSchema,
2065
2101
  color: {
2066
2102
  type: "string",
2067
- description: ( localize(384, "Color of this editor ruler.")),
2103
+ description: ( localize(401, "Color of this editor ruler.")),
2068
2104
  format: "color-hex"
2069
2105
  }
2070
2106
  }
@@ -2072,7 +2108,7 @@ class EditorRulers extends BaseEditorOption {
2072
2108
  },
2073
2109
  default: defaults,
2074
2110
  description: ( localize(
2075
- 385,
2111
+ 402,
2076
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."
2077
2113
  ))
2078
2114
  });
@@ -2147,37 +2183,37 @@ class EditorScrollbar extends BaseEditorOption {
2147
2183
  "editor.scrollbar.vertical": {
2148
2184
  type: "string",
2149
2185
  enum: ["auto", "visible", "hidden"],
2150
- enumDescriptions: [( localize(386, "The vertical scrollbar will be visible only when necessary.")), ( localize(387, "The vertical scrollbar will always be visible.")), ( localize(388, "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."))],
2151
2187
  default: "auto",
2152
- description: ( localize(389, "Controls the visibility of the vertical scrollbar."))
2188
+ description: ( localize(406, "Controls the visibility of the vertical scrollbar."))
2153
2189
  },
2154
2190
  "editor.scrollbar.horizontal": {
2155
2191
  type: "string",
2156
2192
  enum: ["auto", "visible", "hidden"],
2157
- enumDescriptions: [( localize(390, "The horizontal scrollbar will be visible only when necessary.")), ( localize(391, "The horizontal scrollbar will always be visible.")), ( localize(392, "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."))],
2158
2194
  default: "auto",
2159
- description: ( localize(393, "Controls the visibility of the horizontal scrollbar."))
2195
+ description: ( localize(410, "Controls the visibility of the horizontal scrollbar."))
2160
2196
  },
2161
2197
  "editor.scrollbar.verticalScrollbarSize": {
2162
2198
  type: "number",
2163
2199
  default: defaults.verticalScrollbarSize,
2164
- description: ( localize(394, "The width of the vertical scrollbar."))
2200
+ description: ( localize(411, "The width of the vertical scrollbar."))
2165
2201
  },
2166
2202
  "editor.scrollbar.horizontalScrollbarSize": {
2167
2203
  type: "number",
2168
2204
  default: defaults.horizontalScrollbarSize,
2169
- description: ( localize(395, "The height of the horizontal scrollbar."))
2205
+ description: ( localize(412, "The height of the horizontal scrollbar."))
2170
2206
  },
2171
2207
  "editor.scrollbar.scrollByPage": {
2172
2208
  type: "boolean",
2173
2209
  default: defaults.scrollByPage,
2174
- description: ( localize(396, "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."))
2175
2211
  },
2176
2212
  "editor.scrollbar.ignoreHorizontalScrollbarInContentHeight": {
2177
2213
  type: "boolean",
2178
2214
  default: defaults.ignoreHorizontalScrollbarInContentHeight,
2179
2215
  description: ( localize(
2180
- 397,
2216
+ 414,
2181
2217
  "When set, the horizontal scrollbar will not increase the size of the editor's content."
2182
2218
  ))
2183
2219
  }
@@ -2252,7 +2288,7 @@ class UnicodeHighlight extends BaseEditorOption {
2252
2288
  enum: [true, false, inUntrustedWorkspace],
2253
2289
  default: defaults.nonBasicASCII,
2254
2290
  description: ( localize(
2255
- 398,
2291
+ 415,
2256
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."
2257
2293
  ))
2258
2294
  },
@@ -2261,7 +2297,7 @@ class UnicodeHighlight extends BaseEditorOption {
2261
2297
  type: "boolean",
2262
2298
  default: defaults.invisibleCharacters,
2263
2299
  description: ( localize(
2264
- 399,
2300
+ 416,
2265
2301
  "Controls whether characters that just reserve space or have no width at all are highlighted."
2266
2302
  ))
2267
2303
  },
@@ -2270,7 +2306,7 @@ class UnicodeHighlight extends BaseEditorOption {
2270
2306
  type: "boolean",
2271
2307
  default: defaults.ambiguousCharacters,
2272
2308
  description: ( localize(
2273
- 400,
2309
+ 417,
2274
2310
  "Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."
2275
2311
  ))
2276
2312
  },
@@ -2280,7 +2316,7 @@ class UnicodeHighlight extends BaseEditorOption {
2280
2316
  enum: [true, false, inUntrustedWorkspace],
2281
2317
  default: defaults.includeComments,
2282
2318
  description: ( localize(
2283
- 401,
2319
+ 418,
2284
2320
  "Controls whether characters in comments should also be subject to Unicode highlighting."
2285
2321
  ))
2286
2322
  },
@@ -2290,7 +2326,7 @@ class UnicodeHighlight extends BaseEditorOption {
2290
2326
  enum: [true, false, inUntrustedWorkspace],
2291
2327
  default: defaults.includeStrings,
2292
2328
  description: ( localize(
2293
- 402,
2329
+ 419,
2294
2330
  "Controls whether characters in strings should also be subject to Unicode highlighting."
2295
2331
  ))
2296
2332
  },
@@ -2298,7 +2334,7 @@ class UnicodeHighlight extends BaseEditorOption {
2298
2334
  restricted: true,
2299
2335
  type: "object",
2300
2336
  default: defaults.allowedCharacters,
2301
- description: ( localize(403, "Defines allowed characters that are not being highlighted.")),
2337
+ description: ( localize(420, "Defines allowed characters that are not being highlighted.")),
2302
2338
  additionalProperties: {
2303
2339
  type: "boolean"
2304
2340
  }
@@ -2311,7 +2347,7 @@ class UnicodeHighlight extends BaseEditorOption {
2311
2347
  },
2312
2348
  default: defaults.allowedLocales,
2313
2349
  description: ( localize(
2314
- 404,
2350
+ 421,
2315
2351
  "Unicode characters that are common in allowed locales are not being highlighted."
2316
2352
  ))
2317
2353
  }
@@ -2414,7 +2450,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2414
2450
  type: "boolean",
2415
2451
  default: defaults.enabled,
2416
2452
  description: ( localize(
2417
- 405,
2453
+ 422,
2418
2454
  "Controls whether to automatically show inline suggestions in the editor."
2419
2455
  ))
2420
2456
  },
@@ -2423,19 +2459,19 @@ class InlineEditorSuggest extends BaseEditorOption {
2423
2459
  default: defaults.showToolbar,
2424
2460
  enum: ["always", "onHover", "never"],
2425
2461
  enumDescriptions: [( localize(
2426
- 406,
2462
+ 423,
2427
2463
  "Show the inline suggestion toolbar whenever an inline suggestion is shown."
2428
2464
  )), ( localize(
2429
- 407,
2465
+ 424,
2430
2466
  "Show the inline suggestion toolbar when hovering over an inline suggestion."
2431
- )), ( localize(408, "Never show the inline suggestion toolbar."))],
2432
- description: ( localize(409, "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."))
2433
2469
  },
2434
2470
  "editor.inlineSuggest.syntaxHighlightingEnabled": {
2435
2471
  type: "boolean",
2436
2472
  default: defaults.syntaxHighlightingEnabled,
2437
2473
  description: ( localize(
2438
- 410,
2474
+ 427,
2439
2475
  "Controls whether to show syntax highlighting for inline suggestions in the editor."
2440
2476
  ))
2441
2477
  },
@@ -2443,7 +2479,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2443
2479
  type: "boolean",
2444
2480
  default: defaults.suppressSuggestions,
2445
2481
  description: ( localize(
2446
- 411,
2482
+ 428,
2447
2483
  "Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
2448
2484
  ))
2449
2485
  },
@@ -2451,7 +2487,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2451
2487
  type: "boolean",
2452
2488
  default: defaults.suppressInSnippetMode,
2453
2489
  description: ( localize(
2454
- 412,
2490
+ 429,
2455
2491
  "Controls whether inline suggestions are suppressed when in snippet mode."
2456
2492
  ))
2457
2493
  },
@@ -2461,7 +2497,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2461
2497
  minimum: 0,
2462
2498
  maximum: 10000,
2463
2499
  description: ( localize(
2464
- 413,
2500
+ 430,
2465
2501
  "Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."
2466
2502
  ))
2467
2503
  },
@@ -2470,7 +2506,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2470
2506
  default: defaults.experimental.suppressInlineSuggestions,
2471
2507
  tags: ["experimental"],
2472
2508
  description: ( localize(
2473
- 414,
2509
+ 431,
2474
2510
  "Suppresses inline completions for specified extension IDs -- comma separated."
2475
2511
  )),
2476
2512
  experiment: {
@@ -2482,7 +2518,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2482
2518
  default: defaults.experimental.emptyResponseInformation,
2483
2519
  tags: ["experimental"],
2484
2520
  description: ( localize(
2485
- 415,
2521
+ 432,
2486
2522
  "Controls whether to send request information from the inline suggestion provider."
2487
2523
  )),
2488
2524
  experiment: {
@@ -2494,7 +2530,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2494
2530
  default: defaults.triggerCommandOnProviderChange,
2495
2531
  tags: ["experimental"],
2496
2532
  description: ( localize(
2497
- 416,
2533
+ 433,
2498
2534
  "Controls whether to trigger a command when the inline suggestion provider changes."
2499
2535
  )),
2500
2536
  experiment: {
@@ -2507,7 +2543,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2507
2543
  tags: ["experimental"],
2508
2544
  enum: ["always", "never", "whenSuggestListIsIncomplete"],
2509
2545
  description: ( localize(
2510
- 417,
2546
+ 434,
2511
2547
  "Controls whether to show inline suggestions when there is a suggest conflict."
2512
2548
  )),
2513
2549
  experiment: {
@@ -2517,13 +2553,13 @@ class InlineEditorSuggest extends BaseEditorOption {
2517
2553
  "editor.inlineSuggest.fontFamily": {
2518
2554
  type: "string",
2519
2555
  default: defaults.fontFamily,
2520
- description: ( localize(418, "Controls the font family of the inline suggestions."))
2556
+ description: ( localize(435, "Controls the font family of the inline suggestions."))
2521
2557
  },
2522
2558
  "editor.inlineSuggest.edits.allowCodeShifting": {
2523
2559
  type: "string",
2524
2560
  default: defaults.edits.allowCodeShifting,
2525
2561
  description: ( localize(
2526
- 419,
2562
+ 436,
2527
2563
  "Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
2528
2564
  )),
2529
2565
  enum: ["always", "horizontal", "never"],
@@ -2532,19 +2568,19 @@ class InlineEditorSuggest extends BaseEditorOption {
2532
2568
  "editor.inlineSuggest.edits.showLongDistanceHint": {
2533
2569
  type: "boolean",
2534
2570
  default: defaults.edits.showLongDistanceHint,
2535
- description: ( localize(420, "Controls whether long distance inline suggestions are shown.")),
2571
+ description: ( localize(437, "Controls whether long distance inline suggestions are shown.")),
2536
2572
  tags: ["nextEditSuggestions", "experimental"]
2537
2573
  },
2538
2574
  "editor.inlineSuggest.edits.renderSideBySide": {
2539
2575
  type: "string",
2540
2576
  default: defaults.edits.renderSideBySide,
2541
- description: ( localize(421, "Controls whether larger suggestions can be shown side by side.")),
2577
+ description: ( localize(438, "Controls whether larger suggestions can be shown side by side.")),
2542
2578
  enum: ["auto", "never"],
2543
2579
  enumDescriptions: [( localize(
2544
- 422,
2580
+ 439,
2545
2581
  "Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
2546
2582
  )), ( localize(
2547
- 423,
2583
+ 440,
2548
2584
  "Larger suggestions are never shown side by side and will always be shown below."
2549
2585
  ))],
2550
2586
  tags: ["nextEditSuggestions"]
@@ -2553,7 +2589,7 @@ class InlineEditorSuggest extends BaseEditorOption {
2553
2589
  type: "boolean",
2554
2590
  default: defaults.edits.showCollapsed,
2555
2591
  description: ( localize(
2556
- 424,
2592
+ 441,
2557
2593
  "Controls whether the suggestion will show as collapsed until jumping to it."
2558
2594
  )),
2559
2595
  tags: ["nextEditSuggestions"]
@@ -2648,7 +2684,7 @@ class BracketPairColorization extends BaseEditorOption {
2648
2684
  type: "boolean",
2649
2685
  default: defaults.enabled,
2650
2686
  markdownDescription: ( localize(
2651
- 425,
2687
+ 442,
2652
2688
  "Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
2653
2689
  "`#workbench.colorCustomizations#`"
2654
2690
  ))
@@ -2657,7 +2693,7 @@ class BracketPairColorization extends BaseEditorOption {
2657
2693
  type: "boolean",
2658
2694
  default: defaults.independentColorPoolPerBracketType,
2659
2695
  description: ( localize(
2660
- 426,
2696
+ 443,
2661
2697
  "Controls whether each bracket type has its own independent color pool."
2662
2698
  ))
2663
2699
  }
@@ -2691,43 +2727,43 @@ class GuideOptions extends BaseEditorOption {
2691
2727
  "editor.guides.bracketPairs": {
2692
2728
  type: ["boolean", "string"],
2693
2729
  enum: [true, "active", false],
2694
- enumDescriptions: [( localize(427, "Enables bracket pair guides.")), ( localize(428, "Enables bracket pair guides only for the active bracket pair.")), ( localize(429, "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."))],
2695
2731
  default: defaults.bracketPairs,
2696
- description: ( localize(430, "Controls whether bracket pair guides are enabled or not."))
2732
+ description: ( localize(447, "Controls whether bracket pair guides are enabled or not."))
2697
2733
  },
2698
2734
  "editor.guides.bracketPairsHorizontal": {
2699
2735
  type: ["boolean", "string"],
2700
2736
  enum: [true, "active", false],
2701
2737
  enumDescriptions: [( localize(
2702
- 431,
2738
+ 448,
2703
2739
  "Enables horizontal guides as addition to vertical bracket pair guides."
2704
- )), ( localize(432, "Enables horizontal guides only for the active bracket pair.")), ( localize(433, "Disables horizontal bracket pair guides."))],
2740
+ )), ( localize(449, "Enables horizontal guides only for the active bracket pair.")), ( localize(450, "Disables horizontal bracket pair guides."))],
2705
2741
  default: defaults.bracketPairsHorizontal,
2706
- description: ( localize(434, "Controls whether horizontal bracket pair guides are enabled or not."))
2742
+ description: ( localize(451, "Controls whether horizontal bracket pair guides are enabled or not."))
2707
2743
  },
2708
2744
  "editor.guides.highlightActiveBracketPair": {
2709
2745
  type: "boolean",
2710
2746
  default: defaults.highlightActiveBracketPair,
2711
2747
  description: ( localize(
2712
- 435,
2748
+ 452,
2713
2749
  "Controls whether the editor should highlight the active bracket pair."
2714
2750
  ))
2715
2751
  },
2716
2752
  "editor.guides.indentation": {
2717
2753
  type: "boolean",
2718
2754
  default: defaults.indentation,
2719
- description: ( localize(436, "Controls whether the editor should render indent guides."))
2755
+ description: ( localize(453, "Controls whether the editor should render indent guides."))
2720
2756
  },
2721
2757
  "editor.guides.highlightActiveIndentation": {
2722
2758
  type: ["boolean", "string"],
2723
2759
  enum: [true, "always", false],
2724
- enumDescriptions: [( localize(437, "Highlights the active indent guide.")), ( localize(
2725
- 438,
2760
+ enumDescriptions: [( localize(454, "Highlights the active indent guide.")), ( localize(
2761
+ 455,
2726
2762
  "Highlights the active indent guide even if bracket guides are highlighted."
2727
- )), ( localize(439, "Do not highlight the active indent guide."))],
2763
+ )), ( localize(456, "Do not highlight the active indent guide."))],
2728
2764
  default: defaults.highlightActiveIndentation,
2729
2765
  description: ( localize(
2730
- 440,
2766
+ 457,
2731
2767
  "Controls whether the editor should highlight the active indent guide."
2732
2768
  ))
2733
2769
  }
@@ -2817,10 +2853,10 @@ class EditorSuggest extends BaseEditorOption {
2817
2853
  "editor.suggest.insertMode": {
2818
2854
  type: "string",
2819
2855
  enum: ["insert", "replace"],
2820
- enumDescriptions: [( localize(441, "Insert suggestion without overwriting text right of the cursor.")), ( localize(442, "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."))],
2821
2857
  default: defaults.insertMode,
2822
2858
  description: ( localize(
2823
- 443,
2859
+ 460,
2824
2860
  "Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
2825
2861
  ))
2826
2862
  },
@@ -2828,7 +2864,7 @@ class EditorSuggest extends BaseEditorOption {
2828
2864
  type: "boolean",
2829
2865
  default: defaults.filterGraceful,
2830
2866
  description: ( localize(
2831
- 444,
2867
+ 461,
2832
2868
  "Controls whether filtering and sorting suggestions accounts for small typos."
2833
2869
  ))
2834
2870
  },
@@ -2836,7 +2872,7 @@ class EditorSuggest extends BaseEditorOption {
2836
2872
  type: "boolean",
2837
2873
  default: defaults.localityBonus,
2838
2874
  description: ( localize(
2839
- 445,
2875
+ 462,
2840
2876
  "Controls whether sorting favors words that appear close to the cursor."
2841
2877
  ))
2842
2878
  },
@@ -2844,7 +2880,7 @@ class EditorSuggest extends BaseEditorOption {
2844
2880
  type: "boolean",
2845
2881
  default: defaults.shareSuggestSelections,
2846
2882
  markdownDescription: ( localize(
2847
- 446,
2883
+ 463,
2848
2884
  "Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
2849
2885
  ))
2850
2886
  },
@@ -2852,18 +2888,18 @@ class EditorSuggest extends BaseEditorOption {
2852
2888
  type: "string",
2853
2889
  enum: ["always", "never", "whenTriggerCharacter", "whenQuickSuggestion"],
2854
2890
  enumDescriptions: [( localize(
2855
- 447,
2891
+ 464,
2856
2892
  "Always select a suggestion when automatically triggering IntelliSense."
2857
2893
  )), ( localize(
2858
- 448,
2894
+ 465,
2859
2895
  "Never select a suggestion when automatically triggering IntelliSense."
2860
2896
  )), ( localize(
2861
- 449,
2897
+ 466,
2862
2898
  "Select a suggestion only when triggering IntelliSense from a trigger character."
2863
- )), ( localize(450, "Select a suggestion only when triggering IntelliSense as you type."))],
2899
+ )), ( localize(467, "Select a suggestion only when triggering IntelliSense as you type."))],
2864
2900
  default: defaults.selectionMode,
2865
2901
  markdownDescription: ( localize(
2866
- 451,
2902
+ 468,
2867
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`.",
2868
2904
  "`#editor.quickSuggestions#`",
2869
2905
  "`#editor.suggestOnTriggerCharacters#`"
@@ -2872,197 +2908,197 @@ class EditorSuggest extends BaseEditorOption {
2872
2908
  "editor.suggest.snippetsPreventQuickSuggestions": {
2873
2909
  type: "boolean",
2874
2910
  default: defaults.snippetsPreventQuickSuggestions,
2875
- description: ( localize(452, "Controls whether an active snippet prevents quick suggestions."))
2911
+ description: ( localize(469, "Controls whether an active snippet prevents quick suggestions."))
2876
2912
  },
2877
2913
  "editor.suggest.showIcons": {
2878
2914
  type: "boolean",
2879
2915
  default: defaults.showIcons,
2880
- description: ( localize(453, "Controls whether to show or hide icons in suggestions."))
2916
+ description: ( localize(470, "Controls whether to show or hide icons in suggestions."))
2881
2917
  },
2882
2918
  "editor.suggest.showStatusBar": {
2883
2919
  type: "boolean",
2884
2920
  default: defaults.showStatusBar,
2885
2921
  description: ( localize(
2886
- 454,
2922
+ 471,
2887
2923
  "Controls the visibility of the status bar at the bottom of the suggest widget."
2888
2924
  ))
2889
2925
  },
2890
2926
  "editor.suggest.preview": {
2891
2927
  type: "boolean",
2892
2928
  default: defaults.preview,
2893
- description: ( localize(455, "Controls whether to preview the suggestion outcome in the editor."))
2929
+ description: ( localize(472, "Controls whether to preview the suggestion outcome in the editor."))
2894
2930
  },
2895
2931
  "editor.suggest.showInlineDetails": {
2896
2932
  type: "boolean",
2897
2933
  default: defaults.showInlineDetails,
2898
2934
  description: ( localize(
2899
- 456,
2935
+ 473,
2900
2936
  "Controls whether suggest details show inline with the label or only in the details widget."
2901
2937
  ))
2902
2938
  },
2903
2939
  "editor.suggest.maxVisibleSuggestions": {
2904
2940
  type: "number",
2905
- deprecationMessage: ( localize(457, "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."))
2906
2942
  },
2907
2943
  "editor.suggest.filteredTypes": {
2908
2944
  type: "object",
2909
2945
  deprecationMessage: ( localize(
2910
- 458,
2946
+ 475,
2911
2947
  "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
2912
2948
  ))
2913
2949
  },
2914
2950
  "editor.suggest.showMethods": {
2915
2951
  type: "boolean",
2916
2952
  default: true,
2917
- markdownDescription: ( localize(459, "When enabled IntelliSense shows `method`-suggestions."))
2953
+ markdownDescription: ( localize(476, "When enabled IntelliSense shows `method`-suggestions."))
2918
2954
  },
2919
2955
  "editor.suggest.showFunctions": {
2920
2956
  type: "boolean",
2921
2957
  default: true,
2922
- markdownDescription: ( localize(460, "When enabled IntelliSense shows `function`-suggestions."))
2958
+ markdownDescription: ( localize(477, "When enabled IntelliSense shows `function`-suggestions."))
2923
2959
  },
2924
2960
  "editor.suggest.showConstructors": {
2925
2961
  type: "boolean",
2926
2962
  default: true,
2927
- markdownDescription: ( localize(461, "When enabled IntelliSense shows `constructor`-suggestions."))
2963
+ markdownDescription: ( localize(478, "When enabled IntelliSense shows `constructor`-suggestions."))
2928
2964
  },
2929
2965
  "editor.suggest.showDeprecated": {
2930
2966
  type: "boolean",
2931
2967
  default: true,
2932
- markdownDescription: ( localize(462, "When enabled IntelliSense shows `deprecated`-suggestions."))
2968
+ markdownDescription: ( localize(479, "When enabled IntelliSense shows `deprecated`-suggestions."))
2933
2969
  },
2934
2970
  "editor.suggest.matchOnWordStartOnly": {
2935
2971
  type: "boolean",
2936
2972
  default: true,
2937
2973
  markdownDescription: ( localize(
2938
- 463,
2974
+ 480,
2939
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."
2940
2976
  ))
2941
2977
  },
2942
2978
  "editor.suggest.showFields": {
2943
2979
  type: "boolean",
2944
2980
  default: true,
2945
- markdownDescription: ( localize(464, "When enabled IntelliSense shows `field`-suggestions."))
2981
+ markdownDescription: ( localize(481, "When enabled IntelliSense shows `field`-suggestions."))
2946
2982
  },
2947
2983
  "editor.suggest.showVariables": {
2948
2984
  type: "boolean",
2949
2985
  default: true,
2950
- markdownDescription: ( localize(465, "When enabled IntelliSense shows `variable`-suggestions."))
2986
+ markdownDescription: ( localize(482, "When enabled IntelliSense shows `variable`-suggestions."))
2951
2987
  },
2952
2988
  "editor.suggest.showClasses": {
2953
2989
  type: "boolean",
2954
2990
  default: true,
2955
- markdownDescription: ( localize(466, "When enabled IntelliSense shows `class`-suggestions."))
2991
+ markdownDescription: ( localize(483, "When enabled IntelliSense shows `class`-suggestions."))
2956
2992
  },
2957
2993
  "editor.suggest.showStructs": {
2958
2994
  type: "boolean",
2959
2995
  default: true,
2960
- markdownDescription: ( localize(467, "When enabled IntelliSense shows `struct`-suggestions."))
2996
+ markdownDescription: ( localize(484, "When enabled IntelliSense shows `struct`-suggestions."))
2961
2997
  },
2962
2998
  "editor.suggest.showInterfaces": {
2963
2999
  type: "boolean",
2964
3000
  default: true,
2965
- markdownDescription: ( localize(468, "When enabled IntelliSense shows `interface`-suggestions."))
3001
+ markdownDescription: ( localize(485, "When enabled IntelliSense shows `interface`-suggestions."))
2966
3002
  },
2967
3003
  "editor.suggest.showModules": {
2968
3004
  type: "boolean",
2969
3005
  default: true,
2970
- markdownDescription: ( localize(469, "When enabled IntelliSense shows `module`-suggestions."))
3006
+ markdownDescription: ( localize(486, "When enabled IntelliSense shows `module`-suggestions."))
2971
3007
  },
2972
3008
  "editor.suggest.showProperties": {
2973
3009
  type: "boolean",
2974
3010
  default: true,
2975
- markdownDescription: ( localize(470, "When enabled IntelliSense shows `property`-suggestions."))
3011
+ markdownDescription: ( localize(487, "When enabled IntelliSense shows `property`-suggestions."))
2976
3012
  },
2977
3013
  "editor.suggest.showEvents": {
2978
3014
  type: "boolean",
2979
3015
  default: true,
2980
- markdownDescription: ( localize(471, "When enabled IntelliSense shows `event`-suggestions."))
3016
+ markdownDescription: ( localize(488, "When enabled IntelliSense shows `event`-suggestions."))
2981
3017
  },
2982
3018
  "editor.suggest.showOperators": {
2983
3019
  type: "boolean",
2984
3020
  default: true,
2985
- markdownDescription: ( localize(472, "When enabled IntelliSense shows `operator`-suggestions."))
3021
+ markdownDescription: ( localize(489, "When enabled IntelliSense shows `operator`-suggestions."))
2986
3022
  },
2987
3023
  "editor.suggest.showUnits": {
2988
3024
  type: "boolean",
2989
3025
  default: true,
2990
- markdownDescription: ( localize(473, "When enabled IntelliSense shows `unit`-suggestions."))
3026
+ markdownDescription: ( localize(490, "When enabled IntelliSense shows `unit`-suggestions."))
2991
3027
  },
2992
3028
  "editor.suggest.showValues": {
2993
3029
  type: "boolean",
2994
3030
  default: true,
2995
- markdownDescription: ( localize(474, "When enabled IntelliSense shows `value`-suggestions."))
3031
+ markdownDescription: ( localize(491, "When enabled IntelliSense shows `value`-suggestions."))
2996
3032
  },
2997
3033
  "editor.suggest.showConstants": {
2998
3034
  type: "boolean",
2999
3035
  default: true,
3000
- markdownDescription: ( localize(475, "When enabled IntelliSense shows `constant`-suggestions."))
3036
+ markdownDescription: ( localize(492, "When enabled IntelliSense shows `constant`-suggestions."))
3001
3037
  },
3002
3038
  "editor.suggest.showEnums": {
3003
3039
  type: "boolean",
3004
3040
  default: true,
3005
- markdownDescription: ( localize(476, "When enabled IntelliSense shows `enum`-suggestions."))
3041
+ markdownDescription: ( localize(493, "When enabled IntelliSense shows `enum`-suggestions."))
3006
3042
  },
3007
3043
  "editor.suggest.showEnumMembers": {
3008
3044
  type: "boolean",
3009
3045
  default: true,
3010
- markdownDescription: ( localize(477, "When enabled IntelliSense shows `enumMember`-suggestions."))
3046
+ markdownDescription: ( localize(494, "When enabled IntelliSense shows `enumMember`-suggestions."))
3011
3047
  },
3012
3048
  "editor.suggest.showKeywords": {
3013
3049
  type: "boolean",
3014
3050
  default: true,
3015
- markdownDescription: ( localize(478, "When enabled IntelliSense shows `keyword`-suggestions."))
3051
+ markdownDescription: ( localize(495, "When enabled IntelliSense shows `keyword`-suggestions."))
3016
3052
  },
3017
3053
  "editor.suggest.showWords": {
3018
3054
  type: "boolean",
3019
3055
  default: true,
3020
- markdownDescription: ( localize(479, "When enabled IntelliSense shows `text`-suggestions."))
3056
+ markdownDescription: ( localize(496, "When enabled IntelliSense shows `text`-suggestions."))
3021
3057
  },
3022
3058
  "editor.suggest.showColors": {
3023
3059
  type: "boolean",
3024
3060
  default: true,
3025
- markdownDescription: ( localize(480, "When enabled IntelliSense shows `color`-suggestions."))
3061
+ markdownDescription: ( localize(497, "When enabled IntelliSense shows `color`-suggestions."))
3026
3062
  },
3027
3063
  "editor.suggest.showFiles": {
3028
3064
  type: "boolean",
3029
3065
  default: true,
3030
- markdownDescription: ( localize(481, "When enabled IntelliSense shows `file`-suggestions."))
3066
+ markdownDescription: ( localize(498, "When enabled IntelliSense shows `file`-suggestions."))
3031
3067
  },
3032
3068
  "editor.suggest.showReferences": {
3033
3069
  type: "boolean",
3034
3070
  default: true,
3035
- markdownDescription: ( localize(482, "When enabled IntelliSense shows `reference`-suggestions."))
3071
+ markdownDescription: ( localize(499, "When enabled IntelliSense shows `reference`-suggestions."))
3036
3072
  },
3037
3073
  "editor.suggest.showCustomcolors": {
3038
3074
  type: "boolean",
3039
3075
  default: true,
3040
- markdownDescription: ( localize(483, "When enabled IntelliSense shows `customcolor`-suggestions."))
3076
+ markdownDescription: ( localize(500, "When enabled IntelliSense shows `customcolor`-suggestions."))
3041
3077
  },
3042
3078
  "editor.suggest.showFolders": {
3043
3079
  type: "boolean",
3044
3080
  default: true,
3045
- markdownDescription: ( localize(484, "When enabled IntelliSense shows `folder`-suggestions."))
3081
+ markdownDescription: ( localize(501, "When enabled IntelliSense shows `folder`-suggestions."))
3046
3082
  },
3047
3083
  "editor.suggest.showTypeParameters": {
3048
3084
  type: "boolean",
3049
3085
  default: true,
3050
- markdownDescription: ( localize(485, "When enabled IntelliSense shows `typeParameter`-suggestions."))
3086
+ markdownDescription: ( localize(502, "When enabled IntelliSense shows `typeParameter`-suggestions."))
3051
3087
  },
3052
3088
  "editor.suggest.showSnippets": {
3053
3089
  type: "boolean",
3054
3090
  default: true,
3055
- markdownDescription: ( localize(486, "When enabled IntelliSense shows `snippet`-suggestions."))
3091
+ markdownDescription: ( localize(503, "When enabled IntelliSense shows `snippet`-suggestions."))
3056
3092
  },
3057
3093
  "editor.suggest.showUsers": {
3058
3094
  type: "boolean",
3059
3095
  default: true,
3060
- markdownDescription: ( localize(487, "When enabled IntelliSense shows `user`-suggestions."))
3096
+ markdownDescription: ( localize(504, "When enabled IntelliSense shows `user`-suggestions."))
3061
3097
  },
3062
3098
  "editor.suggest.showIssues": {
3063
3099
  type: "boolean",
3064
3100
  default: true,
3065
- markdownDescription: ( localize(488, "When enabled IntelliSense shows `issues`-suggestions."))
3101
+ markdownDescription: ( localize(505, "When enabled IntelliSense shows `issues`-suggestions."))
3066
3102
  }
3067
3103
  });
3068
3104
  }
@@ -3130,13 +3166,13 @@ class SmartSelect extends BaseEditorOption {
3130
3166
  selectSubwords: true
3131
3167
  }, {
3132
3168
  "editor.smartSelect.selectLeadingAndTrailingWhitespace": {
3133
- description: ( localize(489, "Whether leading and trailing whitespace should always be selected.")),
3169
+ description: ( localize(506, "Whether leading and trailing whitespace should always be selected.")),
3134
3170
  default: true,
3135
3171
  type: "boolean"
3136
3172
  },
3137
3173
  "editor.smartSelect.selectSubwords": {
3138
3174
  description: ( localize(
3139
- 490,
3175
+ 507,
3140
3176
  "Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
3141
3177
  )),
3142
3178
  default: true,
@@ -3170,7 +3206,7 @@ class WordSegmenterLocales extends BaseEditorOption {
3170
3206
  }
3171
3207
  }],
3172
3208
  description: ( localize(
3173
- 491,
3209
+ 508,
3174
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.)."
3175
3211
  )),
3176
3212
  type: "array",
@@ -3213,8 +3249,8 @@ class WrappingIndentOption extends BaseEditorOption {
3213
3249
  "editor.wrappingIndent": {
3214
3250
  type: "string",
3215
3251
  enum: ["none", "same", "indent", "deepIndent"],
3216
- enumDescriptions: [( localize(492, "No indentation. Wrapped lines begin at column 1.")), ( localize(493, "Wrapped lines get the same indentation as the parent.")), ( localize(494, "Wrapped lines get +1 indentation toward the parent.")), ( localize(495, "Wrapped lines get +2 indentation toward the parent."))],
3217
- description: ( localize(496, "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.")),
3218
3254
  default: "same"
3219
3255
  }
3220
3256
  });
@@ -3270,22 +3306,22 @@ class EditorDropIntoEditor extends BaseEditorOption {
3270
3306
  type: "boolean",
3271
3307
  default: defaults.enabled,
3272
3308
  markdownDescription: ( localize(
3273
- 497,
3309
+ 514,
3274
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)."
3275
3311
  ))
3276
3312
  },
3277
3313
  "editor.dropIntoEditor.showDropSelector": {
3278
3314
  type: "string",
3279
3315
  markdownDescription: ( localize(
3280
- 498,
3316
+ 515,
3281
3317
  "Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
3282
3318
  )),
3283
3319
  enum: ["afterDrop", "never"],
3284
3320
  enumDescriptions: [( localize(
3285
- 499,
3321
+ 516,
3286
3322
  "Show the drop selector widget after a file is dropped into the editor."
3287
3323
  )), ( localize(
3288
- 500,
3324
+ 517,
3289
3325
  "Never show the drop selector widget. Instead the default drop provider is always used."
3290
3326
  ))],
3291
3327
  default: "afterDrop"
@@ -3317,20 +3353,20 @@ class EditorPasteAs extends BaseEditorOption {
3317
3353
  "editor.pasteAs.enabled": {
3318
3354
  type: "boolean",
3319
3355
  default: defaults.enabled,
3320
- markdownDescription: ( localize(501, "Controls whether you can paste content in different ways."))
3356
+ markdownDescription: ( localize(518, "Controls whether you can paste content in different ways."))
3321
3357
  },
3322
3358
  "editor.pasteAs.showPasteSelector": {
3323
3359
  type: "string",
3324
3360
  markdownDescription: ( localize(
3325
- 502,
3361
+ 519,
3326
3362
  "Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
3327
3363
  )),
3328
3364
  enum: ["afterPaste", "never"],
3329
3365
  enumDescriptions: [( localize(
3330
- 503,
3366
+ 520,
3331
3367
  "Show the paste selector widget after content is pasted into the editor."
3332
3368
  )), ( localize(
3333
- 504,
3369
+ 521,
3334
3370
  "Never show the paste selector widget. Instead the default pasting behavior is always used."
3335
3371
  ))],
3336
3372
  default: "afterPaste"
@@ -3532,6 +3568,7 @@ var EditorOption;
3532
3568
  EditorOption[EditorOption["effectiveEditContext"] = 170] = "effectiveEditContext";
3533
3569
  EditorOption[EditorOption["scrollOnMiddleClick"] = 171] = "scrollOnMiddleClick";
3534
3570
  EditorOption[EditorOption["effectiveAllowVariableFonts"] = 172] = "effectiveAllowVariableFonts";
3571
+ EditorOption[EditorOption["doubleClickSelectsBlock"] = 173] = "doubleClickSelectsBlock";
3535
3572
  })(EditorOption || (EditorOption = {}));
3536
3573
  const EditorOptions = {
3537
3574
  acceptSuggestionOnCommitCharacter: register(( new EditorBooleanOption(
@@ -3540,7 +3577,7 @@ const EditorOptions = {
3540
3577
  true,
3541
3578
  {
3542
3579
  markdownDescription: ( localize(
3543
- 505,
3580
+ 522,
3544
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."
3545
3582
  ))
3546
3583
  }
@@ -3552,11 +3589,11 @@ const EditorOptions = {
3552
3589
  ["on", "smart", "off"],
3553
3590
  {
3554
3591
  markdownEnumDescriptions: ["", ( localize(
3555
- 506,
3592
+ 523,
3556
3593
  "Only accept a suggestion with `Enter` when it makes a textual change."
3557
3594
  )), ""],
3558
3595
  markdownDescription: ( localize(
3559
- 507,
3596
+ 524,
3560
3597
  "Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
3561
3598
  ))
3562
3599
  }
@@ -3570,7 +3607,7 @@ const EditorOptions = {
3570
3607
  Constants.MAX_SAFE_SMALL_INTEGER,
3571
3608
  {
3572
3609
  description: ( localize(
3573
- 508,
3610
+ 525,
3574
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."
3575
3612
  )),
3576
3613
  tags: ["accessibility"]
@@ -3579,12 +3616,12 @@ const EditorOptions = {
3579
3616
  allowOverflow: register(( new EditorBooleanOption(EditorOption.allowOverflow, "allowOverflow", true))),
3580
3617
  allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, "allowVariableLineHeights", true, {
3581
3618
  description: ( localize(
3582
- 509,
3619
+ 526,
3583
3620
  "Controls whether to allow using variable line heights in the editor."
3584
3621
  ))
3585
3622
  }))),
3586
3623
  allowVariableFonts: register(( new EditorBooleanOption(EditorOption.allowVariableFonts, "allowVariableFonts", true, {
3587
- description: ( localize(510, "Controls whether to allow using variable fonts in the editor."))
3624
+ description: ( localize(527, "Controls whether to allow using variable fonts in the editor."))
3588
3625
  }))),
3589
3626
  allowVariableFontsInAccessibilityMode: register(( new EditorBooleanOption(
3590
3627
  EditorOption.allowVariableFontsInAccessibilityMode,
@@ -3592,13 +3629,13 @@ const EditorOptions = {
3592
3629
  false,
3593
3630
  {
3594
3631
  description: ( localize(
3595
- 511,
3632
+ 528,
3596
3633
  "Controls whether to allow using variable fonts in the editor in the accessibility mode."
3597
3634
  )),
3598
3635
  tags: ["accessibility"]
3599
3636
  }
3600
3637
  ))),
3601
- ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, "ariaLabel", ( localize(512, "Editor content"))))),
3638
+ ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, "ariaLabel", ( localize(529, "Editor content"))))),
3602
3639
  ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, "ariaRequired", false, undefined))),
3603
3640
  screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
3604
3641
  EditorOption.screenReaderAnnounceInlineSuggestion,
@@ -3606,7 +3643,7 @@ const EditorOptions = {
3606
3643
  true,
3607
3644
  {
3608
3645
  description: ( localize(
3609
- 513,
3646
+ 530,
3610
3647
  "Control whether inline suggestions are announced by a screen reader."
3611
3648
  )),
3612
3649
  tags: ["accessibility"]
@@ -3619,14 +3656,14 @@ const EditorOptions = {
3619
3656
  ["always", "languageDefined", "beforeWhitespace", "never"],
3620
3657
  {
3621
3658
  enumDescriptions: ["", ( localize(
3622
- 514,
3659
+ 531,
3623
3660
  "Use language configurations to determine when to autoclose brackets."
3624
3661
  )), ( localize(
3625
- 515,
3662
+ 532,
3626
3663
  "Autoclose brackets only when the cursor is to the left of whitespace."
3627
3664
  )), ""],
3628
3665
  description: ( localize(
3629
- 516,
3666
+ 533,
3630
3667
  "Controls whether the editor should automatically close brackets after the user adds an opening bracket."
3631
3668
  ))
3632
3669
  }
@@ -3638,14 +3675,14 @@ const EditorOptions = {
3638
3675
  ["always", "languageDefined", "beforeWhitespace", "never"],
3639
3676
  {
3640
3677
  enumDescriptions: ["", ( localize(
3641
- 517,
3678
+ 534,
3642
3679
  "Use language configurations to determine when to autoclose comments."
3643
3680
  )), ( localize(
3644
- 518,
3681
+ 535,
3645
3682
  "Autoclose comments only when the cursor is to the left of whitespace."
3646
3683
  )), ""],
3647
3684
  description: ( localize(
3648
- 519,
3685
+ 536,
3649
3686
  "Controls whether the editor should automatically close comments after the user adds an opening comment."
3650
3687
  ))
3651
3688
  }
@@ -3657,11 +3694,11 @@ const EditorOptions = {
3657
3694
  ["always", "auto", "never"],
3658
3695
  {
3659
3696
  enumDescriptions: ["", ( localize(
3660
- 520,
3697
+ 537,
3661
3698
  "Remove adjacent closing quotes or brackets only if they were automatically inserted."
3662
3699
  )), ""],
3663
3700
  description: ( localize(
3664
- 521,
3701
+ 538,
3665
3702
  "Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
3666
3703
  ))
3667
3704
  }
@@ -3673,11 +3710,11 @@ const EditorOptions = {
3673
3710
  ["always", "auto", "never"],
3674
3711
  {
3675
3712
  enumDescriptions: ["", ( localize(
3676
- 522,
3713
+ 539,
3677
3714
  "Type over closing quotes or brackets only if they were automatically inserted."
3678
3715
  )), ""],
3679
3716
  description: ( localize(
3680
- 523,
3717
+ 540,
3681
3718
  "Controls whether the editor should type over closing quotes or brackets."
3682
3719
  ))
3683
3720
  }
@@ -3688,9 +3725,9 @@ const EditorOptions = {
3688
3725
  "languageDefined",
3689
3726
  ["always", "languageDefined", "beforeWhitespace", "never"],
3690
3727
  {
3691
- enumDescriptions: ["", ( localize(524, "Use language configurations to determine when to autoclose quotes.")), ( localize(525, "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.")), ""],
3692
3729
  description: ( localize(
3693
- 526,
3730
+ 543,
3694
3731
  "Controls whether the editor should automatically close quotes after the user adds an opening quote."
3695
3732
  ))
3696
3733
  }
@@ -3703,25 +3740,25 @@ const EditorOptions = {
3703
3740
  ["none", "keep", "brackets", "advanced", "full"],
3704
3741
  _autoIndentFromString,
3705
3742
  {
3706
- enumDescriptions: [( localize(527, "The editor will not insert indentation automatically.")), ( localize(528, "The editor will keep the current line's indentation.")), ( localize(
3707
- 529,
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,
3708
3745
  "The editor will keep the current line's indentation and honor language defined brackets."
3709
3746
  )), ( localize(
3710
- 530,
3747
+ 547,
3711
3748
  "The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
3712
3749
  )), ( localize(
3713
- 531,
3750
+ 548,
3714
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."
3715
3752
  ))],
3716
3753
  description: ( localize(
3717
- 532,
3754
+ 549,
3718
3755
  "Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
3719
3756
  ))
3720
3757
  }
3721
3758
  ))),
3722
3759
  autoIndentOnPaste: register(( new EditorBooleanOption(EditorOption.autoIndentOnPaste, "autoIndentOnPaste", false, {
3723
3760
  description: ( localize(
3724
- 533,
3761
+ 550,
3725
3762
  "Controls whether the editor should automatically auto-indent the pasted content."
3726
3763
  ))
3727
3764
  }))),
@@ -3731,7 +3768,7 @@ const EditorOptions = {
3731
3768
  true,
3732
3769
  {
3733
3770
  description: ( localize(
3734
- 534,
3771
+ 551,
3735
3772
  "Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true."
3736
3773
  ))
3737
3774
  }
@@ -3744,11 +3781,11 @@ const EditorOptions = {
3744
3781
  ["languageDefined", "quotes", "brackets", "never"],
3745
3782
  {
3746
3783
  enumDescriptions: [( localize(
3747
- 535,
3784
+ 552,
3748
3785
  "Use language configurations to determine when to automatically surround selections."
3749
- )), ( localize(536, "Surround with quotes but not brackets.")), ( localize(537, "Surround with brackets but not quotes.")), ""],
3786
+ )), ( localize(553, "Surround with quotes but not brackets.")), ( localize(554, "Surround with brackets but not quotes.")), ""],
3750
3787
  description: ( localize(
3751
- 538,
3788
+ 555,
3752
3789
  "Controls whether the editor should automatically surround selections when typing quotes or brackets."
3753
3790
  ))
3754
3791
  }
@@ -3757,15 +3794,15 @@ const EditorOptions = {
3757
3794
  bracketPairGuides: register(( new GuideOptions())),
3758
3795
  stickyTabStops: register(( new EditorBooleanOption(EditorOption.stickyTabStops, "stickyTabStops", false, {
3759
3796
  description: ( localize(
3760
- 539,
3797
+ 556,
3761
3798
  "Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
3762
3799
  ))
3763
3800
  }))),
3764
3801
  codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, "codeLens", true, {
3765
- description: ( localize(540, "Controls whether the editor shows CodeLens."))
3802
+ description: ( localize(557, "Controls whether the editor shows CodeLens."))
3766
3803
  }))),
3767
3804
  codeLensFontFamily: register(( new EditorStringOption(EditorOption.codeLensFontFamily, "codeLensFontFamily", "", {
3768
- description: ( localize(541, "Controls the font family for CodeLens."))
3805
+ description: ( localize(558, "Controls the font family for CodeLens."))
3769
3806
  }))),
3770
3807
  codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, "codeLensFontSize", 0, 0, 100, {
3771
3808
  type: "number",
@@ -3773,13 +3810,13 @@ const EditorOptions = {
3773
3810
  minimum: 0,
3774
3811
  maximum: 100,
3775
3812
  markdownDescription: ( localize(
3776
- 542,
3813
+ 559,
3777
3814
  "Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
3778
3815
  ))
3779
3816
  }))),
3780
3817
  colorDecorators: register(( new EditorBooleanOption(EditorOption.colorDecorators, "colorDecorators", true, {
3781
3818
  description: ( localize(
3782
- 543,
3819
+ 560,
3783
3820
  "Controls whether the editor should render the inline color decorators and color picker."
3784
3821
  ))
3785
3822
  }))),
@@ -3790,11 +3827,11 @@ const EditorOptions = {
3790
3827
  ["clickAndHover", "hover", "click"],
3791
3828
  {
3792
3829
  enumDescriptions: [( localize(
3793
- 544,
3830
+ 561,
3794
3831
  "Make the color picker appear both on click and hover of the color decorator"
3795
- )), ( localize(545, "Make the color picker appear on hover of the color decorator")), ( localize(546, "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"))],
3796
3833
  description: ( localize(
3797
- 547,
3834
+ 564,
3798
3835
  "Controls the condition to make a color picker appear from a color decorator."
3799
3836
  ))
3800
3837
  }
@@ -3807,14 +3844,14 @@ const EditorOptions = {
3807
3844
  1000000,
3808
3845
  {
3809
3846
  markdownDescription: ( localize(
3810
- 548,
3847
+ 565,
3811
3848
  "Controls the max number of color decorators that can be rendered in an editor at once."
3812
3849
  ))
3813
3850
  }
3814
3851
  ))),
3815
3852
  columnSelection: register(( new EditorBooleanOption(EditorOption.columnSelection, "columnSelection", false, {
3816
3853
  description: ( localize(
3817
- 549,
3854
+ 566,
3818
3855
  "Enable that the selection with the mouse and keys is doing column selection."
3819
3856
  ))
3820
3857
  }))),
@@ -3826,7 +3863,7 @@ const EditorOptions = {
3826
3863
  true,
3827
3864
  {
3828
3865
  description: ( localize(
3829
- 550,
3866
+ 567,
3830
3867
  "Controls whether syntax highlighting should be copied into the clipboard."
3831
3868
  ))
3832
3869
  }
@@ -3839,7 +3876,7 @@ const EditorOptions = {
3839
3876
  ["blink", "smooth", "phase", "expand", "solid"],
3840
3877
  cursorBlinkingStyleFromString,
3841
3878
  {
3842
- description: ( localize(551, "Control the cursor animation style."))
3879
+ description: ( localize(568, "Control the cursor animation style."))
3843
3880
  }
3844
3881
  ))),
3845
3882
  cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
@@ -3848,11 +3885,11 @@ const EditorOptions = {
3848
3885
  "off",
3849
3886
  ["off", "explicit", "on"],
3850
3887
  {
3851
- enumDescriptions: [( localize(552, "Smooth caret animation is disabled.")), ( localize(
3852
- 553,
3888
+ enumDescriptions: [( localize(569, "Smooth caret animation is disabled.")), ( localize(
3889
+ 570,
3853
3890
  "Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
3854
- )), ( localize(554, "Smooth caret animation is always enabled."))],
3855
- description: ( localize(555, "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."))
3856
3893
  }
3857
3894
  ))),
3858
3895
  cursorStyle: register(( new EditorEnumOption(
@@ -3870,7 +3907,7 @@ const EditorOptions = {
3870
3907
  ],
3871
3908
  cursorStyleFromString,
3872
3909
  {
3873
- description: ( localize(556, "Controls the cursor style in insert input mode."))
3910
+ description: ( localize(573, "Controls the cursor style in insert input mode."))
3874
3911
  }
3875
3912
  ))),
3876
3913
  overtypeCursorStyle: register(( new EditorEnumOption(
@@ -3888,7 +3925,7 @@ const EditorOptions = {
3888
3925
  ],
3889
3926
  cursorStyleFromString,
3890
3927
  {
3891
- description: ( localize(557, "Controls the cursor style in overtype input mode."))
3928
+ description: ( localize(574, "Controls the cursor style in overtype input mode."))
3892
3929
  }
3893
3930
  ))),
3894
3931
  cursorSurroundingLines: register(( new EditorIntOption(
@@ -3899,7 +3936,7 @@ const EditorOptions = {
3899
3936
  Constants.MAX_SAFE_SMALL_INTEGER,
3900
3937
  {
3901
3938
  description: ( localize(
3902
- 558,
3939
+ 575,
3903
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."
3904
3941
  ))
3905
3942
  }
@@ -3911,10 +3948,10 @@ const EditorOptions = {
3911
3948
  ["default", "all"],
3912
3949
  {
3913
3950
  enumDescriptions: [( localize(
3914
- 559,
3951
+ 576,
3915
3952
  "`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
3916
- )), ( localize(560, "`cursorSurroundingLines` is enforced always."))],
3917
- markdownDescription: ( localize(561, "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."))
3918
3955
  }
3919
3956
  ))),
3920
3957
  cursorWidth: register(( new EditorIntOption(
@@ -3925,7 +3962,7 @@ const EditorOptions = {
3925
3962
  Constants.MAX_SAFE_SMALL_INTEGER,
3926
3963
  {
3927
3964
  markdownDescription: ( localize(
3928
- 562,
3965
+ 579,
3929
3966
  "Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
3930
3967
  ))
3931
3968
  }
@@ -3938,7 +3975,7 @@ const EditorOptions = {
3938
3975
  Constants.MAX_SAFE_SMALL_INTEGER,
3939
3976
  {
3940
3977
  markdownDescription: ( localize(
3941
- 563,
3978
+ 580,
3942
3979
  "Controls the height of the cursor when `#editor.cursorStyle#` is set to `line`. Cursor's max height depends on line height."
3943
3980
  ))
3944
3981
  }
@@ -3950,9 +3987,15 @@ const EditorOptions = {
3950
3987
  false
3951
3988
  ))),
3952
3989
  domReadOnly: register(( new EditorBooleanOption(EditorOption.domReadOnly, "domReadOnly", false))),
3990
+ doubleClickSelectsBlock: register(( new EditorBooleanOption(EditorOption.doubleClickSelectsBlock, "doubleClickSelectsBlock", true, {
3991
+ description: ( localize(
3992
+ 581,
3993
+ "Controls whether double-clicking next to a bracket or quote selects the content inside."
3994
+ ))
3995
+ }))),
3953
3996
  dragAndDrop: register(( new EditorBooleanOption(EditorOption.dragAndDrop, "dragAndDrop", true, {
3954
3997
  description: ( localize(
3955
- 564,
3998
+ 582,
3956
3999
  "Controls whether the editor should allow moving selections via drag and drop."
3957
4000
  ))
3958
4001
  }))),
@@ -3960,7 +4003,7 @@ const EditorOptions = {
3960
4003
  dropIntoEditor: register(( new EditorDropIntoEditor())),
3961
4004
  editContext: register(( new EditorBooleanOption(EditorOption.editContext, "editContext", true, {
3962
4005
  description: ( localize(
3963
- 565,
4006
+ 583,
3964
4007
  "Sets whether the EditContext API should be used instead of the text area to power input in the editor."
3965
4008
  )),
3966
4009
  included: isChrome || isEdge || isNative
@@ -3971,7 +4014,7 @@ const EditorOptions = {
3971
4014
  false,
3972
4015
  {
3973
4016
  markdownDescription: ( localize(
3974
- 566,
4017
+ 584,
3975
4018
  "Whether to render rich screen reader content when the `#editor.editContext#` setting is enabled."
3976
4019
  ))
3977
4020
  }
@@ -3984,9 +4027,9 @@ const EditorOptions = {
3984
4027
  ["off", "on"],
3985
4028
  {
3986
4029
  tags: ["experimental"],
3987
- enumDescriptions: [( localize(567, "Use regular DOM-based rendering.")), ( localize(568, "Use GPU acceleration."))],
4030
+ enumDescriptions: [( localize(585, "Use regular DOM-based rendering.")), ( localize(586, "Use GPU acceleration."))],
3988
4031
  description: ( localize(
3989
- 569,
4032
+ 587,
3990
4033
  "Controls whether to use the experimental GPU acceleration to render the editor."
3991
4034
  ))
3992
4035
  }
@@ -3997,9 +4040,9 @@ const EditorOptions = {
3997
4040
  "svg",
3998
4041
  ["svg", "font", "off"],
3999
4042
  {
4000
- enumDescriptions: [( localize(570, "Use a new rendering method with svgs.")), ( localize(571, "Use a new rendering method with font characters.")), ( localize(572, "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."))],
4001
4044
  description: ( localize(
4002
- 573,
4045
+ 591,
4003
4046
  "Controls whether whitespace is rendered with a new, experimental method."
4004
4047
  ))
4005
4048
  }
@@ -4011,13 +4054,13 @@ const EditorOptions = {
4011
4054
  5,
4012
4055
  x => (x <= 0 ? 5 : x),
4013
4056
  {
4014
- markdownDescription: ( localize(574, "Scrolling speed multiplier when pressing `Alt`."))
4057
+ markdownDescription: ( localize(592, "Scrolling speed multiplier when pressing `Alt`."))
4015
4058
  }
4016
4059
  ))),
4017
4060
  find: register(( new EditorFind())),
4018
4061
  fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, "fixedOverflowWidgets", false))),
4019
4062
  folding: register(( new EditorBooleanOption(EditorOption.folding, "folding", true, {
4020
- description: ( localize(575, "Controls whether the editor has code folding enabled."))
4063
+ description: ( localize(593, "Controls whether the editor has code folding enabled."))
4021
4064
  }))),
4022
4065
  foldingStrategy: register(( new EditorStringEnumOption(
4023
4066
  EditorOption.foldingStrategy,
@@ -4026,17 +4069,17 @@ const EditorOptions = {
4026
4069
  ["auto", "indentation"],
4027
4070
  {
4028
4071
  enumDescriptions: [( localize(
4029
- 576,
4072
+ 594,
4030
4073
  "Use a language-specific folding strategy if available, else the indentation-based one."
4031
- )), ( localize(577, "Use the indentation-based folding strategy."))],
4032
- description: ( localize(578, "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."))
4033
4076
  }
4034
4077
  ))),
4035
4078
  foldingHighlight: register(( new EditorBooleanOption(EditorOption.foldingHighlight, "foldingHighlight", true, {
4036
- description: ( localize(579, "Controls whether the editor should highlight folded ranges."))
4079
+ description: ( localize(597, "Controls whether the editor should highlight folded ranges."))
4037
4080
  }))),
4038
4081
  foldingImportsByDefault: register(( new EditorBooleanOption(EditorOption.foldingImportsByDefault, "foldingImportsByDefault", false, {
4039
- description: ( localize(580, "Controls whether the editor automatically collapses import ranges."))
4082
+ description: ( localize(598, "Controls whether the editor automatically collapses import ranges."))
4040
4083
  }))),
4041
4084
  foldingMaximumRegions: register(( new EditorIntOption(
4042
4085
  EditorOption.foldingMaximumRegions,
@@ -4046,7 +4089,7 @@ const EditorOptions = {
4046
4089
  65000,
4047
4090
  {
4048
4091
  description: ( localize(
4049
- 581,
4092
+ 599,
4050
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."
4051
4094
  ))
4052
4095
  }
@@ -4057,13 +4100,13 @@ const EditorOptions = {
4057
4100
  false,
4058
4101
  {
4059
4102
  description: ( localize(
4060
- 582,
4103
+ 600,
4061
4104
  "Controls whether clicking on the empty content after a folded line will unfold the line."
4062
4105
  ))
4063
4106
  }
4064
4107
  ))),
4065
4108
  fontFamily: register(( new EditorStringOption(EditorOption.fontFamily, "fontFamily", EDITOR_FONT_DEFAULTS.fontFamily, {
4066
- description: ( localize(583, "Controls the font family."))
4109
+ description: ( localize(601, "Controls the font family."))
4067
4110
  }))),
4068
4111
  fontInfo: register(( new EditorFontInfo())),
4069
4112
  fontLigatures2: register(( new EditorFontLigatures())),
@@ -4072,19 +4115,19 @@ const EditorOptions = {
4072
4115
  fontVariations: register(( new EditorFontVariations())),
4073
4116
  formatOnPaste: register(( new EditorBooleanOption(EditorOption.formatOnPaste, "formatOnPaste", false, {
4074
4117
  description: ( localize(
4075
- 584,
4118
+ 602,
4076
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."
4077
4120
  ))
4078
4121
  }))),
4079
4122
  formatOnType: register(( new EditorBooleanOption(EditorOption.formatOnType, "formatOnType", false, {
4080
4123
  description: ( localize(
4081
- 585,
4124
+ 603,
4082
4125
  "Controls whether the editor should automatically format the line after typing."
4083
4126
  ))
4084
4127
  }))),
4085
4128
  glyphMargin: register(( new EditorBooleanOption(EditorOption.glyphMargin, "glyphMargin", true, {
4086
4129
  description: ( localize(
4087
- 586,
4130
+ 604,
4088
4131
  "Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
4089
4132
  ))
4090
4133
  }))),
@@ -4094,13 +4137,13 @@ const EditorOptions = {
4094
4137
  "hideCursorInOverviewRuler",
4095
4138
  false,
4096
4139
  {
4097
- description: ( localize(587, "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."))
4098
4141
  }
4099
4142
  ))),
4100
4143
  hover: register(( new EditorHover())),
4101
4144
  inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, "inDiffEditor", false))),
4102
4145
  inertialScroll: register(( new EditorBooleanOption(EditorOption.inertialScroll, "inertialScroll", false, {
4103
- description: ( localize(588, "Make scrolling inertial - mostly useful with touchpad on linux."))
4146
+ description: ( localize(606, "Make scrolling inertial - mostly useful with touchpad on linux."))
4104
4147
  }))),
4105
4148
  letterSpacing: register(( new EditorFloatOption(
4106
4149
  EditorOption.letterSpacing,
@@ -4108,7 +4151,7 @@ const EditorOptions = {
4108
4151
  EDITOR_FONT_DEFAULTS.letterSpacing,
4109
4152
  x => EditorFloatOption.clamp(x, -5, 20),
4110
4153
  {
4111
- description: ( localize(589, "Controls the letter spacing in pixels."))
4154
+ description: ( localize(607, "Controls the letter spacing in pixels."))
4112
4155
  }
4113
4156
  ))),
4114
4157
  lightbulb: register(( new EditorLightbulb())),
@@ -4118,13 +4161,13 @@ const EditorOptions = {
4118
4161
  lineNumbersMinChars: register(( new EditorIntOption(EditorOption.lineNumbersMinChars, "lineNumbersMinChars", 5, 1, 300))),
4119
4162
  linkedEditing: register(( new EditorBooleanOption(EditorOption.linkedEditing, "linkedEditing", false, {
4120
4163
  description: ( localize(
4121
- 590,
4164
+ 608,
4122
4165
  "Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
4123
4166
  ))
4124
4167
  }))),
4125
4168
  links: register(( new EditorBooleanOption(EditorOption.links, "links", true, {
4126
4169
  description: ( localize(
4127
- 591,
4170
+ 609,
4128
4171
  "Controls whether the editor should detect links and make them clickable."
4129
4172
  ))
4130
4173
  }))),
@@ -4134,7 +4177,7 @@ const EditorOptions = {
4134
4177
  "always",
4135
4178
  ["always", "near", "never"],
4136
4179
  {
4137
- description: ( localize(592, "Highlight matching brackets."))
4180
+ description: ( localize(610, "Highlight matching brackets."))
4138
4181
  }
4139
4182
  ))),
4140
4183
  minimap: register(( new EditorMinimap())),
@@ -4146,17 +4189,17 @@ const EditorOptions = {
4146
4189
  x => (x === 0 ? 1 : x),
4147
4190
  {
4148
4191
  markdownDescription: ( localize(
4149
- 593,
4192
+ 611,
4150
4193
  "A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
4151
4194
  ))
4152
4195
  }
4153
4196
  ))),
4154
4197
  mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, "mouseWheelZoom", false, {
4155
4198
  markdownDescription: isMacintosh ? ( localize(
4156
- 594,
4199
+ 612,
4157
4200
  "Zoom the font of the editor when using mouse wheel and holding `Cmd`."
4158
4201
  )) : ( localize(
4159
- 595,
4202
+ 613,
4160
4203
  "Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
4161
4204
  ))
4162
4205
  }))),
@@ -4165,7 +4208,7 @@ const EditorOptions = {
4165
4208
  "multiCursorMergeOverlapping",
4166
4209
  true,
4167
4210
  {
4168
- description: ( localize(596, "Merge multiple cursors when they are overlapping."))
4211
+ description: ( localize(614, "Merge multiple cursors when they are overlapping."))
4169
4212
  }
4170
4213
  ))),
4171
4214
  multiCursorModifier: register(( new EditorEnumOption(
@@ -4176,9 +4219,9 @@ const EditorOptions = {
4176
4219
  ["ctrlCmd", "alt"],
4177
4220
  _multiCursorModifierFromString,
4178
4221
  {
4179
- markdownEnumDescriptions: [( localize(597, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")), ( localize(598, "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."))],
4180
4223
  markdownDescription: ( localize(
4181
- 599,
4224
+ 617,
4182
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)."
4183
4226
  ))
4184
4227
  }
@@ -4190,7 +4233,7 @@ const EditorOptions = {
4190
4233
  ["default", "openLink", "ctrlLeftClick"],
4191
4234
  {
4192
4235
  description: ( localize(
4193
- 600,
4236
+ 618,
4194
4237
  "Controls what happens when middle mouse button is clicked in the editor."
4195
4238
  ))
4196
4239
  }
@@ -4201,16 +4244,16 @@ const EditorOptions = {
4201
4244
  "spread",
4202
4245
  ["spread", "full"],
4203
4246
  {
4204
- markdownEnumDescriptions: [( localize(601, "Each cursor pastes a single line of the text.")), ( localize(602, "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."))],
4205
4248
  markdownDescription: ( localize(
4206
- 603,
4249
+ 621,
4207
4250
  "Controls pasting when the line count of the pasted text matches the cursor count."
4208
4251
  ))
4209
4252
  }
4210
4253
  ))),
4211
4254
  multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, "multiCursorLimit", 10000, 1, 100000, {
4212
4255
  markdownDescription: ( localize(
4213
- 604,
4256
+ 622,
4214
4257
  "Controls the max number of cursors that can be in an active editor at once."
4215
4258
  ))
4216
4259
  }))),
@@ -4220,9 +4263,9 @@ const EditorOptions = {
4220
4263
  "singleFile",
4221
4264
  ["off", "singleFile", "multiFile"],
4222
4265
  {
4223
- markdownEnumDescriptions: [( localize(605, "Does not highlight occurrences.")), ( localize(606, "Highlights occurrences only in the current file.")), ( localize(607, "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."))],
4224
4267
  markdownDescription: ( localize(
4225
- 608,
4268
+ 626,
4226
4269
  "Controls whether occurrences should be highlighted across open files."
4227
4270
  ))
4228
4271
  }
@@ -4235,18 +4278,18 @@ const EditorOptions = {
4235
4278
  2000,
4236
4279
  {
4237
4280
  description: ( localize(
4238
- 609,
4281
+ 627,
4239
4282
  "Controls the delay in milliseconds after which occurrences are highlighted."
4240
4283
  )),
4241
4284
  tags: ["preview"]
4242
4285
  }
4243
4286
  ))),
4244
4287
  overtypeOnPaste: register(( new EditorBooleanOption(EditorOption.overtypeOnPaste, "overtypeOnPaste", true, {
4245
- description: ( localize(610, "Controls whether pasting should overtype."))
4288
+ description: ( localize(628, "Controls whether pasting should overtype."))
4246
4289
  }))),
4247
4290
  overviewRulerBorder: register(( new EditorBooleanOption(EditorOption.overviewRulerBorder, "overviewRulerBorder", true, {
4248
4291
  description: ( localize(
4249
- 611,
4292
+ 629,
4250
4293
  "Controls whether a border should be drawn around the overview ruler."
4251
4294
  ))
4252
4295
  }))),
@@ -4260,9 +4303,9 @@ const EditorOptions = {
4260
4303
  "tree",
4261
4304
  ["tree", "editor"],
4262
4305
  {
4263
- enumDescriptions: [( localize(612, "Focus the tree when opening peek")), ( localize(613, "Focus the editor when opening peek"))],
4306
+ enumDescriptions: [( localize(630, "Focus the tree when opening peek")), ( localize(631, "Focus the editor when opening peek"))],
4264
4307
  description: ( localize(
4265
- 614,
4308
+ 632,
4266
4309
  "Controls whether to focus the inline editor or the tree in the peek widget."
4267
4310
  ))
4268
4311
  }
@@ -4274,7 +4317,7 @@ const EditorOptions = {
4274
4317
  false,
4275
4318
  {
4276
4319
  description: ( localize(
4277
- 615,
4320
+ 633,
4278
4321
  "Controls whether the Go to Definition mouse gesture always opens the peek widget."
4279
4322
  ))
4280
4323
  }
@@ -4288,7 +4331,7 @@ const EditorOptions = {
4288
4331
  Constants.MAX_SAFE_SMALL_INTEGER,
4289
4332
  {
4290
4333
  description: ( localize(
4291
- 616,
4334
+ 634,
4292
4335
  "Controls the delay in milliseconds after which quick suggestions will show up."
4293
4336
  )),
4294
4337
  experiment: {
@@ -4299,11 +4342,11 @@ const EditorOptions = {
4299
4342
  readOnly: register(( new EditorBooleanOption(EditorOption.readOnly, "readOnly", false))),
4300
4343
  readOnlyMessage: register(( new ReadonlyMessage())),
4301
4344
  renameOnType: register(( new EditorBooleanOption(EditorOption.renameOnType, "renameOnType", false, {
4302
- description: ( localize(617, "Controls whether the editor auto renames on type.")),
4303
- markdownDeprecationMessage: ( localize(618, "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."))
4304
4347
  }))),
4305
4348
  renderControlCharacters: register(( new EditorBooleanOption(EditorOption.renderControlCharacters, "renderControlCharacters", true, {
4306
- description: ( localize(619, "Controls whether the editor should render control characters.")),
4349
+ description: ( localize(637, "Controls whether the editor should render control characters.")),
4307
4350
  restricted: true
4308
4351
  }))),
4309
4352
  renderFinalNewline: register(( new EditorStringEnumOption(
@@ -4312,7 +4355,7 @@ const EditorOptions = {
4312
4355
  (isLinux ? "dimmed" : "on"),
4313
4356
  ["off", "on", "dimmed"],
4314
4357
  {
4315
- description: ( localize(620, "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."))
4316
4359
  }
4317
4360
  ))),
4318
4361
  renderLineHighlight: register(( new EditorStringEnumOption(
@@ -4321,8 +4364,8 @@ const EditorOptions = {
4321
4364
  "line",
4322
4365
  ["none", "gutter", "line", "all"],
4323
4366
  {
4324
- enumDescriptions: ["", "", "", ( localize(621, "Highlights both the gutter and the current line."))],
4325
- description: ( localize(622, "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."))
4326
4369
  }
4327
4370
  ))),
4328
4371
  renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
@@ -4331,7 +4374,7 @@ const EditorOptions = {
4331
4374
  false,
4332
4375
  {
4333
4376
  description: ( localize(
4334
- 623,
4377
+ 641,
4335
4378
  "Controls if the editor should render the current line highlight only when the editor is focused."
4336
4379
  ))
4337
4380
  }
@@ -4349,10 +4392,10 @@ const EditorOptions = {
4349
4392
  ["none", "boundary", "selection", "trailing", "all"],
4350
4393
  {
4351
4394
  enumDescriptions: ["", ( localize(
4352
- 624,
4395
+ 642,
4353
4396
  "Render whitespace characters except for single spaces between words."
4354
- )), ( localize(625, "Render whitespace characters only on selected text.")), ( localize(626, "Render only trailing whitespace characters.")), ""],
4355
- description: ( localize(627, "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."))
4356
4399
  }
4357
4400
  ))),
4358
4401
  revealHorizontalRightPadding: register(( new EditorIntOption(
@@ -4363,7 +4406,7 @@ const EditorOptions = {
4363
4406
  1000
4364
4407
  ))),
4365
4408
  roundedSelection: register(( new EditorBooleanOption(EditorOption.roundedSelection, "roundedSelection", true, {
4366
- description: ( localize(628, "Controls whether selections should have rounded corners."))
4409
+ description: ( localize(646, "Controls whether selections should have rounded corners."))
4367
4410
  }))),
4368
4411
  rulers: register(( new EditorRulers())),
4369
4412
  scrollbar: register(( new EditorScrollbar())),
@@ -4375,33 +4418,33 @@ const EditorOptions = {
4375
4418
  Constants.MAX_SAFE_SMALL_INTEGER,
4376
4419
  {
4377
4420
  description: ( localize(
4378
- 629,
4421
+ 647,
4379
4422
  "Controls the number of extra characters beyond which the editor will scroll horizontally."
4380
4423
  ))
4381
4424
  }
4382
4425
  ))),
4383
4426
  scrollBeyondLastLine: register(( new EditorBooleanOption(EditorOption.scrollBeyondLastLine, "scrollBeyondLastLine", true, {
4384
- description: ( localize(630, "Controls whether the editor will scroll beyond the last line."))
4427
+ description: ( localize(648, "Controls whether the editor will scroll beyond the last line."))
4385
4428
  }))),
4386
4429
  scrollOnMiddleClick: register(( new EditorBooleanOption(EditorOption.scrollOnMiddleClick, "scrollOnMiddleClick", false, {
4387
4430
  description: ( localize(
4388
- 631,
4431
+ 649,
4389
4432
  "Controls whether the editor will scroll when the middle button is pressed."
4390
4433
  ))
4391
4434
  }))),
4392
4435
  scrollPredominantAxis: register(( new EditorBooleanOption(EditorOption.scrollPredominantAxis, "scrollPredominantAxis", true, {
4393
4436
  description: ( localize(
4394
- 632,
4437
+ 650,
4395
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."
4396
4439
  ))
4397
4440
  }))),
4398
4441
  selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, "selectionClipboard", true, {
4399
- description: ( localize(633, "Controls whether the Linux primary clipboard should be supported.")),
4442
+ description: ( localize(651, "Controls whether the Linux primary clipboard should be supported.")),
4400
4443
  included: isLinux
4401
4444
  }))),
4402
4445
  selectionHighlight: register(( new EditorBooleanOption(EditorOption.selectionHighlight, "selectionHighlight", true, {
4403
4446
  description: ( localize(
4404
- 634,
4447
+ 652,
4405
4448
  "Controls whether the editor should highlight matches similar to the selection."
4406
4449
  ))
4407
4450
  }))),
@@ -4413,7 +4456,7 @@ const EditorOptions = {
4413
4456
  Constants.MAX_SAFE_SMALL_INTEGER,
4414
4457
  {
4415
4458
  description: ( localize(
4416
- 635,
4459
+ 653,
4417
4460
  "Controls how many characters can be in the selection before similiar matches are not highlighted. Set to zero for unlimited."
4418
4461
  ))
4419
4462
  }
@@ -4424,7 +4467,7 @@ const EditorOptions = {
4424
4467
  false,
4425
4468
  {
4426
4469
  description: ( localize(
4427
- 636,
4470
+ 654,
4428
4471
  "Controls whether the editor should highlight selection matches that span multiple lines."
4429
4472
  ))
4430
4473
  }
@@ -4436,15 +4479,15 @@ const EditorOptions = {
4436
4479
  "mouseover",
4437
4480
  ["always", "never", "mouseover"],
4438
4481
  {
4439
- enumDescriptions: [( localize(637, "Always show the folding controls.")), ( localize(638, "Never show the folding controls and reduce the gutter size.")), ( localize(639, "Only show the folding controls when the mouse is over the gutter."))],
4440
- description: ( localize(640, "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."))
4441
4484
  }
4442
4485
  ))),
4443
4486
  showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, "showUnused", true, {
4444
- description: ( localize(641, "Controls fading out of unused code."))
4487
+ description: ( localize(659, "Controls fading out of unused code."))
4445
4488
  }))),
4446
4489
  showDeprecated: register(( new EditorBooleanOption(EditorOption.showDeprecated, "showDeprecated", true, {
4447
- description: ( localize(642, "Controls strikethrough deprecated variables."))
4490
+ description: ( localize(660, "Controls strikethrough deprecated variables."))
4448
4491
  }))),
4449
4492
  inlayHints: register(( new EditorInlayHints())),
4450
4493
  snippetSuggestions: register(( new EditorStringEnumOption(
@@ -4453,16 +4496,16 @@ const EditorOptions = {
4453
4496
  "inline",
4454
4497
  ["top", "bottom", "inline", "none"],
4455
4498
  {
4456
- enumDescriptions: [( localize(643, "Show snippet suggestions on top of other suggestions.")), ( localize(644, "Show snippet suggestions below other suggestions.")), ( localize(645, "Show snippets suggestions with other suggestions.")), ( localize(646, "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."))],
4457
4500
  description: ( localize(
4458
- 647,
4501
+ 665,
4459
4502
  "Controls whether snippets are shown with other suggestions and how they are sorted."
4460
4503
  ))
4461
4504
  }
4462
4505
  ))),
4463
4506
  smartSelect: register(( new SmartSelect())),
4464
4507
  smoothScrolling: register(( new EditorBooleanOption(EditorOption.smoothScrolling, "smoothScrolling", false, {
4465
- description: ( localize(648, "Controls whether the editor will scroll using an animation."))
4508
+ description: ( localize(666, "Controls whether the editor will scroll using an animation."))
4466
4509
  }))),
4467
4510
  stopRenderingLineAfter: register(( new EditorIntOption(
4468
4511
  EditorOption.stopRenderingLineAfter,
@@ -4479,14 +4522,14 @@ const EditorOptions = {
4479
4522
  false,
4480
4523
  {
4481
4524
  description: ( localize(
4482
- 649,
4525
+ 667,
4483
4526
  "Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
4484
4527
  ))
4485
4528
  }
4486
4529
  ))),
4487
4530
  suggestFontSize: register(( new EditorIntOption(EditorOption.suggestFontSize, "suggestFontSize", 0, 0, 1000, {
4488
4531
  markdownDescription: ( localize(
4489
- 650,
4532
+ 668,
4490
4533
  "Font size for the suggest widget. When set to {0}, the value of {1} is used.",
4491
4534
  "`0`",
4492
4535
  "`#editor.fontSize#`"
@@ -4494,7 +4537,7 @@ const EditorOptions = {
4494
4537
  }))),
4495
4538
  suggestLineHeight: register(( new EditorIntOption(EditorOption.suggestLineHeight, "suggestLineHeight", 0, 0, 1000, {
4496
4539
  markdownDescription: ( localize(
4497
- 651,
4540
+ 669,
4498
4541
  "Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
4499
4542
  "`0`",
4500
4543
  "`#editor.lineHeight#`"
@@ -4506,7 +4549,7 @@ const EditorOptions = {
4506
4549
  true,
4507
4550
  {
4508
4551
  description: ( localize(
4509
- 652,
4552
+ 670,
4510
4553
  "Controls whether suggestions should automatically show up when typing trigger characters."
4511
4554
  ))
4512
4555
  }
@@ -4517,15 +4560,15 @@ const EditorOptions = {
4517
4560
  "first",
4518
4561
  ["first", "recentlyUsed", "recentlyUsedByPrefix"],
4519
4562
  {
4520
- markdownEnumDescriptions: [( localize(653, "Always select the first suggestion.")), ( localize(
4521
- 654,
4563
+ markdownEnumDescriptions: [( localize(671, "Always select the first suggestion.")), ( localize(
4564
+ 672,
4522
4565
  "Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
4523
4566
  )), ( localize(
4524
- 655,
4567
+ 673,
4525
4568
  "Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
4526
4569
  ))],
4527
4570
  description: ( localize(
4528
- 656,
4571
+ 674,
4529
4572
  "Controls how suggestions are pre-selected when showing the suggest list."
4530
4573
  ))
4531
4574
  }
@@ -4537,19 +4580,19 @@ const EditorOptions = {
4537
4580
  ["on", "off", "onlySnippets"],
4538
4581
  {
4539
4582
  enumDescriptions: [( localize(
4540
- 657,
4583
+ 675,
4541
4584
  "Tab complete will insert the best matching suggestion when pressing tab."
4542
- )), ( localize(658, "Disable tab completions.")), ( localize(
4543
- 659,
4585
+ )), ( localize(676, "Disable tab completions.")), ( localize(
4586
+ 677,
4544
4587
  "Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
4545
4588
  ))],
4546
- description: ( localize(660, "Enables tab completions."))
4589
+ description: ( localize(678, "Enables tab completions."))
4547
4590
  }
4548
4591
  ))),
4549
4592
  tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, "tabIndex", 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
4550
4593
  trimWhitespaceOnDelete: register(( new EditorBooleanOption(EditorOption.trimWhitespaceOnDelete, "trimWhitespaceOnDelete", false, {
4551
4594
  description: ( localize(
4552
- 661,
4595
+ 679,
4553
4596
  "Controls whether the editor will also delete the next line's indentation whitespace when deleting a newline."
4554
4597
  ))
4555
4598
  }))),
@@ -4560,31 +4603,31 @@ const EditorOptions = {
4560
4603
  "prompt",
4561
4604
  ["auto", "off", "prompt"],
4562
4605
  {
4563
- enumDescriptions: [( localize(662, "Unusual line terminators are automatically removed.")), ( localize(663, "Unusual line terminators are ignored.")), ( localize(664, "Unusual line terminators prompt to be removed."))],
4564
- description: ( localize(665, "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."))
4565
4608
  }
4566
4609
  ))),
4567
4610
  useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, "useShadowDOM", true))),
4568
4611
  useTabStops: register(( new EditorBooleanOption(EditorOption.useTabStops, "useTabStops", true, {
4569
4612
  description: ( localize(
4570
- 666,
4613
+ 684,
4571
4614
  "Spaces and tabs are inserted and deleted in alignment with tab stops."
4572
4615
  ))
4573
4616
  }))),
4574
4617
  wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, "wordBreak", "normal", ["normal", "keepAll"], {
4575
- markdownEnumDescriptions: [( localize(667, "Use the default line break rule.")), ( localize(
4576
- 668,
4618
+ markdownEnumDescriptions: [( localize(685, "Use the default line break rule.")), ( localize(
4619
+ 686,
4577
4620
  "Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
4578
4621
  ))],
4579
4622
  description: ( localize(
4580
- 669,
4623
+ 687,
4581
4624
  "Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
4582
4625
  ))
4583
4626
  }))),
4584
4627
  wordSegmenterLocales: register(( new WordSegmenterLocales())),
4585
4628
  wordSeparators: register(( new EditorStringOption(EditorOption.wordSeparators, "wordSeparators", USUAL_WORD_SEPARATORS, {
4586
4629
  description: ( localize(
4587
- 670,
4630
+ 688,
4588
4631
  "Characters that will be used as word separators when doing word related navigations or operations."
4589
4632
  ))
4590
4633
  }))),
@@ -4594,11 +4637,11 @@ const EditorOptions = {
4594
4637
  "off",
4595
4638
  ["off", "on", "wordWrapColumn", "bounded"],
4596
4639
  {
4597
- markdownEnumDescriptions: [( localize(671, "Lines will never wrap.")), ( localize(672, "Lines will wrap at the viewport width.")), ( localize(673, "Lines will wrap at `#editor.wordWrapColumn#`.")), ( localize(
4598
- 674,
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,
4599
4642
  "Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
4600
4643
  ))],
4601
- description: ( localize(675, "Controls how lines should wrap."))
4644
+ description: ( localize(693, "Controls how lines should wrap."))
4602
4645
  }
4603
4646
  ))),
4604
4647
  wordWrapBreakAfterCharacters: register(( new EditorStringOption(
@@ -4619,7 +4662,7 @@ const EditorOptions = {
4619
4662
  Constants.MAX_SAFE_SMALL_INTEGER,
4620
4663
  {
4621
4664
  markdownDescription: ( localize(
4622
- 676,
4665
+ 694,
4623
4666
  "Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
4624
4667
  ))
4625
4668
  }
@@ -4638,7 +4681,7 @@ const EditorOptions = {
4638
4681
  ))),
4639
4682
  wrapOnEscapedLineFeeds: register(( new EditorBooleanOption(EditorOption.wrapOnEscapedLineFeeds, "wrapOnEscapedLineFeeds", false, {
4640
4683
  markdownDescription: ( localize(
4641
- 677,
4684
+ 695,
4642
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```"
4643
4686
  ))
4644
4687
  }))),
@@ -4651,11 +4694,11 @@ const EditorOptions = {
4651
4694
  ["auto", "always", "never"],
4652
4695
  {
4653
4696
  enumDescriptions: [( localize(
4654
- 678,
4697
+ 696,
4655
4698
  "Show default color decorators only when no extension provides colors decorators."
4656
- )), ( localize(679, "Always show default color decorators.")), ( localize(680, "Never show default color decorators."))],
4699
+ )), ( localize(697, "Always show default color decorators.")), ( localize(698, "Never show default color decorators."))],
4657
4700
  description: ( localize(
4658
- 681,
4701
+ 699,
4659
4702
  "Controls whether inline color decorations should be shown using the default document color provider."
4660
4703
  ))
4661
4704
  }
@@ -4663,7 +4706,7 @@ const EditorOptions = {
4663
4706
  pixelRatio: register(( new EditorPixelRatio())),
4664
4707
  tabFocusMode: register(( new EditorBooleanOption(EditorOption.tabFocusMode, "tabFocusMode", false, {
4665
4708
  markdownDescription: ( localize(
4666
- 682,
4709
+ 700,
4667
4710
  "Controls whether the editor receives tabs or defers them to the workbench for navigation."
4668
4711
  ))
4669
4712
  }))),