@codingame/monaco-vscode-api 13.1.7 → 14.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (792) hide show
  1. package/extensions.d.ts +3 -2
  2. package/missing-services.js +177 -63
  3. package/monaco.d.ts +2 -1
  4. package/package.json +8 -8
  5. package/services.d.ts +2 -2
  6. package/services.js +2 -3
  7. package/vscode/src/vs/base/browser/cssValue.js +1 -1
  8. package/vscode/src/vs/base/browser/dom.js +4 -1
  9. package/vscode/src/vs/base/browser/markdownRenderer.js +12 -0
  10. package/vscode/src/vs/base/browser/touch.js +2 -1
  11. package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css.js +1 -1
  12. package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -1
  13. package/vscode/src/vs/base/browser/ui/button/button.js +10 -6
  14. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css.js +1 -1
  15. package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +2 -1
  16. package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +2 -2
  17. package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css.js +1 -1
  18. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +1 -1
  19. package/vscode/src/vs/base/browser/ui/list/listView.d.ts +10 -0
  20. package/vscode/src/vs/base/browser/ui/list/listView.js +102 -6
  21. package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +1 -0
  22. package/vscode/src/vs/base/browser/ui/menu/menu.js +4 -1
  23. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -1
  24. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +6 -6
  25. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +1 -2
  26. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +18 -8
  27. package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.js +2 -2
  28. package/vscode/src/vs/base/common/actions.d.ts +1 -1
  29. package/vscode/src/vs/base/common/arrays.d.ts +1 -2
  30. package/vscode/src/vs/base/common/arrays.js +2 -2
  31. package/vscode/src/vs/base/common/assert.d.ts +1 -1
  32. package/vscode/src/vs/base/common/assert.js +5 -2
  33. package/vscode/src/vs/base/common/async.js +16 -2
  34. package/vscode/src/vs/base/common/codicons.d.ts +1 -0
  35. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
  36. package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
  37. package/vscode/src/vs/base/common/color.d.ts +2 -2
  38. package/vscode/src/vs/base/common/color.js +4 -4
  39. package/vscode/src/vs/base/common/decorators.d.ts +1 -0
  40. package/vscode/src/vs/base/common/decorators.js +2 -0
  41. package/vscode/src/vs/base/common/errors.d.ts +2 -0
  42. package/vscode/src/vs/base/common/errors.js +10 -2
  43. package/vscode/src/vs/base/common/event.d.ts +3 -3
  44. package/vscode/src/vs/base/common/event.js +2 -2
  45. package/vscode/src/vs/base/common/filters.js +1 -1
  46. package/vscode/src/vs/base/common/iterator.d.ts +1 -1
  47. package/vscode/src/vs/base/common/iterator.js +8 -2
  48. package/vscode/src/vs/base/common/lifecycle.d.ts +7 -0
  49. package/vscode/src/vs/base/common/map.d.ts +8 -16
  50. package/vscode/src/vs/base/common/map.js +43 -30
  51. package/vscode/src/vs/base/common/network.d.ts +2 -2
  52. package/vscode/src/vs/base/common/network.js +4 -4
  53. package/vscode/src/vs/base/common/numbers.d.ts +1 -0
  54. package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +2 -2
  55. package/vscode/src/vs/base/common/observableInternal/autorun.js +14 -1
  56. package/vscode/src/vs/base/common/observableInternal/base.d.ts +13 -9
  57. package/vscode/src/vs/base/common/observableInternal/base.js +7 -1
  58. package/vscode/src/vs/base/common/observableInternal/derived.d.ts +5 -3
  59. package/vscode/src/vs/base/common/observableInternal/derived.js +31 -4
  60. package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
  61. package/vscode/src/vs/base/common/observableInternal/lazyObservableValue.js +5 -2
  62. package/vscode/src/vs/base/common/observableInternal/logging.d.ts +10 -4
  63. package/vscode/src/vs/base/common/observableInternal/logging.js +310 -1
  64. package/vscode/src/vs/base/common/observableInternal/utils.d.ts +9 -9
  65. package/vscode/src/vs/base/common/observableInternal/utils.js +13 -4
  66. package/vscode/src/vs/base/common/path.js +1 -2
  67. package/vscode/src/vs/base/common/product.d.ts +5 -0
  68. package/vscode/src/vs/base/common/stream.d.ts +1 -1
  69. package/vscode/src/vs/base/common/stream.js +13 -5
  70. package/vscode/src/vs/base/common/strings.d.ts +1 -0
  71. package/vscode/src/vs/base/common/strings.js +19 -9
  72. package/vscode/src/vs/base/common/types.d.ts +2 -1
  73. package/vscode/src/vs/base/common/types.js +9 -4
  74. package/vscode/src/vs/base/common/uuid.js +1 -50
  75. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +2 -1
  76. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +26 -12
  77. package/vscode/src/vs/editor/browser/editorDom.js +3 -3
  78. package/vscode/src/vs/editor/browser/editorExtensions.js +15 -0
  79. package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +7 -2
  80. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +1 -1
  81. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +34 -27
  82. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +1 -1
  83. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.js +8 -8
  84. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.js +3 -3
  85. package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +7 -0
  86. package/vscode/src/vs/editor/browser/gpu/contentSegmenter.js +49 -0
  87. package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.d.ts → css/decorationCssRuleExtractor.d.ts} +1 -1
  88. package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.js → css/decorationCssRuleExtractor.js} +2 -2
  89. package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +15 -0
  90. package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +37 -0
  91. package/vscode/src/vs/editor/browser/gpu/{media → css/media}/decorationCssRuleExtractor.css.js +1 -1
  92. package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +6 -2
  93. package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +5 -2
  94. package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +57 -14
  95. package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +2 -1
  96. package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.d.ts +4 -1
  97. package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.js +5 -1
  98. package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.d.ts +25 -0
  99. package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.js +16 -0
  100. package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.d.ts → renderStrategy/fullFileRenderStrategy.d.ts} +14 -13
  101. package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.js → renderStrategy/fullFileRenderStrategy.js} +100 -57
  102. package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.js → renderStrategy/fullFileRenderStrategy.wgsl.js} +3 -3
  103. package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +40 -0
  104. package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +287 -0
  105. package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +4 -3
  106. package/vscode/src/vs/editor/browser/gpu/taskQueue.js +17 -2
  107. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +8 -9
  108. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +45 -34
  109. package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +28 -21
  110. package/vscode/src/vs/editor/browser/observableCodeEditor.js +68 -2
  111. package/vscode/src/vs/editor/browser/point.d.ts +9 -0
  112. package/vscode/src/vs/editor/browser/point.js +22 -0
  113. package/vscode/src/vs/editor/browser/rect.d.ts +30 -0
  114. package/vscode/src/vs/editor/browser/rect.js +131 -0
  115. package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +1 -1
  116. package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +1 -1
  117. package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +1 -1
  118. package/vscode/src/vs/editor/browser/view/viewLayer.js +8 -1
  119. package/vscode/src/vs/editor/browser/view.d.ts +1 -0
  120. package/vscode/src/vs/editor/browser/view.js +9 -5
  121. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +1 -1
  122. package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +7 -3
  123. package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +140 -56
  124. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +1 -0
  125. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +5 -0
  126. package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.d.ts +2 -1
  127. package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.js +8 -1
  128. package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +1 -0
  129. package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +14 -9
  130. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.d.ts +12 -10
  131. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +12 -5
  132. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -1
  133. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +4 -2
  134. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +29 -7
  135. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +28 -28
  136. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +2 -2
  137. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +0 -1
  138. package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.d.ts +1 -1
  139. package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +2 -2
  140. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.d.ts +2 -2
  141. package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +3 -6
  142. package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +3 -10
  143. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +8 -6
  144. package/vscode/src/vs/editor/common/config/editorOptions.js +409 -392
  145. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
  146. package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +3 -0
  147. package/vscode/src/vs/editor/common/core/offsetEdit.js +9 -0
  148. package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
  149. package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
  150. package/vscode/src/vs/editor/common/core/position.js +1 -1
  151. package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +1 -0
  152. package/vscode/src/vs/editor/common/core/positionToOffset.js +20 -1
  153. package/vscode/src/vs/editor/common/core/range.d.ts +1 -0
  154. package/vscode/src/vs/editor/common/core/range.js +3 -0
  155. package/vscode/src/vs/editor/common/core/textEdit.d.ts +0 -6
  156. package/vscode/src/vs/editor/common/core/textEdit.js +0 -1
  157. package/vscode/src/vs/editor/common/core/textLength.js +1 -1
  158. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +10 -7
  159. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts +2 -1
  160. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js +6 -6
  161. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +1 -0
  162. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js +20 -0
  163. package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +1 -0
  164. package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +1 -1
  165. package/vscode/src/vs/editor/common/diff/rangeMapping.js +1 -22
  166. package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
  167. package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +1 -1
  168. package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js +5 -5
  169. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  170. package/vscode/src/vs/editor/common/languages.d.ts +21 -25
  171. package/vscode/src/vs/editor/common/languages.js +27 -27
  172. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  173. package/vscode/src/vs/editor/common/model/textModel.d.ts +1 -0
  174. package/vscode/src/vs/editor/common/model/textModel.js +6 -3
  175. package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +2 -2
  176. package/vscode/src/vs/editor/common/model/textModelTokens.js +11 -18
  177. package/vscode/src/vs/editor/common/model/tokenStore.d.ts +59 -0
  178. package/vscode/src/vs/editor/common/model/tokenStore.js +384 -0
  179. package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.d.ts +5 -5
  180. package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +10 -15
  181. package/vscode/src/vs/editor/common/model/tokens.d.ts +2 -2
  182. package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.d.ts +44 -0
  183. package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.js +114 -0
  184. package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +4 -5
  185. package/vscode/src/vs/editor/common/model/treeSitterTokens.js +18 -10
  186. package/vscode/src/vs/editor/common/services/editorSimpleWorker.d.ts +1 -1
  187. package/vscode/src/vs/editor/common/services/editorWorker.d.ts +1 -1
  188. package/vscode/src/vs/editor/common/services/languageFeatures.d.ts +1 -2
  189. package/vscode/src/vs/editor/common/services/languageFeaturesService.d.ts +1 -2
  190. package/vscode/src/vs/editor/common/services/languageFeaturesService.js +0 -1
  191. package/vscode/src/vs/editor/common/services/treeSitterParserService.d.ts +18 -5
  192. package/vscode/src/vs/editor/common/standaloneStrings.d.ts +3 -0
  193. package/vscode/src/vs/editor/common/standaloneStrings.js +54 -38
  194. package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +1 -13
  195. package/vscode/src/vs/editor/common/tokenizationTextModelPart.js +1 -13
  196. package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
  197. package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
  198. package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +5 -0
  199. package/vscode/src/vs/editor/common/tokens/tokenArray.js +24 -0
  200. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  201. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  202. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  203. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  204. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  205. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  206. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  207. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
  208. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  209. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  210. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  211. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +1 -0
  212. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  213. package/vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.js +1 -1
  214. package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +1 -1
  215. package/vscode/src/vs/editor/contrib/codelens/browser/codelens.js +7 -5
  216. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  217. package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css.js +1 -1
  218. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  219. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  220. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPicker.d.ts +2 -0
  221. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPicker.js +12 -0
  222. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.d.ts +1 -2
  223. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.js +2 -9
  224. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +3 -5
  225. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  226. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.d.ts +12 -8
  227. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.js +41 -41
  228. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.d.ts +2 -0
  229. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +13 -8
  230. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  231. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
  232. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  233. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  234. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +32 -33
  235. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
  236. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  237. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  238. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  239. package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -0
  240. package/vscode/src/vs/editor/contrib/find/browser/findController.js +20 -17
  241. package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +2 -1
  242. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +32 -30
  243. package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.d.ts +21 -0
  244. package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.js +76 -0
  245. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  246. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  247. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  248. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  249. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.d.ts +1 -1
  250. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +40 -36
  251. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
  252. package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.js +56 -30
  253. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.d.ts +1 -1
  254. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +43 -41
  255. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +3 -2
  256. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +5 -4
  257. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  258. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  259. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  260. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  261. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +5 -5
  262. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.d.ts +1 -3
  263. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +54 -59
  264. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.d.ts +1 -0
  265. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +47 -16
  266. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.d.ts +4 -0
  267. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.js +27 -15
  268. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +10 -1
  269. package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverWidget.js +2 -1
  270. package/vscode/src/vs/editor/contrib/hover/browser/hover.css.js +1 -1
  271. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.d.ts +4 -4
  272. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  273. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.d.ts +1 -0
  274. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +4 -3
  275. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.d.ts +4 -0
  276. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +38 -25
  277. package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +2 -1
  278. package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.js +1 -0
  279. package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +4 -1
  280. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +3 -1
  281. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +65 -33
  282. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  283. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  284. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
  285. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
  286. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +2 -2
  287. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +38 -24
  288. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.d.ts +1 -0
  289. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -10
  290. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +7 -3
  291. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +50 -7
  292. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +8 -7
  293. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
  294. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +2 -2
  295. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +2 -0
  296. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.js +1 -1
  297. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +18 -19
  298. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +55 -27
  299. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +22 -7
  300. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +199 -21
  301. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.js +3 -0
  302. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +5 -1
  303. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +38 -15
  304. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
  305. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +1 -0
  306. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +10 -10
  307. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +16 -3
  308. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +65 -30
  309. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.d.ts +6 -5
  310. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +7 -6
  311. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.d.ts +29 -0
  312. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.js +141 -0
  313. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.d.ts +19 -0
  314. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.js +143 -0
  315. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.d.ts +37 -0
  316. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.js +259 -0
  317. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.d.ts → indicatorView.d.ts} +1 -2
  318. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.js → indicatorView.js} +9 -8
  319. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.d.ts +5 -2
  320. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.js +39 -19
  321. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.d.ts +32 -0
  322. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.js +204 -0
  323. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.d.ts +71 -0
  324. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.js +584 -0
  325. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.d.ts +123 -12
  326. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.js +348 -20
  327. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css.js +6 -0
  328. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.d.ts +41 -0
  329. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.js +365 -0
  330. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsViewAndDiffProducer.d.ts → viewAndDiffProducer.d.ts} +7 -13
  331. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/viewAndDiffProducer.js +92 -0
  332. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.d.ts +58 -0
  333. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.js +520 -0
  334. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  335. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
  336. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  337. package/vscode/src/vs/editor/contrib/links/browser/getLinks.d.ts +1 -0
  338. package/vscode/src/vs/editor/contrib/links/browser/getLinks.js +16 -12
  339. package/vscode/src/vs/editor/contrib/links/browser/links.d.ts +1 -0
  340. package/vscode/src/vs/editor/contrib/links/browser/links.js +13 -10
  341. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  342. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  343. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  344. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +5 -5
  345. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.d.ts +1 -2
  346. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -26
  347. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  348. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  349. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  350. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  351. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  352. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  353. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  354. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css.js +1 -1
  355. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.d.ts +2 -3
  356. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +19 -15
  357. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +14 -0
  358. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +48 -19
  359. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +7 -0
  360. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +25 -6
  361. package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css.js +1 -1
  362. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
  363. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
  364. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +20 -20
  365. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +9 -7
  366. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +0 -1
  367. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +3 -7
  368. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +5 -1
  369. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  370. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  371. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  372. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  373. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  374. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  375. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  376. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
  377. package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +2 -2
  378. package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +8 -3
  379. package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +4 -0
  380. package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
  381. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -1
  382. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +3 -7
  383. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.js +1 -1
  384. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -2
  385. package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +1 -0
  386. package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +4 -4
  387. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +52 -52
  388. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  389. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
  390. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
  391. package/vscode/src/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem.d.ts +39 -0
  392. package/vscode/src/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem.js +145 -0
  393. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +1 -0
  394. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +6 -6
  395. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  396. package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -1
  397. package/vscode/src/vs/platform/actions/common/actions.js +9 -6
  398. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  399. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  400. package/vscode/src/vs/platform/commands/common/commands.js +2 -2
  401. package/vscode/src/vs/platform/configuration/common/configuration.d.ts +4 -1
  402. package/vscode/src/vs/platform/configuration/common/configuration.js +3 -0
  403. package/vscode/src/vs/platform/configuration/common/configurationModels.d.ts +2 -2
  404. package/vscode/src/vs/platform/configuration/common/configurationModels.js +39 -21
  405. package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +9 -4
  406. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +25 -15
  407. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  408. package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
  409. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  410. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  411. package/vscode/src/vs/platform/contextview/browser/contextView.service.d.ts +2 -2
  412. package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
  413. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  414. package/vscode/src/vs/platform/environment/common/argv.d.ts +2 -0
  415. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -1
  416. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +5 -3
  417. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +17 -6
  418. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +5 -5
  419. package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +2 -1
  420. package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -1
  421. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  422. package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +3 -5
  423. package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +8 -13
  424. package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.service.d.ts +2 -2
  425. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +20 -14
  426. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +127 -125
  427. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.service.d.ts +8 -9
  428. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
  429. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +56 -25
  430. package/vscode/src/vs/platform/extensions/common/extensions.js +8 -1
  431. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +11 -8
  432. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -9
  433. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  434. package/vscode/src/vs/platform/files/common/files.js +6 -6
  435. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  436. package/vscode/src/vs/platform/instantiation/common/extensions.d.ts +3 -2
  437. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
  438. package/vscode/src/vs/platform/label/common/label.service.d.ts +2 -1
  439. package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
  440. package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -0
  441. package/vscode/src/vs/platform/list/browser/listService.js +27 -27
  442. package/vscode/src/vs/platform/log/common/log.d.ts +6 -0
  443. package/vscode/src/vs/platform/log/common/log.js +18 -9
  444. package/vscode/src/vs/platform/markers/common/markers.js +3 -3
  445. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css.js +1 -1
  446. package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +5 -0
  447. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +19 -9
  448. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
  449. package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +11 -1
  450. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +241 -12
  451. package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +4 -0
  452. package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -0
  453. package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +1 -1
  454. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  455. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -1
  456. package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +4 -0
  457. package/vscode/src/vs/platform/request/common/request.d.ts +2 -2
  458. package/vscode/src/vs/platform/request/common/request.js +171 -112
  459. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +2 -0
  460. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +3 -1
  461. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -2
  462. package/vscode/src/vs/platform/terminal/common/terminal.js +5 -1
  463. package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
  464. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  465. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
  466. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  467. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +96 -96
  468. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +45 -45
  469. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  470. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  471. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  472. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
  473. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  474. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  475. package/vscode/src/vs/platform/theme/common/iconRegistry.d.ts +7 -0
  476. package/vscode/src/vs/platform/theme/common/iconRegistry.js +17 -7
  477. package/vscode/src/vs/platform/theme/common/theme.d.ts +6 -0
  478. package/vscode/src/vs/platform/theme/common/theme.js +8 -1
  479. package/vscode/src/vs/platform/theme/common/themeService.d.ts +12 -3
  480. package/vscode/src/vs/platform/theme/common/themeService.js +5 -5
  481. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  482. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  483. package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +7 -5
  484. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  485. package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +3 -3
  486. package/vscode/src/vs/platform/window/common/window.d.ts +6 -1
  487. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  488. package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
  489. package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +3 -2
  490. package/vscode/src/vs/workbench/api/browser/statusBarService.js +3 -2
  491. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +10 -14
  492. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +18 -11
  493. package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -20
  494. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -0
  495. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +37 -10
  496. package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +4 -18
  497. package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +2 -2
  498. package/vscode/src/vs/workbench/api/common/extHostCommands.js +1 -1
  499. package/vscode/src/vs/workbench/api/common/extHostComments.js +3 -5
  500. package/vscode/src/vs/workbench/api/common/extHostConfiguration.d.ts +16 -0
  501. package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +4 -0
  502. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  503. package/vscode/src/vs/workbench/api/common/extHostDialogs.d.ts +1 -2
  504. package/vscode/src/vs/workbench/api/common/extHostDialogs.js +1 -5
  505. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
  506. package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
  507. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +0 -2
  508. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +29 -65
  509. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +3 -2
  510. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +33 -13
  511. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -2
  512. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  513. package/vscode/src/vs/workbench/api/common/extHostMemento.js +6 -1
  514. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  515. package/vscode/src/vs/workbench/api/common/extHostSCM.js +2 -1
  516. package/vscode/src/vs/workbench/api/common/extHostStatusBar.d.ts +10 -2
  517. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +47 -7
  518. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +12 -8
  519. package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +3 -1
  520. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +66 -5
  521. package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +1 -0
  522. package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +18 -1
  523. package/vscode/src/vs/workbench/api/common/extHostTimeline.js +2 -2
  524. package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
  525. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  526. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +4 -13
  527. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +7 -61
  528. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +24 -3
  529. package/vscode/src/vs/workbench/api/common/extHostTypes.js +37 -5
  530. package/vscode/src/vs/workbench/api/common/extHostVariableResolverService.js +22 -2
  531. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +1 -1
  532. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -2
  533. package/vscode/src/vs/workbench/api/common/extensionHostMain.js +17 -8
  534. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
  535. package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
  536. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  537. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.d.ts +12 -0
  538. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +247 -0
  539. package/vscode/src/vs/workbench/common/activity.d.ts +2 -0
  540. package/vscode/src/vs/workbench/common/activity.js +6 -0
  541. package/vscode/src/vs/workbench/common/configuration.js +12 -12
  542. package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
  543. package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
  544. package/vscode/src/vs/workbench/common/editor/resourceEditorInput.d.ts +44 -0
  545. package/vscode/src/vs/workbench/common/editor/resourceEditorInput.js +166 -0
  546. package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
  547. package/vscode/src/vs/workbench/common/editor.js +4 -4
  548. package/vscode/src/vs/workbench/common/theme.js +159 -164
  549. package/vscode/src/vs/workbench/common/views.js +4 -4
  550. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +2 -1
  551. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +152 -142
  552. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +14 -14
  553. package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.d.ts +1 -0
  554. package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +16 -1
  555. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +28 -0
  556. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +521 -0
  557. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +3 -0
  558. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +20 -0
  559. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +136 -0
  560. package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +51 -0
  561. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -3
  562. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
  563. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +8 -0
  564. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.js +6 -0
  565. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.d.ts +4 -0
  566. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.js +15 -0
  567. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.d.ts +23 -0
  568. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.js +309 -0
  569. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.d.ts +81 -0
  570. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.js +681 -0
  571. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.d.ts +57 -0
  572. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.js +169 -0
  573. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.d.ts +20 -0
  574. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.js +296 -0
  575. package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.d.ts +41 -0
  576. package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.js +198 -0
  577. package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.service.d.ts +1 -1
  578. package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.d.ts +3 -0
  579. package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.js +15 -0
  580. package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorController.css.js +6 -0
  581. package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorOverlay.css.js +6 -0
  582. package/vscode/src/vs/workbench/contrib/chat/common/annotations.d.ts +20 -0
  583. package/vscode/src/vs/workbench/contrib/chat/common/annotations.js +134 -0
  584. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +16 -4
  585. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +48 -5
  586. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -0
  587. package/vscode/src/vs/workbench/contrib/chat/common/chatCodeMapperService.service.d.ts +1 -2
  588. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +15 -3
  589. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +61 -29
  590. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -3
  591. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +17 -2
  592. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +3 -4
  593. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +444 -0
  594. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +991 -0
  595. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +112 -0
  596. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +181 -0
  597. package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.d.ts +35 -0
  598. package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.js +5 -0
  599. package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +6 -1
  600. package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +1 -2
  601. package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -3
  602. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
  603. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -2
  604. package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.d.ts +234 -0
  605. package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.js +375 -0
  606. package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
  607. package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.d.ts +8 -0
  608. package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.js +38 -0
  609. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.d.ts +12 -0
  610. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +42 -0
  611. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +3 -0
  612. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +1 -0
  613. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +10 -5
  614. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +7 -7
  615. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +9 -0
  616. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +27 -0
  617. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +34 -0
  618. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +168 -0
  619. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
  620. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  621. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.d.ts +2 -2
  622. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  623. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  624. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  625. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
  626. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  627. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  628. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
  629. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  630. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  631. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +9 -19
  632. package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
  633. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.d.ts +2 -2
  634. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  635. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +1 -0
  636. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +14 -10
  637. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  638. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +4 -0
  639. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
  640. package/vscode/src/vs/workbench/contrib/editSessions/common/editSessions.service.d.ts +1 -1
  641. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +167 -0
  642. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
  643. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -2
  644. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  645. package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +2 -2
  646. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  647. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  648. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  649. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +2 -2
  650. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  651. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +10 -0
  652. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +4 -3
  653. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  654. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  655. package/vscode/src/vs/workbench/contrib/logs/common/defaultLogLevels.service.d.ts +0 -1
  656. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
  657. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.d.ts +2 -0
  658. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.js +7 -0
  659. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.d.ts +1 -1
  660. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +602 -0
  661. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.js +143 -0
  662. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
  663. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +6 -4
  664. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +2 -0
  665. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.d.ts +60 -0
  666. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +316 -0
  667. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
  668. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
  669. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
  670. package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.d.ts +13 -0
  671. package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.js +73 -0
  672. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.d.ts +36 -0
  673. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.js +11 -0
  674. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +3 -3
  675. package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.d.ts +1 -1
  676. package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +8 -0
  677. package/vscode/src/vs/workbench/contrib/scm/browser/{diff.service.js → quickDiffModel.service.js} +2 -2
  678. package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +5 -1
  679. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.d.ts +30 -1
  680. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +95 -0
  681. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +17 -0
  682. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +82 -0
  683. package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +1 -1
  684. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  685. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  686. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  687. package/vscode/src/vs/workbench/contrib/speech/common/speechService.d.ts +2 -1
  688. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +30 -29
  689. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  690. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +3 -3
  691. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -0
  692. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +3 -2
  693. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +2 -2
  694. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  695. package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +1 -1
  696. package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +1 -1
  697. package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +1 -0
  698. package/vscode/src/vs/workbench/contrib/testing/common/testId.js +3 -0
  699. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  700. package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
  701. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
  702. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
  703. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +1 -0
  704. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +1 -0
  705. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +26 -15
  706. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  707. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +5 -1
  708. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +10 -4
  709. package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
  710. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
  711. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.service.d.ts +1 -1
  712. package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +3 -2
  713. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +83 -83
  714. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
  715. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  716. package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +63 -0
  717. package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +164 -0
  718. package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +1 -1
  719. package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
  720. package/vscode/src/vs/workbench/services/log/common/logConstants.d.ts +2 -0
  721. package/vscode/src/vs/workbench/services/log/common/logConstants.js +3 -1
  722. package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
  723. package/vscode/src/vs/workbench/services/output/common/output.d.ts +51 -8
  724. package/vscode/src/vs/workbench/services/output/common/output.js +30 -4
  725. package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +8 -1
  726. package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +1 -1
  727. package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +2 -2
  728. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  729. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  730. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  731. package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +9 -4
  732. package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.js +5 -1
  733. package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +1 -1
  734. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  735. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +15 -21
  736. package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +21 -2
  737. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.service.d.ts +3 -3
  738. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +11 -11
  739. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
  740. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
  741. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
  742. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
  743. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
  744. package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
  745. package/vscode-dts/vscode.d.ts +375 -32
  746. package/vscode-dts/vscode.proposed.aiRelatedInformation.d.ts +1 -1
  747. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +11 -0
  748. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +9 -0
  749. package/vscode-dts/vscode.proposed.chatProvider.d.ts +4 -0
  750. package/vscode-dts/vscode.proposed.chatReadonlyPromptReference.d.ts +17 -0
  751. package/vscode-dts/vscode.proposed.chatReferenceBinaryData.d.ts +5 -0
  752. package/vscode-dts/vscode.proposed.d.ts +132 -131
  753. package/vscode-dts/vscode.proposed.externalUriOpener.d.ts +3 -3
  754. package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +2 -0
  755. package/vscode-dts/vscode.proposed.inlineEdit.d.ts +14 -3
  756. package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +21 -1
  757. package/vscode-dts/vscode.proposed.notebookVariableProvider.d.ts +3 -3
  758. package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +1 -1
  759. package/vscode-dts/vscode.proposed.resolvers.d.ts +3 -3
  760. package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +4 -2
  761. package/vscode-dts/vscode.proposed.statusBarItemTooltip.d.ts +19 -0
  762. package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +10 -0
  763. package/vscode-dts/vscode.proposed.terminalQuickFixProvider.d.ts +2 -2
  764. package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +18 -0
  765. package/vscode-dts/vscode.proposed.terminalShellType.d.ts +40 -0
  766. package/vscode/src/vs/base/common/observableInternal/index.js +0 -8
  767. package/vscode/src/vs/base/common/observableInternal/promise.d.ts +0 -28
  768. package/vscode/src/vs/base/common/observableInternal/promise.js +0 -65
  769. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.css.js +0 -6
  770. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +0 -45
  771. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +0 -426
  772. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewAndDiffProducer.js +0 -116
  773. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.d.ts +0 -6
  774. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.js +0 -6
  775. package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.d.ts +0 -1
  776. package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.js +0 -24
  777. package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.d.ts +0 -8
  778. package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.js +0 -6
  779. package/vscode/src/vs/workbench/contrib/scm/browser/diff.service.d.ts +0 -9
  780. package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.d.ts +0 -22
  781. package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.js +0 -66
  782. package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.d.ts +0 -155
  783. package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.js +0 -1454
  784. package/vscode/src/vs/workbench/contrib/scm/browser/media/dirtydiffDecorator.css.js +0 -6
  785. package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +0 -164
  786. package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +0 -74
  787. package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.d.ts +0 -8
  788. package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.js +0 -93
  789. package/vscode-dts/vscode.proposed.documentPaste.d.ts +0 -316
  790. package/vscode-dts/vscode.proposed.fileComments.d.ts +0 -42
  791. package/vscode-dts/vscode.proposed.showLocal.d.ts +0 -19
  792. /package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.d.ts → renderStrategy/fullFileRenderStrategy.wgsl.d.ts} +0 -0
