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