@@ -27,11 +27,11 @@ function WORKBENCH_BACKGROUND(theme) {
27
27
  }
28
28
  }
29
29
  const TAB_ACTIVE_BACKGROUND = registerColor('tab.activeBackground', editorBackground, ( localize(
30
- 3724,
30
+ 3770,
31
31
  "Active tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
32
32
  )));
33
33
  const TAB_UNFOCUSED_ACTIVE_BACKGROUND = registerColor('tab.unfocusedActiveBackground', TAB_ACTIVE_BACKGROUND, ( localize(
34
- 3725,
34
+ 3771,
35
35
  "Active tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
36
36
  )));
37
37
  const TAB_INACTIVE_BACKGROUND = registerColor('tab.inactiveBackground', {
@@ -40,11 +40,11 @@ const TAB_INACTIVE_BACKGROUND = registerColor('tab.inactiveBackground', {
40
40
  hcDark: null,
41
41
  hcLight: null,
42
42
  }, ( localize(
43
- 3726,
43
+ 3772,
44
44
  "Inactive tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
45
45
  )));
46
46
  const TAB_UNFOCUSED_INACTIVE_BACKGROUND = registerColor('tab.unfocusedInactiveBackground', TAB_INACTIVE_BACKGROUND, ( localize(
47
- 3727,
47
+ 3773,
48
48
  "Inactive tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
49
49
  )));
50
50
  const TAB_ACTIVE_FOREGROUND = registerColor('tab.activeForeground', {
@@ -53,7 +53,7 @@ const TAB_ACTIVE_FOREGROUND = registerColor('tab.activeForeground', {
53
53
  hcDark: Color.white,
54
54
  hcLight: '#292929'
55
55
  }, ( localize(
56
- 3728,
56
+ 3774,
57
57
  "Active tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
58
58
  )));
59
59
  const TAB_INACTIVE_FOREGROUND = registerColor('tab.inactiveForeground', {
@@ -62,7 +62,7 @@ const TAB_INACTIVE_FOREGROUND = registerColor('tab.inactiveForeground', {
62
62
  hcDark: Color.white,
63
63
  hcLight: '#292929'
64
64
  }, ( localize(
65
- 3729,
65
+ 3775,
66
66
  "Inactive tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
67
67
  )));
68
68
  const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor('tab.unfocusedActiveForeground', {
@@ -71,7 +71,7 @@ const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor('tab.unfocusedActiveForegr
71
71
  hcDark: Color.white,
72
72
  hcLight: '#292929'
73
73
  }, ( localize(
74
- 3730,
74
+ 3776,
75
75
  "Active tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
76
76
  )));
77
77
  registerColor('tab.unfocusedInactiveForeground', {
@@ -80,11 +80,11 @@ registerColor('tab.unfocusedInactiveForeground', {
80
80
  hcDark: Color.white,
81
81
  hcLight: '#292929'
82
82
  }, ( localize(
83
- 3731,
83
+ 3777,
84
84
  "Inactive tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
85
85
  )));
86
86
  const TAB_HOVER_BACKGROUND = registerColor('tab.hoverBackground', null, ( localize(
87
- 3732,
87
+ 3778,
88
88
  "Tab background color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
89
89
  )));
90
90
  const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor('tab.unfocusedHoverBackground', {
@@ -93,11 +93,11 @@ const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor('tab.unfocusedHoverBackgrou
93
93
  hcDark: null,
94
94
  hcLight: null
95
95
  }, ( localize(
96
- 3733,
96
+ 3779,
97
97
  "Tab background color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
98
98
  )));
99
99
  const TAB_HOVER_FOREGROUND = registerColor('tab.hoverForeground', null, ( localize(
100
- 3734,
100
+ 3780,
101
101
  "Tab foreground color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
102
102
  )));
103
103
  const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor('tab.unfocusedHoverForeground', {
@@ -106,7 +106,7 @@ const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor('tab.unfocusedHoverForegrou
106
106
  hcDark: null,
107
107
  hcLight: null
108
108
  }, ( localize(
109
- 3735,
109
+ 3781,
110
110
  "Tab foreground color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
111
111
  )));
112
112
  const TAB_BORDER = registerColor('tab.border', {
@@ -115,7 +115,7 @@ const TAB_BORDER = registerColor('tab.border', {
115
115
  hcDark: contrastBorder,
116
116
  hcLight: contrastBorder,
117
117
  }, ( localize(
118
- 3736,
118
+ 3782,
119
119
  "Border to separate tabs from each other. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
120
120
  )));
121
121
  const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
@@ -124,11 +124,11 @@ const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
124
124
  hcDark: contrastBorder,
125
125
  hcLight: contrastBorder
126
126
  }, ( localize(
127
- 3737,
127
+ 3783,
128
128
  "Border to separate pinned tabs from other tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
129
129
  )));
130
130
  const TAB_ACTIVE_BORDER = registerColor('tab.activeBorder', null, ( localize(
131
- 3738,
131
+ 3784,
132
132
  "Border on the bottom of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
133
133
  )));
134
134
  const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor('tab.unfocusedActiveBorder', {
@@ -137,7 +137,7 @@ const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor('tab.unfocusedActiveBorder', {
137
137
  hcDark: null,
138
138
  hcLight: null
139
139
  }, ( localize(
140
- 3739,
140
+ 3785,
141
141
  "Border on the bottom of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
142
142
  )));
143
143
  const TAB_ACTIVE_BORDER_TOP = registerColor('tab.activeBorderTop', {
@@ -146,7 +146,7 @@ const TAB_ACTIVE_BORDER_TOP = registerColor('tab.activeBorderTop', {
146
146
  hcDark: null,
147
147
  hcLight: '#B5200D'
148
148
  }, ( localize(
149
- 3740,
149
+ 3786,
150
150
  "Border to the top of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
151
151
  )));
152
152
  const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor('tab.unfocusedActiveBorderTop', {
@@ -155,23 +155,23 @@ const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor('tab.unfocusedActiveBorder
155
155
  hcDark: null,
156
156
  hcLight: '#B5200D'
157
157
  }, ( localize(
158
- 3741,
158
+ 3787,
159
159
  "Border to the top of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
160
160
  )));
161
161
  const TAB_SELECTED_BORDER_TOP = registerColor('tab.selectedBorderTop', TAB_ACTIVE_BORDER_TOP, ( localize(
162
- 3742,
162
+ 3788,
163
163
  "Border to the top of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
164
164
  )));
165
165
  registerColor('tab.selectedBackground', TAB_ACTIVE_BACKGROUND, ( localize(
166
- 3743,
166
+ 3789,
167
167
  "Background of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
168
168
  )));
169
169
  registerColor('tab.selectedForeground', TAB_ACTIVE_FOREGROUND, ( localize(
170
- 3744,
170
+ 3790,
171
171
  "Foreground of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
172
172
  )));
173
173
  const TAB_HOVER_BORDER = registerColor('tab.hoverBorder', null, ( localize(
174
- 3745,
174
+ 3791,
175
175
  "Border to highlight tabs when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
176
176
  )));
177
177
  const TAB_UNFOCUSED_HOVER_BORDER = registerColor('tab.unfocusedHoverBorder', {
@@ -180,7 +180,7 @@ const TAB_UNFOCUSED_HOVER_BORDER = registerColor('tab.unfocusedHoverBorder', {
180
180
  hcDark: null,
181
181
  hcLight: contrastBorder
182
182
  }, ( localize(
183
- 3746,
183
+ 3792,
184
184
  "Border to highlight tabs in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
185
185
  )));
186
186
  registerColor('tab.dragAndDropBorder', {
@@ -189,7 +189,7 @@ registerColor('tab.dragAndDropBorder', {
189
189
  hcDark: activeContrastBorder,
190
190
  hcLight: activeContrastBorder
191
191
  }, ( localize(
192
- 3747,
192
+ 3793,
193
193
  "Border between tabs to indicate that a tab can be inserted between two tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
194
194
  )));
195
195
  const TAB_ACTIVE_MODIFIED_BORDER = registerColor('tab.activeModifiedBorder', {
@@ -198,7 +198,7 @@ const TAB_ACTIVE_MODIFIED_BORDER = registerColor('tab.activeModifiedBorder', {
198
198
  hcDark: null,
199
199
  hcLight: contrastBorder
200
200
  }, ( localize(
201
- 3748,
201
+ 3794,
202
202
  "Border on the top of modified active tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
203
203
  )));
204
204
  const TAB_INACTIVE_MODIFIED_BORDER = registerColor('tab.inactiveModifiedBorder', {
@@ -207,7 +207,7 @@ const TAB_INACTIVE_MODIFIED_BORDER = registerColor('tab.inactiveModifiedBorder',
207
207
  hcDark: Color.white,
208
208
  hcLight: contrastBorder
209
209
  }, ( localize(
210
- 3749,
210
+ 3795,
211
211
  "Border on the top of modified inactive tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
212
212
  )));
213
213
  const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedActiveModifiedBorder', {
@@ -216,7 +216,7 @@ const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedActiveM
216
216
  hcDark: Color.white,
217
217
  hcLight: contrastBorder
218
218
  }, ( localize(
219
- 3750,
219
+ 3796,
220
220
  "Border on the top of modified active tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
221
221
  )));
222
222
  const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedInactiveModifiedBorder', {
@@ -225,15 +225,15 @@ const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedInact
225
225
  hcDark: Color.white,
226
226
  hcLight: contrastBorder
227
227
  }, ( localize(
228
- 3751,
228
+ 3797,
229
229
  "Border on the top of modified inactive tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
230
230
  )));
231
231
  const EDITOR_PANE_BACKGROUND = registerColor('editorPane.background', editorBackground, ( localize(
232
- 3752,
232
+ 3798,
233
233
  "Background color of the editor pane visible on the left and right side of the centered editor layout."
234
234
  )));
235
235
  const EDITOR_GROUP_EMPTY_BACKGROUND = registerColor('editorGroup.emptyBackground', null, ( localize(
236
- 3753,
236
+ 3799,
237
237
  "Background color of an empty editor group. Editor groups are the containers of editors."
238
238
  )));
239
239
  registerColor('editorGroup.focusedEmptyBorder', {
@@ -242,7 +242,7 @@ registerColor('editorGroup.focusedEmptyBorder', {
242
242
  hcDark: focusBorder,
243
243
  hcLight: focusBorder
244
244
  }, ( localize(
245
- 3754,
245
+ 3800,
246
246
  "Border color of an empty editor group that is focused. Editor groups are the containers of editors."
247
247
  )));
248
248
  const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor('editorGroupHeader.tabsBackground', {
@@ -251,15 +251,15 @@ const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor('editorGroupHeader.tab
251
251
  hcDark: null,
252
252
  hcLight: null
253
253
  }, ( localize(
254
- 3755,
254
+ 3801,
255
255
  "Background color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
256
256
  )));
257
257
  const EDITOR_GROUP_HEADER_TABS_BORDER = registerColor('editorGroupHeader.tabsBorder', null, ( localize(
258
- 3756,
258
+ 3802,
259
259
  "Border color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
260
260
  )));
261
261
  const EDITOR_GROUP_HEADER_NO_TABS_BACKGROUND = registerColor('editorGroupHeader.noTabsBackground', editorBackground, ( localize(
262
- 3757,
262
+ 3803,
263
263
  "Background color of the editor group title header when (`\"workbench.editor.showTabs\": \"single\"`). Editor groups are the containers of editors."
264
264
  )));
265
265
  const EDITOR_GROUP_HEADER_BORDER = registerColor('editorGroupHeader.border', {
@@ -268,7 +268,7 @@ const EDITOR_GROUP_HEADER_BORDER = registerColor('editorGroupHeader.border', {
268
268
  hcDark: contrastBorder,
269
269
  hcLight: contrastBorder
270
270
  }, ( localize(
271
- 3758,
271
+ 3804,
272
272
  "Border color of the editor group title header. Editor groups are the containers of editors."
273
273
  )));
274
274
  const EDITOR_GROUP_BORDER = registerColor('editorGroup.border', {
@@ -277,7 +277,7 @@ const EDITOR_GROUP_BORDER = registerColor('editorGroup.border', {
277
277
  hcDark: contrastBorder,
278
278
  hcLight: contrastBorder
279
279
  }, ( localize(
280
- 3759,
280
+ 3805,
281
281
  "Color to separate multiple editor groups from each other. Editor groups are the containers of editors."
282
282
  )));
283
283
  const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor('editorGroup.dropBackground', {
@@ -286,15 +286,15 @@ const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor('editorGroup.dropBackgroun
286
286
  hcDark: null,
287
287
  hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.50))
288
288
  }, ( localize(
289
- 3760,
289
+ 3806,
290
290
  "Background color when dragging editors around. The color should have transparency so that the editor contents can still shine through."
291
291
  )));
292
292
  const EDITOR_DROP_INTO_PROMPT_FOREGROUND = registerColor('editorGroup.dropIntoPromptForeground', editorWidgetForeground, ( localize(
293
- 3761,
293
+ 3807,
294
294
  "Foreground color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
295
295
  )));
296
296
  const EDITOR_DROP_INTO_PROMPT_BACKGROUND = registerColor('editorGroup.dropIntoPromptBackground', editorWidgetBackground, ( localize(
297
- 3762,
297
+ 3808,
298
298
  "Background color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
299
299
  )));
300
300
  const EDITOR_DROP_INTO_PROMPT_BORDER = registerColor('editorGroup.dropIntoPromptBorder', {
@@ -303,19 +303,19 @@ const EDITOR_DROP_INTO_PROMPT_BORDER = registerColor('editorGroup.dropIntoPrompt
303
303
  hcDark: contrastBorder,
304
304
  hcLight: contrastBorder
305
305
  }, ( localize(
306
- 3763,
306
+ 3809,
307
307
  "Border color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
308
308
  )));
309
309
  const SIDE_BY_SIDE_EDITOR_HORIZONTAL_BORDER = registerColor('sideBySideEditor.horizontalBorder', EDITOR_GROUP_BORDER, ( localize(
310
- 3764,
310
+ 3810,
311
311
  "Color to separate two editors from each other when shown side by side in an editor group from top to bottom."
312
312
  )));
313
313
  const SIDE_BY_SIDE_EDITOR_VERTICAL_BORDER = registerColor('sideBySideEditor.verticalBorder', EDITOR_GROUP_BORDER, ( localize(
314
- 3765,
314
+ 3811,
315
315
  "Color to separate two editors from each other when shown side by side in an editor group from left to right."
316
316
  )));
317
317
  const PANEL_BACKGROUND = registerColor('panel.background', editorBackground, ( localize(
318
- 3766,
318
+ 3812,
319
319
  "Panel background color. Panels are shown below the editor area and contain views like output and integrated terminal."
320
320
  )));
321
321
  const PANEL_BORDER = registerColor('panel.border', {
@@ -324,7 +324,7 @@ const PANEL_BORDER = registerColor('panel.border', {
324
324
  hcDark: contrastBorder,
325
325
  hcLight: contrastBorder
326
326
  }, ( localize(
327
- 3767,
327
+ 3813,
328
328
  "Panel border color to separate the panel from the editor. Panels are shown below the editor area and contain views like output and integrated terminal."
329
329
  )));
330
330
  const PANEL_TITLE_BORDER = registerColor('panelTitle.border', {
@@ -333,7 +333,7 @@ const PANEL_TITLE_BORDER = registerColor('panelTitle.border', {
333
333
  hcDark: PANEL_BORDER,
334
334
  hcLight: PANEL_BORDER
335
335
  }, ( localize(
336
- 3768,
336
+ 3814,
337
337
  "Panel title border color on the bottom, separating the title from the views. Panels are shown below the editor area and contain views like output and integrated terminal."
338
338
  )));
339
339
  const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.activeForeground', {
@@ -342,7 +342,7 @@ const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.activeForeground
342
342
  hcDark: Color.white,
343
343
  hcLight: editorForeground
344
344
  }, ( localize(
345
- 3769,
345
+ 3815,
346
346
  "Title color for the active panel. Panels are shown below the editor area and contain views like output and integrated terminal."
347
347
  )));
348
348
  const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.inactiveForeground', {
@@ -351,7 +351,7 @@ const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.inactiveForegr
351
351
  hcDark: Color.white,
352
352
  hcLight: editorForeground
353
353
  }, ( localize(
354
- 3770,
354
+ 3816,
355
355
  "Title color for the inactive panel. Panels are shown below the editor area and contain views like output and integrated terminal."
356
356
  )));
357
357
  const PANEL_ACTIVE_TITLE_BORDER = registerColor('panelTitle.activeBorder', {
@@ -360,7 +360,7 @@ const PANEL_ACTIVE_TITLE_BORDER = registerColor('panelTitle.activeBorder', {
360
360
  hcDark: contrastBorder,
361
361
  hcLight: '#B5200D'
362
362
  }, ( localize(
363
- 3771,
363
+ 3817,
364
364
  "Border color for the active panel title. Panels are shown below the editor area and contain views like output and integrated terminal."
365
365
  )));
366
366
  registerColor('panelInput.border', {
@@ -368,13 +368,13 @@ registerColor('panelInput.border', {
368
368
  light: ( Color.fromHex('#ddd')),
369
369
  hcDark: inputBorder,
370
370
  hcLight: inputBorder
371
- }, ( localize(3772, "Input box border for inputs in the panel.")));
371
+ }, ( localize(3818, "Input box border for inputs in the panel.")));
372
372
  const PANEL_DRAG_AND_DROP_BORDER = registerColor('panel.dropBorder', PANEL_ACTIVE_TITLE_FOREGROUND, ( localize(
373
- 3773,
373
+ 3819,
374
374
  "Drag and drop feedback color for the panel titles. Panels are shown below the editor area and contain views like output and integrated terminal."
375
375
  )));
376
376
  const PANEL_SECTION_DRAG_AND_DROP_BACKGROUND = registerColor('panelSection.dropBackground', EDITOR_DRAG_AND_DROP_BACKGROUND, ( localize(
377
- 3774,
377
+ 3820,
378
378
  "Drag and drop feedback color for the panel sections. The color should have transparency so that the panel sections can still shine through. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
379
379
  )));
380
380
  const PANEL_SECTION_HEADER_BACKGROUND = registerColor('panelSectionHeader.background', {
@@ -383,41 +383,41 @@ const PANEL_SECTION_HEADER_BACKGROUND = registerColor('panelSectionHeader.backgr
383
383
  hcDark: null,
384
384
  hcLight: null,
385
385
  }, ( localize(
386
- 3775,
386
+ 3821,
387
387
  "Panel section header background color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
388
388
  )));
389
389
  const PANEL_SECTION_HEADER_FOREGROUND = registerColor('panelSectionHeader.foreground', null, ( localize(
390
- 3776,
390
+ 3822,
391
391
  "Panel section header foreground color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
392
392
  )));
393
393
  const PANEL_SECTION_HEADER_BORDER = registerColor('panelSectionHeader.border', contrastBorder, ( localize(
394
- 3777,
394
+ 3823,
395
395
  "Panel section header border color used when multiple views are stacked vertically in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
396
396
  )));
397
397
  const PANEL_SECTION_BORDER = registerColor('panelSection.border', PANEL_BORDER, ( localize(
398
- 3778,
398
+ 3824,
399
399
  "Panel section border color used when multiple views are stacked horizontally in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
400
400
  )));
401
- const PANEL_STICKY_SCROLL_BACKGROUND = registerColor('panelStickyScroll.background', PANEL_BACKGROUND, ( localize(3779, "Background color of sticky scroll in the panel.")));
402
- const PANEL_STICKY_SCROLL_BORDER = registerColor('panelStickyScroll.border', null, ( localize(3780, "Border color of sticky scroll in the panel.")));
403
- const PANEL_STICKY_SCROLL_SHADOW = registerColor('panelStickyScroll.shadow', scrollbarShadow, ( localize(3781, "Shadow color of sticky scroll in the panel.")));
404
- const OUTPUT_VIEW_BACKGROUND = registerColor('outputView.background', null, ( localize(3782, "Output view background color.")));
405
- registerColor('outputViewStickyScroll.background', OUTPUT_VIEW_BACKGROUND, ( localize(3783, "Output view sticky scroll background color.")));
401
+ const PANEL_STICKY_SCROLL_BACKGROUND = registerColor('panelStickyScroll.background', PANEL_BACKGROUND, ( localize(3825, "Background color of sticky scroll in the panel.")));
402
+ const PANEL_STICKY_SCROLL_BORDER = registerColor('panelStickyScroll.border', null, ( localize(3826, "Border color of sticky scroll in the panel.")));
403
+ const PANEL_STICKY_SCROLL_SHADOW = registerColor('panelStickyScroll.shadow', scrollbarShadow, ( localize(3827, "Shadow color of sticky scroll in the panel.")));
404
+ const OUTPUT_VIEW_BACKGROUND = registerColor('outputView.background', null, ( localize(3828, "Output view background color.")));
405
+ registerColor('outputViewStickyScroll.background', OUTPUT_VIEW_BACKGROUND, ( localize(3829, "Output view sticky scroll background color.")));
406
406
  registerColor('banner.background', {
407
407
  dark: listActiveSelectionBackground,
408
408
  light: ( darken(listActiveSelectionBackground, 0.3)),
409
409
  hcDark: listActiveSelectionBackground,
410
410
  hcLight: listActiveSelectionBackground
411
411
  }, ( localize(
412
- 3784,
412
+ 3830,
413
413
  "Banner background color. The banner is shown under the title bar of the window."
414
414
  )));
415
415
  registerColor('banner.foreground', listActiveSelectionForeground, ( localize(
416
- 3785,
416
+ 3831,
417
417
  "Banner foreground color. The banner is shown under the title bar of the window."
418
418
  )));
419
419
  registerColor('banner.iconForeground', editorInfoForeground, ( localize(
420
- 3786,
420
+ 3832,
421
421
  "Banner icon color. The banner is shown under the title bar of the window."
422
422
  )));
423
423
  const STATUS_BAR_FOREGROUND = registerColor('statusBar.foreground', {
@@ -426,11 +426,11 @@ const STATUS_BAR_FOREGROUND = registerColor('statusBar.foreground', {
426
426
  hcDark: '#FFFFFF',
427
427
  hcLight: editorForeground
428
428
  }, ( localize(
429
- 3787,
429
+ 3833,
430
430
  "Status bar foreground color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
431
431
  )));
432
432
  const STATUS_BAR_NO_FOLDER_FOREGROUND = registerColor('statusBar.noFolderForeground', STATUS_BAR_FOREGROUND, ( localize(
433
- 3788,
433
+ 3834,
434
434
  "Status bar foreground color when no folder is opened. The status bar is shown in the bottom of the window."
435
435
  )));
436
436
  const STATUS_BAR_BACKGROUND = registerColor('statusBar.background', {
@@ -439,7 +439,7 @@ const STATUS_BAR_BACKGROUND = registerColor('statusBar.background', {
439
439
  hcDark: null,
440
440
  hcLight: null,
441
441
  }, ( localize(
442
- 3789,
442
+ 3835,
443
443
  "Status bar background color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
444
444
  )));
445
445
  const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor('statusBar.noFolderBackground', {
@@ -448,7 +448,7 @@ const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor('statusBar.noFolderBackgro
448
448
  hcDark: null,
449
449
  hcLight: null,
450
450
  }, ( localize(
451
- 3790,
451
+ 3836,
452
452
  "Status bar background color when no folder is opened. The status bar is shown in the bottom of the window."
453
453
  )));
454
454
  const STATUS_BAR_BORDER = registerColor('statusBar.border', {
@@ -457,7 +457,7 @@ const STATUS_BAR_BORDER = registerColor('statusBar.border', {
457
457
  hcDark: contrastBorder,
458
458
  hcLight: contrastBorder
459
459
  }, ( localize(
460
- 3791,
460
+ 3837,
461
461
  "Status bar border color separating to the sidebar and editor. The status bar is shown in the bottom of the window."
462
462
  )));
463
463
  const STATUS_BAR_FOCUS_BORDER = registerColor('statusBar.focusBorder', {
@@ -466,11 +466,11 @@ const STATUS_BAR_FOCUS_BORDER = registerColor('statusBar.focusBorder', {
466
466
  hcDark: null,
467
467
  hcLight: STATUS_BAR_FOREGROUND
468
468
  }, ( localize(
469
- 3792,
469
+ 3838,
470
470
  "Status bar border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
471
471
  )));
472
472
  const STATUS_BAR_NO_FOLDER_BORDER = registerColor('statusBar.noFolderBorder', STATUS_BAR_BORDER, ( localize(
473
- 3793,
473
+ 3839,
474
474
  "Status bar border color separating to the sidebar and editor when no folder is opened. The status bar is shown in the bottom of the window."
475
475
  )));
476
476
  registerColor('statusBarItem.activeBackground', {
@@ -479,7 +479,7 @@ registerColor('statusBarItem.activeBackground', {
479
479
  hcDark: ( Color.white.transparent(0.18)),
480
480
  hcLight: ( Color.black.transparent(0.18))
481
481
  }, ( localize(
482
- 3794,
482
+ 3840,
483
483
  "Status bar item background color when clicking. The status bar is shown in the bottom of the window."
484
484
  )));
485
485
  const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor('statusBarItem.focusBorder', {
@@ -488,7 +488,7 @@ const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor('statusBarItem.focusBorder',
488
488
  hcDark: null,
489
489
  hcLight: activeContrastBorder
490
490
  }, ( localize(
491
- 3795,
491
+ 3841,
492
492
  "Status bar item border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
493
493
  )));
494
494
  const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor('statusBarItem.hoverBackground', {
@@ -497,11 +497,11 @@ const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor('statusBarItem.hoverBackg
497
497
  hcDark: ( Color.white.transparent(0.12)),
498
498
  hcLight: ( Color.black.transparent(0.12))
499
499
  }, ( localize(
500
- 3796,
500
+ 3842,
501
501
  "Status bar item background color when hovering. The status bar is shown in the bottom of the window."
502
502
  )));
503
503
  const STATUS_BAR_ITEM_HOVER_FOREGROUND = registerColor('statusBarItem.hoverForeground', STATUS_BAR_FOREGROUND, ( localize(
504
- 3797,
504
+ 3843,
505
505
  "Status bar item foreground color when hovering. The status bar is shown in the bottom of the window."
506
506
  )));
507
507
  const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor('statusBarItem.compactHoverBackground', {
@@ -510,28 +510,23 @@ const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor('statusBarItem.co
510
510
  hcDark: ( Color.white.transparent(0.20)),
511
511
  hcLight: ( Color.black.transparent(0.20))
512
512
  }, ( localize(
513
- 3798,
513
+ 3844,
514
514
  "Status bar item background color when hovering an item that contains two hovers. The status bar is shown in the bottom of the window."
515
515
  )));
516
516
  registerColor('statusBarItem.prominentForeground', STATUS_BAR_FOREGROUND, ( localize(
517
- 3799,
517
+ 3845,
518
518
  "Status bar prominent items foreground color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
519
519
  )));
520
520
  registerColor('statusBarItem.prominentBackground', ( Color.black.transparent(0.5)), ( localize(
521
- 3800,
521
+ 3846,
522
522
  "Status bar prominent items background color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
523
523
  )));
524
524
  registerColor('statusBarItem.prominentHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
525
- 3801,
525
+ 3847,
526
526
  "Status bar prominent items foreground color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
527
527
  )));
528
- registerColor('statusBarItem.prominentHoverBackground', {
529
- dark: ( Color.black.transparent(0.3)),
530
- light: ( Color.black.transparent(0.3)),
531
- hcDark: ( Color.black.transparent(0.3)),
532
- hcLight: null
533
- }, ( localize(
534
- 3802,
528
+ registerColor('statusBarItem.prominentHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
529
+ 3848,
535
530
  "Status bar prominent items background color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
536
531
  )));
537
532
  const STATUS_BAR_ERROR_ITEM_BACKGROUND = registerColor('statusBarItem.errorBackground', {
@@ -540,19 +535,19 @@ const STATUS_BAR_ERROR_ITEM_BACKGROUND = registerColor('statusBarItem.errorBackg
540
535
  hcDark: null,
541
536
  hcLight: '#B5200D'
542
537
  }, ( localize(
543
- 3803,
538
+ 3849,
544
539
  "Status bar error items background color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
545
540
  )));
546
541
  registerColor('statusBarItem.errorForeground', Color.white, ( localize(
547
- 3804,
542
+ 3850,
548
543
  "Status bar error items foreground color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
549
544
  )));
550
545
  registerColor('statusBarItem.errorHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
551
- 3805,
546
+ 3851,
552
547
  "Status bar error items foreground color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
553
548
  )));
554
549
  registerColor('statusBarItem.errorHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
555
- 3806,
550
+ 3852,
556
551
  "Status bar error items background color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
557
552
  )));
558
553
  const STATUS_BAR_WARNING_ITEM_BACKGROUND = registerColor('statusBarItem.warningBackground', {
@@ -561,19 +556,19 @@ const STATUS_BAR_WARNING_ITEM_BACKGROUND = registerColor('statusBarItem.warningB
561
556
  hcDark: null,
562
557
  hcLight: '#895503'
563
558
  }, ( localize(
564
- 3807,
559
+ 3853,
565
560
  "Status bar warning items background color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
566
561
  )));
567
562
  registerColor('statusBarItem.warningForeground', Color.white, ( localize(
568
- 3808,
563
+ 3854,
569
564
  "Status bar warning items foreground color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
570
565
  )));
571
566
  registerColor('statusBarItem.warningHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
572
- 3809,
567
+ 3855,
573
568
  "Status bar warning items foreground color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
574
569
  )));
575
570
  registerColor('statusBarItem.warningHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
576
- 3810,
571
+ 3856,
577
572
  "Status bar warning items background color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
578
573
  )));
579
574
  const ACTIVITY_BAR_BACKGROUND = registerColor('activityBar.background', {
@@ -582,7 +577,7 @@ const ACTIVITY_BAR_BACKGROUND = registerColor('activityBar.background', {
582
577
  hcDark: '#000000',
583
578
  hcLight: '#FFFFFF'
584
579
  }, ( localize(
585
- 3811,
580
+ 3857,
586
581
  "Activity bar background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
587
582
  )));
588
583
  const ACTIVITY_BAR_FOREGROUND = registerColor('activityBar.foreground', {
@@ -591,7 +586,7 @@ const ACTIVITY_BAR_FOREGROUND = registerColor('activityBar.foreground', {
591
586
  hcDark: Color.white,
592
587
  hcLight: editorForeground
593
588
  }, ( localize(
594
- 3812,
589
+ 3858,
595
590
  "Activity bar item foreground color when it is active. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
596
591
  )));
597
592
  const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor('activityBar.inactiveForeground', {
@@ -600,7 +595,7 @@ const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor('activityBar.inactiveFore
600
595
  hcDark: Color.white,
601
596
  hcLight: editorForeground
602
597
  }, ( localize(
603
- 3813,
598
+ 3859,
604
599
  "Activity bar item foreground color when it is inactive. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
605
600
  )));
606
601
  const ACTIVITY_BAR_BORDER = registerColor('activityBar.border', {
@@ -609,7 +604,7 @@ const ACTIVITY_BAR_BORDER = registerColor('activityBar.border', {
609
604
  hcDark: contrastBorder,
610
605
  hcLight: contrastBorder
611
606
  }, ( localize(
612
- 3814,
607
+ 3860,
613
608
  "Activity bar border color separating to the side bar. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
614
609
  )));
615
610
  const ACTIVITY_BAR_ACTIVE_BORDER = registerColor('activityBar.activeBorder', {
@@ -618,7 +613,7 @@ const ACTIVITY_BAR_ACTIVE_BORDER = registerColor('activityBar.activeBorder', {
618
613
  hcDark: contrastBorder,
619
614
  hcLight: contrastBorder
620
615
  }, ( localize(
621
- 3815,
616
+ 3861,
622
617
  "Activity bar border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
623
618
  )));
624
619
  const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor('activityBar.activeFocusBorder', {
@@ -627,11 +622,11 @@ const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor('activityBar.activeFocusB
627
622
  hcDark: null,
628
623
  hcLight: '#B5200D'
629
624
  }, ( localize(
630
- 3816,
625
+ 3862,
631
626
  "Activity bar focus border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
632
627
  )));
633
628
  const ACTIVITY_BAR_ACTIVE_BACKGROUND = registerColor('activityBar.activeBackground', null, ( localize(
634
- 3817,
629
+ 3863,
635
630
  "Activity bar background color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
636
631
  )));
637
632
  const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor('activityBar.dropBorder', {
@@ -640,7 +635,7 @@ const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor('activityBar.dropBorder'
640
635
  hcDark: null,
641
636
  hcLight: null,
642
637
  }, ( localize(
643
- 3818,
638
+ 3864,
644
639
  "Drag and drop feedback color for the activity bar items. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
645
640
  )));
646
641
  const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor('activityBarBadge.background', {
@@ -649,11 +644,11 @@ const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor('activityBarBadge.background
649
644
  hcDark: '#000000',
650
645
  hcLight: '#0F4A85'
651
646
  }, ( localize(
652
- 3819,
647
+ 3865,
653
648
  "Activity notification badge background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
654
649
  )));
655
650
  const ACTIVITY_BAR_BADGE_FOREGROUND = registerColor('activityBarBadge.foreground', Color.white, ( localize(
656
- 3820,
651
+ 3866,
657
652
  "Activity notification badge foreground color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
658
653
  )));
659
654
  const ACTIVITY_BAR_TOP_FOREGROUND = registerColor('activityBarTop.foreground', {
@@ -662,7 +657,7 @@ const ACTIVITY_BAR_TOP_FOREGROUND = registerColor('activityBarTop.foreground', {
662
657
  hcDark: Color.white,
663
658
  hcLight: editorForeground
664
659
  }, ( localize(
665
- 3821,
660
+ 3867,
666
661
  "Active foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
667
662
  )));
668
663
  const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor('activityBarTop.activeBorder', {
@@ -671,11 +666,11 @@ const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor('activityBarTop.activeBorde
671
666
  hcDark: contrastBorder,
672
667
  hcLight: '#B5200D'
673
668
  }, ( localize(
674
- 3822,
669
+ 3868,
675
670
  "Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
676
671
  )));
677
672
  registerColor('activityBarTop.activeBackground', null, ( localize(
678
- 3823,
673
+ 3869,
679
674
  "Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
680
675
  )));
681
676
  const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inactiveForeground', {
@@ -684,21 +679,21 @@ const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inact
684
679
  hcDark: Color.white,
685
680
  hcLight: editorForeground
686
681
  }, ( localize(
687
- 3824,
682
+ 3870,
688
683
  "Inactive foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
689
684
  )));
690
685
  const ACTIVITY_BAR_TOP_DRAG_AND_DROP_BORDER = registerColor('activityBarTop.dropBorder', ACTIVITY_BAR_TOP_FOREGROUND, ( localize(
691
- 3825,
686
+ 3871,
692
687
  "Drag and drop feedback color for the items in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
693
688
  )));
694
- registerColor('activityBarTop.background', null, ( localize(3826, "Background color of the activity bar when set to top / bottom.")));
689
+ registerColor('activityBarTop.background', null, ( localize(3872, "Background color of the activity bar when set to top / bottom.")));
695
690
  registerColor('profileBadge.background', {
696
691
  dark: '#4D4D4D',
697
692
  light: '#C4C4C4',
698
693
  hcDark: Color.white,
699
694
  hcLight: Color.black
700
695
  }, ( localize(
701
- 3827,
696
+ 3873,
702
697
  "Profile badge background color. The profile badge shows on top of the settings gear icon in the activity bar."
703
698
  )));
704
699
  registerColor('profileBadge.foreground', {
@@ -707,13 +702,13 @@ registerColor('profileBadge.foreground', {
707
702
  hcDark: Color.black,
708
703
  hcLight: Color.white
709
704
  }, ( localize(
710
- 3828,
705
+ 3874,
711
706
  "Profile badge foreground color. The profile badge shows on top of the settings gear icon in the activity bar."
712
707
  )));
713
- const STATUS_BAR_REMOTE_ITEM_BACKGROUND = registerColor('statusBarItem.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3829, "Background color for the remote indicator on the status bar.")));
714
- const STATUS_BAR_REMOTE_ITEM_FOREGROUND = registerColor('statusBarItem.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3830, "Foreground color for the remote indicator on the status bar.")));
708
+ const STATUS_BAR_REMOTE_ITEM_BACKGROUND = registerColor('statusBarItem.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3875, "Background color for the remote indicator on the status bar.")));
709
+ const STATUS_BAR_REMOTE_ITEM_FOREGROUND = registerColor('statusBarItem.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3876, "Foreground color for the remote indicator on the status bar.")));
715
710
  registerColor('statusBarItem.remoteHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
716
- 3831,
711
+ 3877,
717
712
  "Foreground color for the remote indicator on the status bar when hovering."
718
713
  )));
719
714
  registerColor('statusBarItem.remoteHoverBackground', {
@@ -722,13 +717,13 @@ registerColor('statusBarItem.remoteHoverBackground', {
722
717
  hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
723
718
  hcLight: null
724
719
  }, ( localize(
725
- 3832,
720
+ 3878,
726
721
  "Background color for the remote indicator on the status bar when hovering."
727
722
  )));
728
- registerColor('statusBarItem.offlineBackground', '#6c1717', ( localize(3833, "Status bar item background color when the workbench is offline.")));
729
- registerColor('statusBarItem.offlineForeground', STATUS_BAR_REMOTE_ITEM_FOREGROUND, ( localize(3834, "Status bar item foreground color when the workbench is offline.")));
723
+ registerColor('statusBarItem.offlineBackground', '#6c1717', ( localize(3879, "Status bar item background color when the workbench is offline.")));
724
+ registerColor('statusBarItem.offlineForeground', STATUS_BAR_REMOTE_ITEM_FOREGROUND, ( localize(3880, "Status bar item foreground color when the workbench is offline.")));
730
725
  registerColor('statusBarItem.offlineHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
731
- 3835,
726
+ 3881,
732
727
  "Status bar item foreground hover color when the workbench is offline."
733
728
  )));
734
729
  registerColor('statusBarItem.offlineHoverBackground', {
@@ -737,22 +732,22 @@ registerColor('statusBarItem.offlineHoverBackground', {
737
732
  hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
738
733
  hcLight: null
739
734
  }, ( localize(
740
- 3836,
735
+ 3882,
741
736
  "Status bar item background hover color when the workbench is offline."
742
737
  )));
743
- const EXTENSION_BADGE_REMOTE_BACKGROUND = registerColor('extensionBadge.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3837, "Background color for the remote badge in the extensions view.")));
744
- const EXTENSION_BADGE_REMOTE_FOREGROUND = registerColor('extensionBadge.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3838, "Foreground color for the remote badge in the extensions view.")));
738
+ const EXTENSION_BADGE_REMOTE_BACKGROUND = registerColor('extensionBadge.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3883, "Background color for the remote badge in the extensions view.")));
739
+ const EXTENSION_BADGE_REMOTE_FOREGROUND = registerColor('extensionBadge.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3884, "Foreground color for the remote badge in the extensions view.")));
745
740
  const SIDE_BAR_BACKGROUND = registerColor('sideBar.background', {
746
741
  dark: '#252526',
747
742
  light: '#F3F3F3',
748
743
  hcDark: '#000000',
749
744
  hcLight: '#FFFFFF'
750
745
  }, ( localize(
751
- 3839,
746
+ 3885,
752
747
  "Side bar background color. The side bar is the container for views like explorer and search."
753
748
  )));
754
749
  const SIDE_BAR_FOREGROUND = registerColor('sideBar.foreground', null, ( localize(
755
- 3840,
750
+ 3886,
756
751
  "Side bar foreground color. The side bar is the container for views like explorer and search."
757
752
  )));
758
753
  const SIDE_BAR_BORDER = registerColor('sideBar.border', {
@@ -761,15 +756,15 @@ const SIDE_BAR_BORDER = registerColor('sideBar.border', {
761
756
  hcDark: contrastBorder,
762
757
  hcLight: contrastBorder
763
758
  }, ( localize(
764
- 3841,
759
+ 3887,
765
760
  "Side bar border color on the side separating to the editor. The side bar is the container for views like explorer and search."
766
761
  )));
767
762
  registerColor('sideBarTitle.background', SIDE_BAR_BACKGROUND, ( localize(
768
- 3842,
763
+ 3888,
769
764
  "Side bar title background color. The side bar is the container for views like explorer and search."
770
765
  )));
771
766
  const SIDE_BAR_TITLE_FOREGROUND = registerColor('sideBarTitle.foreground', SIDE_BAR_FOREGROUND, ( localize(
772
- 3843,
767
+ 3889,
773
768
  "Side bar title foreground color. The side bar is the container for views like explorer and search."
774
769
  )));
775
770
  const SIDE_BAR_TITLE_BORDER = registerColor('sideBarTitle.border', {
@@ -778,11 +773,11 @@ const SIDE_BAR_TITLE_BORDER = registerColor('sideBarTitle.border', {
778
773
  hcDark: SIDE_BAR_BORDER,
779
774
  hcLight: SIDE_BAR_BORDER
780
775
  }, ( localize(
781
- 3844,
776
+ 3890,
782
777
  "Side bar title border color on the bottom, separating the title from the views. The side bar is the container for views like explorer and search."
783
778
  )));
784
779
  const SIDE_BAR_DRAG_AND_DROP_BACKGROUND = registerColor('sideBar.dropBackground', EDITOR_DRAG_AND_DROP_BACKGROUND, ( localize(
785
- 3845,
780
+ 3891,
786
781
  "Drag and drop feedback color for the side bar sections. The color should have transparency so that the side bar sections can still shine through. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
787
782
  )));
788
783
  const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor('sideBarSectionHeader.background', {
@@ -791,82 +786,82 @@ const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor('sideBarSectionHeader.b
791
786
  hcDark: null,
792
787
  hcLight: null
793
788
  }, ( localize(
794
- 3846,
789
+ 3892,
795
790
  "Side bar section header background color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
796
791
  )));
797
792
  const SIDE_BAR_SECTION_HEADER_FOREGROUND = registerColor('sideBarSectionHeader.foreground', SIDE_BAR_FOREGROUND, ( localize(
798
- 3847,
793
+ 3893,
799
794
  "Side bar section header foreground color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
800
795
  )));
801
796
  const SIDE_BAR_SECTION_HEADER_BORDER = registerColor('sideBarSectionHeader.border', contrastBorder, ( localize(
802
- 3848,
797
+ 3894,
803
798
  "Side bar section header border color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
804
799
  )));
805
800
  registerColor('sideBarActivityBarTop.border', SIDE_BAR_SECTION_HEADER_BORDER, ( localize(
806
- 3849,
801
+ 3895,
807
802
  "Border color between the activity bar at the top/bottom and the views."
808
803
  )));
809
- const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor('sideBarStickyScroll.background', SIDE_BAR_BACKGROUND, ( localize(3850, "Background color of sticky scroll in the side bar.")));
810
- const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor('sideBarStickyScroll.border', null, ( localize(3851, "Border color of sticky scroll in the side bar.")));
811
- const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor('sideBarStickyScroll.shadow', scrollbarShadow, ( localize(3852, "Shadow color of sticky scroll in the side bar.")));
804
+ const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor('sideBarStickyScroll.background', SIDE_BAR_BACKGROUND, ( localize(3896, "Background color of sticky scroll in the side bar.")));
805
+ const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor('sideBarStickyScroll.border', null, ( localize(3897, "Border color of sticky scroll in the side bar.")));
806
+ const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor('sideBarStickyScroll.shadow', scrollbarShadow, ( localize(3898, "Shadow color of sticky scroll in the side bar.")));
812
807
  const TITLE_BAR_ACTIVE_FOREGROUND = registerColor('titleBar.activeForeground', {
813
808
  dark: '#CCCCCC',
814
809
  light: '#333333',
815
810
  hcDark: '#FFFFFF',
816
811
  hcLight: '#292929'
817
- }, ( localize(3853, "Title bar foreground when the window is active.")));
812
+ }, ( localize(3899, "Title bar foreground when the window is active.")));
818
813
  const TITLE_BAR_INACTIVE_FOREGROUND = registerColor('titleBar.inactiveForeground', {
819
814
  dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
820
815
  light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
821
816
  hcDark: null,
822
817
  hcLight: '#292929'
823
- }, ( localize(3854, "Title bar foreground when the window is inactive.")));
818
+ }, ( localize(3900, "Title bar foreground when the window is inactive.")));
824
819
  const TITLE_BAR_ACTIVE_BACKGROUND = registerColor('titleBar.activeBackground', {
825
820
  dark: '#3C3C3C',
826
821
  light: '#DDDDDD',
827
822
  hcDark: '#000000',
828
823
  hcLight: '#FFFFFF'
829
- }, ( localize(3855, "Title bar background when the window is active.")));
824
+ }, ( localize(3901, "Title bar background when the window is active.")));
830
825
  const TITLE_BAR_INACTIVE_BACKGROUND = registerColor('titleBar.inactiveBackground', {
831
826
  dark: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
832
827
  light: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
833
828
  hcDark: null,
834
829
  hcLight: null,
835
- }, ( localize(3856, "Title bar background when the window is inactive.")));
830
+ }, ( localize(3902, "Title bar background when the window is inactive.")));
836
831
  const TITLE_BAR_BORDER = registerColor('titleBar.border', {
837
832
  dark: null,
838
833
  light: null,
839
834
  hcDark: contrastBorder,
840
835
  hcLight: contrastBorder
841
- }, ( localize(3857, "Title bar border color.")));
842
- const MENUBAR_SELECTION_FOREGROUND = registerColor('menubar.selectionForeground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3858, "Foreground color of the selected menu item in the menubar.")));
836
+ }, ( localize(3903, "Title bar border color.")));
837
+ const MENUBAR_SELECTION_FOREGROUND = registerColor('menubar.selectionForeground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3904, "Foreground color of the selected menu item in the menubar.")));
843
838
  const MENUBAR_SELECTION_BACKGROUND = registerColor('menubar.selectionBackground', {
844
839
  dark: toolbarHoverBackground,
845
840
  light: toolbarHoverBackground,
846
841
  hcDark: null,
847
842
  hcLight: null,
848
- }, ( localize(3859, "Background color of the selected menu item in the menubar.")));
843
+ }, ( localize(3905, "Background color of the selected menu item in the menubar.")));
849
844
  registerColor('menubar.selectionBorder', {
850
845
  dark: null,
851
846
  light: null,
852
847
  hcDark: activeContrastBorder,
853
848
  hcLight: activeContrastBorder,
854
- }, ( localize(3860, "Border color of the selected menu item in the menubar.")));
855
- registerColor('commandCenter.foreground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3861, "Foreground color of the command center")), false);
856
- registerColor('commandCenter.activeForeground', MENUBAR_SELECTION_FOREGROUND, ( localize(3862, "Active foreground color of the command center")), false);
857
- registerColor('commandCenter.inactiveForeground', TITLE_BAR_INACTIVE_FOREGROUND, ( localize(3863, "Foreground color of the command center when the window is inactive")), false);
858
- const COMMAND_CENTER_BACKGROUND = registerColor('commandCenter.background', { dark: ( Color.white.transparent(0.05)), hcDark: null, light: ( Color.black.transparent(0.05)), hcLight: null }, ( localize(3864, "Background color of the command center")), false);
859
- registerColor('commandCenter.activeBackground', { dark: ( Color.white.transparent(0.08)), hcDark: MENUBAR_SELECTION_BACKGROUND, light: ( Color.black.transparent(0.08)), hcLight: MENUBAR_SELECTION_BACKGROUND }, ( localize(3865, "Active background color of the command center")), false);
860
- registerColor('commandCenter.border', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcDark: contrastBorder, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcLight: contrastBorder }, ( localize(3866, "Border color of the command center")), false);
861
- registerColor('commandCenter.activeBorder', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcDark: TITLE_BAR_ACTIVE_FOREGROUND, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcLight: TITLE_BAR_ACTIVE_FOREGROUND }, ( localize(3867, "Active border color of the command center")), false);
862
- registerColor('commandCenter.inactiveBorder', ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(3868, "Border color of the command center when the window is inactive")), false);
849
+ }, ( localize(3906, "Border color of the selected menu item in the menubar.")));
850
+ registerColor('commandCenter.foreground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3907, "Foreground color of the command center")), false);
851
+ registerColor('commandCenter.activeForeground', MENUBAR_SELECTION_FOREGROUND, ( localize(3908, "Active foreground color of the command center")), false);
852
+ registerColor('commandCenter.inactiveForeground', TITLE_BAR_INACTIVE_FOREGROUND, ( localize(3909, "Foreground color of the command center when the window is inactive")), false);
853
+ const COMMAND_CENTER_BACKGROUND = registerColor('commandCenter.background', { dark: ( Color.white.transparent(0.05)), hcDark: null, light: ( Color.black.transparent(0.05)), hcLight: null }, ( localize(3910, "Background color of the command center")), false);
854
+ registerColor('commandCenter.activeBackground', { dark: ( Color.white.transparent(0.08)), hcDark: MENUBAR_SELECTION_BACKGROUND, light: ( Color.black.transparent(0.08)), hcLight: MENUBAR_SELECTION_BACKGROUND }, ( localize(3911, "Active background color of the command center")), false);
855
+ registerColor('commandCenter.border', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcDark: contrastBorder, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcLight: contrastBorder }, ( localize(3912, "Border color of the command center")), false);
856
+ registerColor('commandCenter.activeBorder', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcDark: TITLE_BAR_ACTIVE_FOREGROUND, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcLight: TITLE_BAR_ACTIVE_FOREGROUND }, ( localize(3913, "Active border color of the command center")), false);
857
+ registerColor('commandCenter.inactiveBorder', ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(3914, "Border color of the command center when the window is inactive")), false);
863
858
  const NOTIFICATIONS_CENTER_BORDER = registerColor('notificationCenter.border', {
864
859
  dark: widgetBorder,
865
860
  light: widgetBorder,
866
861
  hcDark: contrastBorder,
867
862
  hcLight: contrastBorder
868
863
  }, ( localize(
869
- 3869,
864
+ 3915,
870
865
  "Notifications center border color. Notifications slide in from the bottom right of the window."
871
866
  )));
872
867
  const NOTIFICATIONS_TOAST_BORDER = registerColor('notificationToast.border', {
@@ -875,23 +870,23 @@ const NOTIFICATIONS_TOAST_BORDER = registerColor('notificationToast.border', {
875
870
  hcDark: contrastBorder,
876
871
  hcLight: contrastBorder
877
872
  }, ( localize(
878
- 3870,
873
+ 3916,
879
874
  "Notification toast border color. Notifications slide in from the bottom right of the window."
880
875
  )));
881
876
  registerColor('notifications.foreground', editorWidgetForeground, ( localize(
882
- 3871,
877
+ 3917,
883
878
  "Notifications foreground color. Notifications slide in from the bottom right of the window."
884
879
  )));
885
880
  const NOTIFICATIONS_BACKGROUND = registerColor('notifications.background', editorWidgetBackground, ( localize(
886
- 3872,
881
+ 3918,
887
882
  "Notifications background color. Notifications slide in from the bottom right of the window."
888
883
  )));
889
884
  registerColor('notificationLink.foreground', textLinkForeground, ( localize(
890
- 3873,
885
+ 3919,
891
886
  "Notification links foreground color. Notifications slide in from the bottom right of the window."
892
887
  )));
893
888
  const NOTIFICATIONS_CENTER_HEADER_FOREGROUND = registerColor('notificationCenterHeader.foreground', null, ( localize(
894
- 3874,
889
+ 3920,
895
890
  "Notifications center header foreground color. Notifications slide in from the bottom right of the window."
896
891
  )));
897
892
  const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor('notificationCenterHeader.background', {
@@ -900,23 +895,23 @@ const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor('notificationCenter
900
895
  hcDark: NOTIFICATIONS_BACKGROUND,
901
896
  hcLight: NOTIFICATIONS_BACKGROUND
902
897
  }, ( localize(
903
- 3875,
898
+ 3921,
904
899
  "Notifications center header background color. Notifications slide in from the bottom right of the window."
905
900
  )));
906
901
  registerColor('notifications.border', NOTIFICATIONS_CENTER_HEADER_BACKGROUND, ( localize(
907
- 3876,
902
+ 3922,
908
903
  "Notifications border color separating from other notifications in the notifications center. Notifications slide in from the bottom right of the window."
909
904
  )));
910
905
  registerColor('notificationsErrorIcon.foreground', editorErrorForeground, ( localize(
911
- 3877,
906
+ 3923,
912
907
  "The color used for the icon of error notifications. Notifications slide in from the bottom right of the window."
913
908
  )));
914
909
  registerColor('notificationsWarningIcon.foreground', editorWarningForeground, ( localize(
915
- 3878,
910
+ 3924,
916
911
  "The color used for the icon of warning notifications. Notifications slide in from the bottom right of the window."
917
912
  )));
918
913
  registerColor('notificationsInfoIcon.foreground', editorInfoForeground, ( localize(
919
- 3879,
914
+ 3925,
920
915
  "The color used for the icon of info notifications. Notifications slide in from the bottom right of the window."
921
916
  )));
922
917
  const WINDOW_ACTIVE_BORDER = registerColor('window.activeBorder', {
@@ -925,7 +920,7 @@ const WINDOW_ACTIVE_BORDER = registerColor('window.activeBorder', {
925
920
  hcDark: contrastBorder,
926
921
  hcLight: contrastBorder
927
922
  }, ( localize(
928
- 3880,
923
+ 3926,
929
924
  "The color used for the border of the window when it is active. Only supported in the macOS and Linux desktop client when using the custom title bar."
930
925
  )));
931
926
  const WINDOW_INACTIVE_BORDER = registerColor('window.inactiveBorder', {
@@ -934,7 +929,7 @@ const WINDOW_INACTIVE_BORDER = registerColor('window.inactiveBorder', {
934
929
  hcDark: contrastBorder,
935
930
  hcLight: contrastBorder
936
931
  }, ( localize(
937
- 3881,
932
+ 3927,
938
933
  "The color used for the border of the window when it is inactive. Only supported in the macOS and Linux desktop client when using the custom title bar."
939
934
  )));
940
935