@codingame/monaco-vscode-api 17.2.1 → 18.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 (803) hide show
  1. package/missing-services.js +245 -81
  2. package/package.json +8 -8
  3. package/services.d.ts +3 -4
  4. package/services.js +3 -3
  5. package/vscode/src/vs/base/browser/dnd.js +3 -2
  6. package/vscode/src/vs/base/browser/domImpl/domObservable.js +1 -1
  7. package/vscode/src/vs/base/browser/domImpl/n.js +5 -5
  8. package/vscode/src/vs/base/browser/markdownRenderer.d.ts +3 -3
  9. package/vscode/src/vs/base/browser/markdownRenderer.js +12 -10
  10. package/vscode/src/vs/base/browser/touch.js +1 -0
  11. package/vscode/src/vs/base/browser/ui/button/button.d.ts +10 -1
  12. package/vscode/src/vs/base/browser/ui/button/button.js +12 -4
  13. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  14. package/vscode/src/vs/base/browser/ui/list/list.d.ts +5 -2
  15. package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +1 -1
  16. package/vscode/src/vs/base/browser/ui/list/listPaging.js +3 -3
  17. package/vscode/src/vs/base/browser/ui/list/listView.js +5 -5
  18. package/vscode/src/vs/base/browser/ui/list/listWidget.js +7 -7
  19. package/vscode/src/vs/base/browser/ui/table/tableWidget.js +4 -4
  20. package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +6 -6
  21. package/vscode/src/vs/base/browser/ui/toggle/toggle.js +14 -6
  22. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +4 -3
  23. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +16 -15
  24. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +12 -12
  25. package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.d.ts +1 -1
  26. package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.js +1 -1
  27. package/vscode/src/vs/base/browser/ui/tree/media/tree.css +2 -1
  28. package/vscode/src/vs/base/browser/ui/tree/objectTree.d.ts +3 -3
  29. package/vscode/src/vs/base/browser/ui/tree/objectTree.js +7 -10
  30. package/vscode/src/vs/base/browser/ui/tree/tree.d.ts +6 -1
  31. package/vscode/src/vs/base/browser/webWorkerFactory.js +1 -4
  32. package/vscode/src/vs/base/common/arrays.d.ts +3 -1
  33. package/vscode/src/vs/base/common/arrays.js +5 -1
  34. package/vscode/src/vs/base/common/async.d.ts +18 -3
  35. package/vscode/src/vs/base/common/async.js +105 -39
  36. package/vscode/src/vs/base/common/buffer.d.ts +2 -0
  37. package/vscode/src/vs/base/common/buffer.js +36 -1
  38. package/vscode/src/vs/base/common/codicons.d.ts +5 -0
  39. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -0
  40. package/vscode/src/vs/base/common/codiconsLibrary.js +5 -0
  41. package/vscode/src/vs/base/common/comparers.js +4 -3
  42. package/vscode/src/vs/base/common/date.d.ts +6 -4
  43. package/vscode/src/vs/base/common/date.js +43 -24
  44. package/vscode/src/vs/base/common/decorators.js +1 -0
  45. package/vscode/src/vs/base/common/errors.d.ts +6 -0
  46. package/vscode/src/vs/base/common/errors.js +11 -1
  47. package/vscode/src/vs/base/common/event.d.ts +2 -1
  48. package/vscode/src/vs/base/common/event.js +11 -3
  49. package/vscode/src/vs/base/common/hash.d.ts +1 -1
  50. package/vscode/src/vs/base/common/hash.js +2 -2
  51. package/vscode/src/vs/base/common/hotReloadHelpers.js +3 -2
  52. package/vscode/src/vs/base/common/htmlContent.d.ts +1 -1
  53. package/vscode/src/vs/base/common/iterator.d.ts +3 -1
  54. package/vscode/src/vs/base/common/iterator.js +20 -2
  55. package/vscode/src/vs/base/common/json.d.ts +1 -1
  56. package/vscode/src/vs/base/common/marshalling.d.ts +1 -1
  57. package/vscode/src/vs/base/common/marshallingIds.d.ts +1 -2
  58. package/vscode/src/vs/base/common/marshallingIds.js +0 -1
  59. package/vscode/src/vs/base/common/numbers.d.ts +1 -1
  60. package/vscode/src/vs/base/common/oauth.d.ts +143 -0
  61. package/vscode/src/vs/base/common/oauth.js +124 -0
  62. package/vscode/src/vs/base/common/observableInternal/base.d.ts +5 -75
  63. package/vscode/src/vs/base/common/observableInternal/base.js +2 -279
  64. package/vscode/src/vs/base/common/observableInternal/changeTracker.js +3 -0
  65. package/vscode/src/vs/base/common/observableInternal/commonFacade/cancellation.d.ts +1 -1
  66. package/vscode/src/vs/base/common/observableInternal/commonFacade/deps.d.ts +1 -1
  67. package/vscode/src/vs/base/common/observableInternal/{reducer.d.ts → experimental/reducer.d.ts} +5 -5
  68. package/vscode/src/vs/base/common/observableInternal/{reducer.js → experimental/reducer.js} +7 -5
  69. package/vscode/src/vs/base/common/observableInternal/experimental/utils.d.ts +4 -0
  70. package/vscode/src/vs/base/common/observableInternal/experimental/utils.js +47 -0
  71. package/vscode/src/vs/base/common/observableInternal/index.d.ts +21 -7
  72. package/vscode/src/vs/base/common/observableInternal/index.js +6 -3
  73. package/vscode/src/vs/base/common/observableInternal/logging/consoleObservableLogger.d.ts +5 -4
  74. package/vscode/src/vs/base/common/observableInternal/logging/consoleObservableLogger.js +1 -1
  75. package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +4 -3
  76. package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +4 -4
  77. package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +4 -3
  78. package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +38 -0
  79. package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.js +111 -0
  80. package/vscode/src/vs/base/common/observableInternal/observables/constObservable.d.ts +2 -0
  81. package/vscode/src/vs/base/common/observableInternal/observables/constObservable.js +30 -0
  82. package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +20 -0
  83. package/vscode/src/vs/base/common/observableInternal/observables/derived.js +58 -0
  84. package/vscode/src/vs/base/common/observableInternal/{derived.d.ts → observables/derivedImpl.d.ts} +14 -22
  85. package/vscode/src/vs/base/common/observableInternal/{derived.js → observables/derivedImpl.js} +63 -94
  86. package/vscode/src/vs/base/common/observableInternal/{lazyObservableValue.d.ts → observables/lazyObservableValue.d.ts} +4 -3
  87. package/vscode/src/vs/base/common/observableInternal/{lazyObservableValue.js → observables/lazyObservableValue.js} +3 -2
  88. package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +32 -0
  89. package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +114 -0
  90. package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.d.ts +6 -0
  91. package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.js +42 -0
  92. package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.d.ts +4 -0
  93. package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.js +36 -0
  94. package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +26 -0
  95. package/vscode/src/vs/base/common/observableInternal/observables/observableValue.js +98 -0
  96. package/vscode/src/vs/base/common/observableInternal/{api.d.ts → observables/observableValueOpts.d.ts} +3 -3
  97. package/vscode/src/vs/base/common/observableInternal/{api.js → observables/observableValueOpts.js} +6 -5
  98. package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +21 -0
  99. package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +82 -0
  100. package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +44 -0
  101. package/vscode/src/vs/base/common/observableInternal/{autorun.js → reactions/autorunImpl.js} +50 -84
  102. package/vscode/src/vs/base/common/observableInternal/set.d.ts +20 -0
  103. package/vscode/src/vs/base/common/observableInternal/set.js +62 -0
  104. package/vscode/src/vs/base/common/observableInternal/transaction.d.ts +18 -0
  105. package/vscode/src/vs/base/common/observableInternal/transaction.js +91 -0
  106. package/vscode/src/vs/base/common/observableInternal/{promise.d.ts → utils/promise.d.ts} +3 -2
  107. package/vscode/src/vs/base/common/observableInternal/{promise.js → utils/promise.js} +10 -2
  108. package/vscode/src/vs/base/common/observableInternal/utils/runOnChange.d.ts +7 -0
  109. package/vscode/src/vs/base/common/observableInternal/utils/runOnChange.js +58 -0
  110. package/vscode/src/vs/base/common/observableInternal/utils/utils.d.ts +28 -0
  111. package/vscode/src/vs/base/common/observableInternal/utils/utils.js +200 -0
  112. package/vscode/src/vs/base/common/observableInternal/{utilsCancellation.d.ts → utils/utilsCancellation.d.ts} +2 -2
  113. package/vscode/src/vs/base/common/observableInternal/{utilsCancellation.js → utils/utilsCancellation.js} +7 -7
  114. package/vscode/src/vs/base/common/observableInternal/utils/valueWithChangeEvent.d.ts +10 -0
  115. package/vscode/src/vs/base/common/observableInternal/utils/valueWithChangeEvent.js +26 -0
  116. package/vscode/src/vs/base/common/product.d.ts +5 -2
  117. package/vscode/src/vs/base/common/strings.d.ts +1 -0
  118. package/vscode/src/vs/base/common/strings.js +4 -10
  119. package/vscode/src/vs/base/common/themables.d.ts +2 -2
  120. package/vscode/src/vs/base/common/themables.js +2 -2
  121. package/vscode/src/vs/base/common/types.d.ts +2 -1
  122. package/vscode/src/vs/base/common/types.js +4 -4
  123. package/vscode/src/vs/base/common/uri.d.ts +2 -2
  124. package/vscode/src/vs/base/common/uri.js +1 -1
  125. package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +1 -1
  126. package/vscode/src/vs/editor/browser/config/editorConfiguration.js +1 -1
  127. package/vscode/src/vs/editor/browser/config/elementSizeObserver.d.ts +1 -1
  128. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +1 -1
  129. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +3 -2
  130. package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
  131. package/vscode/src/vs/editor/browser/gpu/contentSegmenter.js +1 -1
  132. package/vscode/src/vs/editor/browser/gpu/gpuDisposable.js +1 -1
  133. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +2 -2
  134. package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +7 -5
  135. package/vscode/src/vs/editor/browser/observableCodeEditor.js +11 -7
  136. package/vscode/src/vs/editor/browser/services/editorWorkerService.js +1 -1
  137. package/vscode/src/vs/editor/browser/services/hoverService/hover.css +4 -0
  138. package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.d.ts +1 -1
  139. package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.js +5 -4
  140. package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +1 -1
  141. package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.js +1 -1
  142. package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharRenderer.d.ts +1 -1
  143. package/vscode/src/vs/editor/browser/viewParts/rulersGpu/rulersGpu.js +1 -1
  144. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +3 -2
  145. package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +2 -2
  146. package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +4 -4
  147. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +2 -2
  148. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +8 -5
  149. package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +9 -8
  150. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorDecorations.js +1 -1
  151. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.d.ts +1 -1
  152. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +4 -3
  153. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.js +3 -3
  154. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +8 -8
  155. package/vscode/src/vs/editor/browser/widget/diffEditor/delegatingEditorImpl.d.ts +1 -1
  156. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +26 -26
  157. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.js +4 -3
  158. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +2 -2
  159. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +8 -6
  160. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +1 -1
  161. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +6 -4
  162. package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.js +1 -1
  163. package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +1 -1
  164. package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.js +7 -7
  165. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.d.ts +1 -1
  166. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +12 -11
  167. package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +10 -7
  168. package/vscode/src/vs/editor/browser/widget/diffEditor/features/overviewRulerFeature.js +4 -3
  169. package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +3 -3
  170. package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.d.ts +2 -2
  171. package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +8 -5
  172. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.d.ts +1 -1
  173. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +4 -3
  174. package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +1 -1
  175. package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +1 -1
  176. package/vscode/src/vs/editor/common/config/editorConfiguration.d.ts +1 -1
  177. package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +1 -1
  178. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +159 -153
  179. package/vscode/src/vs/editor/common/config/editorOptions.js +543 -517
  180. package/vscode/src/vs/editor/{browser → common/core/2d}/rect.d.ts +1 -1
  181. package/vscode/src/vs/editor/{browser → common/core/2d}/rect.js +1 -1
  182. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
  183. package/vscode/src/vs/editor/common/core/edits/edit.d.ts +48 -0
  184. package/vscode/src/vs/editor/common/core/edits/edit.js +227 -0
  185. package/vscode/src/vs/editor/common/core/edits/lengthEdit.d.ts +25 -0
  186. package/vscode/src/vs/editor/common/core/edits/lengthEdit.js +92 -0
  187. package/vscode/src/vs/editor/common/core/{lineEdit.d.ts → edits/lineEdit.d.ts} +9 -8
  188. package/vscode/src/vs/editor/common/core/{lineEdit.js → edits/lineEdit.js} +17 -17
  189. package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +43 -0
  190. package/vscode/src/vs/editor/common/core/edits/stringEdit.js +215 -0
  191. package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +39 -0
  192. package/vscode/src/vs/editor/common/core/{textEdit.js → edits/textEdit.js} +75 -149
  193. package/vscode/src/vs/editor/common/core/{eolCounter.js → misc/eolCounter.js} +1 -1
  194. package/vscode/src/vs/editor/common/core/{indentation.js → misc/indentation.js} +2 -2
  195. package/vscode/src/vs/editor/common/core/{columnRange.d.ts → ranges/columnRange.d.ts} +1 -1
  196. package/vscode/src/vs/editor/common/core/{columnRange.js → ranges/columnRange.js} +2 -2
  197. package/vscode/src/vs/editor/common/core/{lineRange.d.ts → ranges/lineRange.d.ts} +6 -4
  198. package/vscode/src/vs/editor/common/core/{lineRange.js → ranges/lineRange.js} +12 -10
  199. package/vscode/src/vs/editor/common/core/{offsetRange.d.ts → ranges/offsetRange.d.ts} +2 -1
  200. package/vscode/src/vs/editor/common/core/{offsetRange.js → ranges/offsetRange.js} +7 -1
  201. package/vscode/src/vs/editor/common/core/{rangeSingleLine.d.ts → ranges/rangeSingleLine.d.ts} +1 -1
  202. package/vscode/src/vs/editor/common/core/{rangeSingleLine.js → ranges/rangeSingleLine.js} +1 -1
  203. package/vscode/src/vs/editor/common/core/text/abstractText.d.ts +35 -0
  204. package/vscode/src/vs/editor/common/core/text/abstractText.js +84 -0
  205. package/vscode/src/vs/editor/common/core/text/getPositionOffsetTransformerFromTextModel.d.ts +3 -0
  206. package/vscode/src/vs/editor/common/core/text/getPositionOffsetTransformerFromTextModel.js +20 -0
  207. package/vscode/src/vs/editor/common/core/{positionToOffset.d.ts → text/positionToOffset.d.ts} +9 -11
  208. package/vscode/src/vs/editor/common/core/{positionToOffset.js → text/positionToOffset.js} +14 -29
  209. package/vscode/src/vs/editor/common/core/{textLength.d.ts → text/textLength.d.ts} +3 -3
  210. package/vscode/src/vs/editor/common/core/{textLength.js → text/textLength.js} +3 -3
  211. package/vscode/src/vs/editor/common/core/wordCharacterClassifier.js +1 -1
  212. package/vscode/src/vs/editor/common/cursorCommon.js +1 -1
  213. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts +1 -1
  214. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.js +1 -1
  215. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.js +1 -1
  216. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.js +1 -1
  217. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.js +1 -1
  218. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +3 -3
  219. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts +1 -1
  220. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js +1 -1
  221. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.d.ts +1 -1
  222. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +1 -1
  223. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js +1 -1
  224. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/utils.d.ts +1 -1
  225. package/vscode/src/vs/editor/common/diff/legacyLinesDiffComputer.js +1 -1
  226. package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +4 -3
  227. package/vscode/src/vs/editor/common/diff/rangeMapping.js +7 -7
  228. package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -1
  229. package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
  230. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  231. package/vscode/src/vs/editor/common/languages.d.ts +4 -28
  232. package/vscode/src/vs/editor/common/languages.js +65 -59
  233. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length.d.ts +1 -1
  234. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length.js +1 -1
  235. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  236. package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.js +1 -1
  237. package/vscode/src/vs/editor/common/model/textModel.d.ts +2 -0
  238. package/vscode/src/vs/editor/common/model/textModel.js +11 -6
  239. package/vscode/src/vs/editor/common/model/textModelStringEdit.d.ts +9 -0
  240. package/vscode/src/vs/editor/common/model/textModelStringEdit.js +45 -0
  241. package/vscode/src/vs/editor/common/model/textModelText.d.ts +2 -2
  242. package/vscode/src/vs/editor/common/model/textModelText.js +2 -2
  243. package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +2 -2
  244. package/vscode/src/vs/editor/common/model/textModelTokens.js +3 -3
  245. package/vscode/src/vs/editor/common/model/{tokens.d.ts → tokens/abstractSyntaxTokenBackend.d.ts} +22 -17
  246. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +118 -0
  247. package/vscode/src/vs/editor/common/model/{tokenizationTextModelPart.d.ts → tokens/tokenizationTextModelPart.d.ts} +25 -25
  248. package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.js +255 -0
  249. package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +37 -0
  250. package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.js +257 -0
  251. package/vscode/src/vs/editor/common/model/tokens/treeSitter/cursorUtils.d.ts +6 -0
  252. package/vscode/src/vs/editor/common/model/tokens/treeSitter/cursorUtils.js +76 -0
  253. package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.d.ts +65 -0
  254. package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.js +412 -0
  255. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterSyntaxTokenBackend.d.ts +40 -0
  256. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterSyntaxTokenBackend.js +172 -0
  257. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTokenizationImpl.d.ts +73 -0
  258. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTokenizationImpl.js +682 -0
  259. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.d.ts +53 -0
  260. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.js +381 -0
  261. package/vscode/src/vs/editor/common/model.d.ts +1 -0
  262. package/vscode/src/vs/editor/common/services/languageService.js +1 -1
  263. package/vscode/src/vs/editor/common/services/modelService.js +1 -1
  264. package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.d.ts +11 -0
  265. package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.js +6 -0
  266. package/vscode/src/vs/editor/common/services/treeSitter/treeSitterThemeService.service.d.ts +7 -0
  267. package/vscode/src/vs/editor/common/services/treeSitter/treeSitterThemeService.service.js +6 -0
  268. package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +156 -154
  269. package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +156 -154
  270. package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
  271. package/vscode/src/vs/editor/common/textModelEditReason.d.ts +16 -0
  272. package/vscode/src/vs/editor/common/textModelEditReason.js +29 -0
  273. package/vscode/src/vs/editor/common/tokens/contiguousMultilineTokens.d.ts +1 -1
  274. package/vscode/src/vs/editor/common/tokens/contiguousMultilineTokens.js +2 -2
  275. package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -1
  276. package/vscode/src/vs/editor/common/tokens/lineTokens.js +1 -1
  277. package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +1 -1
  278. package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +1 -1
  279. package/vscode/src/vs/editor/common/tokens/tokenArray.js +1 -1
  280. package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +1 -1
  281. package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.js +1 -1
  282. package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +4 -2
  283. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +3 -8
  284. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +6 -16
  285. package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.d.ts +1 -1
  286. package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.js +1 -1
  287. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +24 -17
  288. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  289. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  290. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  291. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  292. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  293. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -2
  294. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
  295. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  296. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  297. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  298. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  299. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  300. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  301. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  302. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  303. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  304. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  305. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
  306. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  307. package/vscode/src/vs/editor/contrib/diffEditorBreadcrumbs/browser/contribution.js +3 -3
  308. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  309. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +1 -1
  310. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +12 -12
  311. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
  312. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +4 -4
  313. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  314. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  315. package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
  316. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +33 -28
  317. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  318. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  319. package/vscode/src/vs/editor/contrib/folding/browser/hiddenRangeModel.js +1 -1
  320. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  321. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  322. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  323. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
  324. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
  325. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  326. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  327. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  328. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  329. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  330. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  331. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  332. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  333. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  334. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  335. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
  336. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
  337. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  338. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  339. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
  340. package/vscode/src/vs/editor/contrib/indentation/common/indentation.js +1 -1
  341. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.d.ts +1 -1
  342. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -1
  343. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
  344. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +20 -20
  345. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
  346. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +10 -6
  347. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +4 -4
  348. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.d.ts +2 -2
  349. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +15 -14
  350. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +2 -2
  351. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/animation.js +2 -2
  352. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +0 -4
  353. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +5 -26
  354. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +2 -2
  355. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.js +2 -2
  356. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
  357. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.js +6 -6
  358. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +21 -20
  359. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +59 -23
  360. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +8 -8
  361. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +10 -9
  362. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
  363. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.js +2 -2
  364. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +12 -11
  365. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +46 -31
  366. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +5 -4
  367. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +7 -7
  368. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/singleTextEditHelpers.d.ts +3 -3
  369. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/singleTextEditHelpers.js +3 -3
  370. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +4 -4
  371. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +3 -3
  372. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +2 -1
  373. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.js +6 -2
  374. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +5 -3
  375. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +14 -5
  376. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +2 -2
  377. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +9 -9
  378. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +3 -2
  379. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +18 -22
  380. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +1 -1
  381. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +53 -43
  382. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +4 -3
  383. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +3 -3
  384. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +1 -1
  385. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +4 -3
  386. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +4 -4
  387. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +1 -1
  388. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +68 -22
  389. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +5 -5
  390. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +6 -9
  391. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +6 -6
  392. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +1 -1
  393. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +5 -4
  394. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +1 -1
  395. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +8 -8
  396. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +1 -1
  397. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +8 -13
  398. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +7 -5
  399. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +2 -2
  400. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +12 -16
  401. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +1 -1
  402. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +4 -4
  403. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +21 -21
  404. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.d.ts +9 -8
  405. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +31 -9
  406. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  407. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  408. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
  409. package/vscode/src/vs/editor/contrib/linesOperations/browser/sortLinesCommand.d.ts +2 -2
  410. package/vscode/src/vs/editor/contrib/linesOperations/browser/sortLinesCommand.js +3 -8
  411. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  412. package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
  413. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  414. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  415. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  416. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  417. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
  418. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  419. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.js +9 -8
  420. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  421. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  422. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.d.ts +1 -1
  423. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  424. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  425. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  426. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  427. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  428. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +2 -1
  429. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +2 -2
  430. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
  431. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
  432. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  433. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  434. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  435. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  436. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  437. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  438. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  439. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  440. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +26 -25
  441. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  442. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  443. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +11 -11
  444. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
  445. package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +0 -2
  446. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +4 -5
  447. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.d.ts +11 -0
  448. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.js +21 -0
  449. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
  450. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +6 -0
  451. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +81 -68
  452. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  453. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +2 -1
  454. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +15 -11
  455. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +2 -1
  456. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +9 -9
  457. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -1
  458. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +11 -8
  459. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  460. package/vscode/src/vs/platform/actions/common/actions.d.ts +9 -0
  461. package/vscode/src/vs/platform/actions/common/actions.js +9 -0
  462. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  463. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  464. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  465. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  466. package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
  467. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  468. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  469. package/vscode/src/vs/platform/diagnostics/common/diagnostics.d.ts +1 -2
  470. package/vscode/src/vs/platform/diagnostics/common/diagnostics.js +2 -1
  471. package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
  472. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  473. package/vscode/src/vs/platform/editor/common/editor.d.ts +6 -1
  474. package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
  475. package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.d.ts +1 -1
  476. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -3
  477. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +20 -21
  478. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +2 -1
  479. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  480. package/vscode/src/vs/platform/extensionManagement/common/extensionStorage.service.d.ts +1 -1
  481. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +15 -7
  482. package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
  483. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
  484. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +10 -0
  485. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +6 -6
  486. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +7 -7
  487. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  488. package/vscode/src/vs/platform/files/common/files.js +6 -6
  489. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  490. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
  491. package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
  492. package/vscode/src/vs/platform/list/browser/listService.js +27 -27
  493. package/vscode/src/vs/platform/log/common/log.js +6 -6
  494. package/vscode/src/vs/platform/markers/common/markerService.js +3 -2
  495. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  496. package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +22 -0
  497. package/vscode/src/vs/platform/mcp/common/mcpManagement.service.js +7 -0
  498. package/vscode/src/vs/platform/notification/common/notification.service.d.ts +1 -3
  499. package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +2 -2
  500. package/vscode/src/vs/platform/observable/common/wrapInHotClass.js +1 -1
  501. package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.js +1 -1
  502. package/vscode/src/vs/platform/product/common/product.js +3 -3
  503. package/vscode/src/vs/platform/progress/common/progress.js +1 -0
  504. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +7 -0
  505. package/vscode/src/vs/platform/quickinput/browser/quickAccess.js +9 -1
  506. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  507. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
  508. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +8 -8
  509. package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +4 -3
  510. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  511. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
  512. package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
  513. package/vscode/src/vs/platform/request/common/request.js +18 -18
  514. package/vscode/src/vs/platform/request/common/request.service.d.ts +1 -1
  515. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -1
  516. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +1 -1
  517. package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
  518. package/vscode/src/vs/platform/terminal/common/terminalDataBuffering.js +1 -1
  519. package/vscode/src/vs/platform/theme/browser/defaultStyles.js +2 -2
  520. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  521. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
  522. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  523. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +94 -94
  524. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
  525. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  526. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  527. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  528. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
  529. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  530. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  531. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  532. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  533. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  534. package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +1 -1
  535. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  536. package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -2
  537. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.service.d.ts +1 -1
  538. package/vscode/src/vs/platform/window/common/window.d.ts +12 -4
  539. package/vscode/src/vs/platform/window/common/window.js +41 -6
  540. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  541. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +14 -12
  542. package/vscode/src/vs/workbench/api/common/extHost.common.services.js +4 -2
  543. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +42 -15
  544. package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +4 -0
  545. package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +64 -3
  546. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +495 -5
  547. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +0 -2
  548. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +84 -75
  549. package/vscode/src/vs/workbench/api/common/extHostComments.js +1 -0
  550. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  551. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +3 -3
  552. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +3 -3
  553. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +4 -3
  554. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
  555. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +52 -20
  556. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  557. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +3 -1
  558. package/vscode/src/vs/workbench/api/common/extHostMcp.js +199 -29
  559. package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +1 -1
  560. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  561. package/vscode/src/vs/workbench/api/common/extHostNotebookEditor.js +3 -3
  562. package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.d.ts +1 -4
  563. package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +2 -17
  564. package/vscode/src/vs/workbench/api/common/extHostProgress.d.ts +9 -2
  565. package/vscode/src/vs/workbench/api/common/extHostProgress.js +19 -6
  566. package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -0
  567. package/vscode/src/vs/workbench/api/common/extHostSCM.js +11 -0
  568. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  569. package/vscode/src/vs/workbench/api/common/extHostStorage.d.ts +1 -1
  570. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
  571. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  572. package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +6 -4
  573. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  574. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +9 -8
  575. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +70 -45
  576. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +14 -19
  577. package/vscode/src/vs/workbench/api/common/extHostTypes.js +12 -19
  578. package/vscode/src/vs/workbench/api/common/extHostUrls.d.ts +7 -2
  579. package/vscode/src/vs/workbench/api/common/extHostUrls.js +15 -6
  580. package/vscode/src/vs/workbench/api/common/extHostWindow.d.ts +1 -0
  581. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
  582. package/vscode/src/vs/workbench/api/common/extensionHostMain.js +19 -5
  583. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
  584. package/vscode/src/vs/workbench/api/worker/extHost.worker.services.js +2 -0
  585. package/vscode/src/vs/workbench/api/worker/extHostExtensionService.js +3 -1
  586. package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
  587. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  588. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  589. package/vscode/src/vs/workbench/common/contextkeys.d.ts +4 -5
  590. package/vscode/src/vs/workbench/common/contextkeys.js +72 -73
  591. package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
  592. package/vscode/src/vs/workbench/common/editor.js +4 -4
  593. package/vscode/src/vs/workbench/common/theme.js +160 -160
  594. package/vscode/src/vs/workbench/common/views.js +4 -4
  595. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +184 -150
  596. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  597. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -2
  598. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +4 -2
  599. package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +8 -0
  600. package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.js +6 -0
  601. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +10 -15
  602. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +7 -9
  603. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +3 -12
  604. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +1 -1
  605. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +7 -1
  606. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +50 -37
  607. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +4 -3
  608. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +2 -2
  609. package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +2 -2
  610. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +42 -26
  611. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +102 -96
  612. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +17 -3
  613. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +26 -2
  614. package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +21 -6
  615. package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +1 -1
  616. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
  617. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -1
  618. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +1 -0
  619. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +4 -1
  620. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +38 -13
  621. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +67 -1
  622. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +11 -2
  623. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +6 -6
  624. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
  625. package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +1 -1
  626. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +6 -2
  627. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +6 -12
  628. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.d.ts +12 -5
  629. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.d.ts +11 -6
  630. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +3 -9
  631. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
  632. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +6 -5
  633. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  634. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +5 -5
  635. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  636. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  637. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  638. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
  639. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  640. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  641. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  642. package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
  643. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  644. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
  645. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  646. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -0
  647. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
  648. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +6 -2
  649. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +5 -2
  650. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +3 -3
  651. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +10 -6
  652. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  653. package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +2 -2
  654. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  655. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  656. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  657. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  658. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  659. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +1 -1
  660. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
  661. package/vscode/src/vs/workbench/contrib/issue/common/issue.service.d.ts +0 -5
  662. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  663. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  664. package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +2 -1
  665. package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +6 -3
  666. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +133 -8
  667. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +132 -16
  668. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +26 -1
  669. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.js +3 -1
  670. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +404 -0
  671. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.js +14 -0
  672. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +1 -1
  673. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +3 -3
  674. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
  675. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
  676. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +1 -1
  677. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.service.d.ts +2 -1
  678. package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +14 -4
  679. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +1 -1
  680. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +1 -1
  681. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +6 -2
  682. package/vscode/src/vs/workbench/contrib/search/browser/replace.service.d.ts +1 -1
  683. package/vscode/src/vs/workbench/contrib/search/browser/searchTreeModel/searchViewModelWorkbenchService.service.d.ts +1 -1
  684. package/vscode/src/vs/workbench/contrib/search/common/searchHistoryService.service.d.ts +1 -1
  685. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  686. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  687. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  688. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  689. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  690. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +8 -0
  691. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +14 -6
  692. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +1 -1
  693. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +1 -1
  694. package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +1 -1
  695. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.d.ts +1 -1
  696. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  697. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  698. package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
  699. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
  700. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.service.d.ts +6 -0
  701. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.service.js +6 -0
  702. package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +3 -3
  703. package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
  704. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.d.ts +1 -0
  705. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +3 -1
  706. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.d.ts +14 -0
  707. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.js +6 -0
  708. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.d.ts +19 -0
  709. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.js +6 -0
  710. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.d.ts +10 -0
  711. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.js +6 -0
  712. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +15 -0
  713. package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +8 -2
  714. package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.d.ts +15 -0
  715. package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +18 -0
  716. package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.js +6 -0
  717. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +9 -0
  718. package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.js +6 -0
  719. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +2 -1
  720. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +12 -4
  721. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  722. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +7 -5
  723. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +2 -3
  724. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  725. package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +1 -1
  726. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +0 -1
  727. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.js +1 -3
  728. package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
  729. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
  730. package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +1 -1
  731. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
  732. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
  733. package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +2 -4
  734. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  735. package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +2 -2
  736. package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
  737. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  738. package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
  739. package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +2 -1
  740. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  741. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  742. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  743. package/vscode/src/vs/workbench/services/search/common/search.d.ts +11 -1
  744. package/vscode/src/vs/workbench/services/search/common/search.js +10 -1
  745. package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +1 -1
  746. package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.service.d.ts +2 -1
  747. package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +1 -1
  748. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  749. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  750. package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +2 -1
  751. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
  752. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
  753. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
  754. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
  755. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
  756. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
  757. package/vscode-dts/vscode.d.ts +162 -1
  758. package/vscode-dts/vscode.proposed.aiSettingsSearch.d.ts +1 -0
  759. package/vscode-dts/vscode.proposed.authIssuers.d.ts +30 -0
  760. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +12 -1
  761. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +10 -17
  762. package/vscode-dts/vscode.proposed.chatProvider.d.ts +18 -0
  763. package/vscode-dts/vscode.proposed.contribLanguageModelToolSets.d.ts +6 -0
  764. package/vscode-dts/vscode.proposed.d.ts +2 -2
  765. package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +0 -5
  766. package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +1 -3
  767. package/vscode-dts/vscode.proposed.inlineEdit.d.ts +1 -1
  768. package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +7 -32
  769. package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +2 -0
  770. package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +0 -59
  771. package/vscode/src/vs/base/common/observableInternal/utils.d.ts +0 -78
  772. package/vscode/src/vs/base/common/observableInternal/utils.js +0 -486
  773. package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +0 -43
  774. package/vscode/src/vs/editor/common/core/offsetEdit.js +0 -335
  775. package/vscode/src/vs/editor/common/core/textEdit.d.ts +0 -71
  776. package/vscode/src/vs/editor/common/model/textModelOffsetEdit.d.ts +0 -10
  777. package/vscode/src/vs/editor/common/model/textModelOffsetEdit.js +0 -39
  778. package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +0 -507
  779. package/vscode/src/vs/editor/common/model/tokens.js +0 -81
  780. package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.service.d.ts +0 -24
  781. package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.service.js +0 -6
  782. package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +0 -31
  783. package/vscode/src/vs/editor/common/model/treeSitterTokens.js +0 -112
  784. package/vscode/src/vs/editor/common/services/treeSitterParserService.service.d.ts +0 -27
  785. package/vscode/src/vs/editor/common/services/treeSitterParserService.service.js +0 -7
  786. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +0 -19
  787. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.js +0 -29
  788. package/vscode/src/vs/platform/native/common/native.d.ts +0 -168
  789. package/vscode/src/vs/workbench/services/treeSitter/browser/treeSitterTokenizationFeature.service.d.ts +0 -4
  790. package/vscode/src/vs/workbench/services/treeSitter/browser/treeSitterTokenizationFeature.service.js +0 -6
  791. package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +0 -139
  792. package/vscode-dts/vscode.proposed.notebookCellExecutionState.d.ts +0 -52
  793. /package/vscode/src/vs/editor/browser/{dnd.d.ts → dataTransfer.d.ts} +0 -0
  794. /package/vscode/src/vs/editor/browser/{dnd.js → dataTransfer.js} +0 -0
  795. /package/vscode/src/vs/editor/common/core/{dimension.d.ts → 2d/dimension.d.ts} +0 -0
  796. /package/vscode/src/vs/editor/{browser → common/core/2d}/point.d.ts +0 -0
  797. /package/vscode/src/vs/editor/{browser → common/core/2d}/point.js +0 -0
  798. /package/vscode/src/vs/editor/common/core/{eolCounter.d.ts → misc/eolCounter.d.ts} +0 -0
  799. /package/vscode/src/vs/editor/common/core/{indentation.d.ts → misc/indentation.d.ts} +0 -0
  800. /package/vscode/src/vs/editor/common/core/{rgba.d.ts → misc/rgba.d.ts} +0 -0
  801. /package/vscode/src/vs/editor/common/core/{rgba.js → misc/rgba.js} +0 -0
  802. /package/vscode/src/vs/editor/common/core/{textModelDefaults.d.ts → misc/textModelDefaults.d.ts} +0 -0
  803. /package/vscode/src/vs/editor/common/core/{textModelDefaults.js → misc/textModelDefaults.js} +0 -0
@@ -65,7 +65,7 @@ const baseVerbosityProperty = {
65
65
  };
66
66
  const accessibilityConfigurationNodeBase = ( Object.freeze({
67
67
  id: 'accessibility',
68
- title: ( localize(4024, "Accessibility")),
68
+ title: ( localize(4048, "Accessibility")),
69
69
  type: 'object'
70
70
  }));
71
71
  const soundFeatureBase = {
@@ -73,9 +73,9 @@ const soundFeatureBase = {
73
73
  'enum': ['auto', 'on', 'off'],
74
74
  'default': 'auto',
75
75
  'enumDescriptions': [
76
- ( localize(4025, "Enable sound when a screen reader is attached.")),
77
- ( localize(4026, "Enable sound.")),
78
- ( localize(4027, "Disable sound."))
76
+ ( localize(4049, "Enable sound when a screen reader is attached.")),
77
+ ( localize(4050, "Enable sound.")),
78
+ ( localize(4051, "Disable sound."))
79
79
  ],
80
80
  tags: ['accessibility'],
81
81
  };
@@ -94,10 +94,10 @@ const announcementFeatureBase = {
94
94
  'default': 'auto',
95
95
  'enumDescriptions': [
96
96
  ( localize(
97
- 4028,
97
+ 4052,
98
98
  "Enable announcement, will only play when in screen reader optimized mode."
99
99
  )),
100
- ( localize(4029, "Disable announcement."))
100
+ ( localize(4053, "Disable announcement."))
101
101
  ],
102
102
  tags: ['accessibility'],
103
103
  };
@@ -115,109 +115,109 @@ const configuration = {
115
115
  properties: {
116
116
  [AccessibilityVerbositySettingId.Terminal]: {
117
117
  description: ( localize(
118
- 4030,
118
+ 4054,
119
119
  'Provide information about how to access the terminal accessibility help menu when the terminal is focused.'
120
120
  )),
121
121
  ...baseVerbosityProperty
122
122
  },
123
123
  [AccessibilityVerbositySettingId.DiffEditor]: {
124
124
  description: ( localize(
125
- 4031,
125
+ 4055,
126
126
  'Provide information about how to navigate changes in the diff editor when it is focused.'
127
127
  )),
128
128
  ...baseVerbosityProperty
129
129
  },
130
130
  [AccessibilityVerbositySettingId.Chat]: {
131
131
  description: ( localize(
132
- 4032,
132
+ 4056,
133
133
  'Provide information about how to access the chat help menu when the chat input is focused.'
134
134
  )),
135
135
  ...baseVerbosityProperty
136
136
  },
137
137
  [AccessibilityVerbositySettingId.InlineChat]: {
138
138
  description: ( localize(
139
- 4033,
139
+ 4057,
140
140
  'Provide information about how to access the inline editor chat accessibility help menu and alert with hints that describe how to use the feature when the input is focused.'
141
141
  )),
142
142
  ...baseVerbosityProperty
143
143
  },
144
144
  [AccessibilityVerbositySettingId.InlineCompletions]: {
145
145
  description: ( localize(
146
- 4034,
146
+ 4058,
147
147
  'Provide information about how to access the inline completions hover and Accessible View.'
148
148
  )),
149
149
  ...baseVerbosityProperty
150
150
  },
151
151
  [AccessibilityVerbositySettingId.KeybindingsEditor]: {
152
152
  description: ( localize(
153
- 4035,
153
+ 4059,
154
154
  'Provide information about how to change a keybinding in the keybindings editor when a row is focused.'
155
155
  )),
156
156
  ...baseVerbosityProperty
157
157
  },
158
158
  [AccessibilityVerbositySettingId.Notebook]: {
159
159
  description: ( localize(
160
- 4036,
160
+ 4060,
161
161
  'Provide information about how to focus the cell container or inner editor when a notebook cell is focused.'
162
162
  )),
163
163
  ...baseVerbosityProperty
164
164
  },
165
165
  [AccessibilityVerbositySettingId.Hover]: {
166
166
  description: ( localize(
167
- 4037,
167
+ 4061,
168
168
  'Provide information about how to open the hover in an Accessible View.'
169
169
  )),
170
170
  ...baseVerbosityProperty
171
171
  },
172
172
  [AccessibilityVerbositySettingId.Notification]: {
173
173
  description: ( localize(
174
- 4038,
174
+ 4062,
175
175
  'Provide information about how to open the notification in an Accessible View.'
176
176
  )),
177
177
  ...baseVerbosityProperty
178
178
  },
179
179
  [AccessibilityVerbositySettingId.EmptyEditorHint]: {
180
180
  description: ( localize(
181
- 4039,
181
+ 4063,
182
182
  'Provide information about relevant actions in an empty text editor.'
183
183
  )),
184
184
  ...baseVerbosityProperty
185
185
  },
186
186
  [AccessibilityVerbositySettingId.ReplEditor]: {
187
187
  description: ( localize(
188
- 4040,
188
+ 4064,
189
189
  'Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused.'
190
190
  )),
191
191
  ...baseVerbosityProperty
192
192
  },
193
193
  [AccessibilityVerbositySettingId.Comments]: {
194
194
  description: ( localize(
195
- 4041,
195
+ 4065,
196
196
  'Provide information about actions that can be taken in the comment widget or in a file which contains comments.'
197
197
  )),
198
198
  ...baseVerbosityProperty
199
199
  },
200
200
  [AccessibilityVerbositySettingId.DiffEditorActive]: {
201
- description: ( localize(4042, 'Indicate when a diff editor becomes the active editor.')),
201
+ description: ( localize(4066, 'Indicate when a diff editor becomes the active editor.')),
202
202
  ...baseVerbosityProperty
203
203
  },
204
204
  [AccessibilityVerbositySettingId.Debug]: {
205
205
  description: ( localize(
206
- 4043,
206
+ 4067,
207
207
  'Provide information about how to access the debug console accessibility help dialog when the debug console or run and debug viewlet is focused. Note that a reload of the window is required for this to take effect.'
208
208
  )),
209
209
  ...baseVerbosityProperty
210
210
  },
211
211
  [AccessibilityVerbositySettingId.Walkthrough]: {
212
212
  description: ( localize(
213
- 4044,
213
+ 4068,
214
214
  'Provide information about how to open the walkthrough in an Accessible View.'
215
215
  )),
216
216
  ...baseVerbosityProperty
217
217
  },
218
218
  [AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
219
219
  markdownDescription: ( localize(
220
- 4045,
220
+ 4069,
221
221
  "On keypress, close the Accessible View and focus the element from which it was invoked."
222
222
  )),
223
223
  type: 'boolean',
@@ -225,13 +225,13 @@ const configuration = {
225
225
  },
226
226
  [AccessibilityVerbositySettingId.SourceControl]: {
227
227
  description: ( localize(
228
- 4046,
228
+ 4070,
229
229
  'Provide information about how to access the source control accessibility help menu when the input is focused.'
230
230
  )),
231
231
  ...baseVerbosityProperty
232
232
  },
233
233
  'accessibility.signalOptions.volume': {
234
- 'description': ( localize(4047, "The volume of the sounds in percent (0-100).")),
234
+ 'description': ( localize(4071, "The volume of the sounds in percent (0-100).")),
235
235
  'type': 'number',
236
236
  'minimum': 0,
237
237
  'maximum': 100,
@@ -239,7 +239,7 @@ const configuration = {
239
239
  'tags': ['accessibility']
240
240
  },
241
241
  'accessibility.signalOptions.debouncePositionChanges': {
242
- 'description': ( localize(4048, "Whether or not position changes should be debounced")),
242
+ 'description': ( localize(4072, "Whether or not position changes should be debounced")),
243
243
  'type': 'boolean',
244
244
  'default': false,
245
245
  'tags': ['accessibility']
@@ -250,13 +250,13 @@ const configuration = {
250
250
  'additionalProperties': false,
251
251
  'properties': {
252
252
  'announcement': {
253
- 'description': ( localize(4049, "The delay in milliseconds before an announcement is made.")),
253
+ 'description': ( localize(4073, "The delay in milliseconds before an announcement is made.")),
254
254
  'type': 'number',
255
255
  'minimum': 0,
256
256
  'default': 3000
257
257
  },
258
258
  'sound': {
259
- 'description': ( localize(4050, "The delay in milliseconds before a sound is played.")),
259
+ 'description': ( localize(4074, "The delay in milliseconds before a sound is played.")),
260
260
  'type': 'number',
261
261
  'minimum': 0,
262
262
  'default': 400
@@ -270,7 +270,7 @@ const configuration = {
270
270
  'properties': {
271
271
  'announcement': {
272
272
  'description': ( localize(
273
- 4051,
273
+ 4075,
274
274
  "The delay in milliseconds before an announcement is made when there's a warning at the position."
275
275
  )),
276
276
  'type': 'number',
@@ -279,7 +279,7 @@ const configuration = {
279
279
  },
280
280
  'sound': {
281
281
  'description': ( localize(
282
- 4052,
282
+ 4076,
283
283
  "The delay in milliseconds before a sound is played when there's a warning at the position."
284
284
  )),
285
285
  'type': 'number',
@@ -295,7 +295,7 @@ const configuration = {
295
295
  'properties': {
296
296
  'announcement': {
297
297
  'description': ( localize(
298
- 4053,
298
+ 4077,
299
299
  "The delay in milliseconds before an announcement is made when there's an error at the position."
300
300
  )),
301
301
  'type': 'number',
@@ -304,7 +304,7 @@ const configuration = {
304
304
  },
305
305
  'sound': {
306
306
  'description': ( localize(
307
- 4054,
307
+ 4078,
308
308
  "The delay in milliseconds before a sound is played when there's an error at the position."
309
309
  )),
310
310
  'type': 'number',
@@ -317,16 +317,16 @@ const configuration = {
317
317
  'accessibility.signals.lineHasBreakpoint': {
318
318
  ...signalFeatureBase,
319
319
  'description': ( localize(
320
- 4055,
320
+ 4079,
321
321
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
322
322
  )),
323
323
  'properties': {
324
324
  'sound': {
325
- 'description': ( localize(4056, "Plays a sound when the active line has a breakpoint.")),
325
+ 'description': ( localize(4080, "Plays a sound when the active line has a breakpoint.")),
326
326
  ...soundFeatureBase
327
327
  },
328
328
  'announcement': {
329
- 'description': ( localize(4057, "Announces when the active line has a breakpoint.")),
329
+ 'description': ( localize(4081, "Announces when the active line has a breakpoint.")),
330
330
  ...announcementFeatureBase
331
331
  },
332
332
  },
@@ -334,12 +334,12 @@ const configuration = {
334
334
  'accessibility.signals.lineHasInlineSuggestion': {
335
335
  ...defaultNoAnnouncement,
336
336
  'description': ( localize(
337
- 4058,
337
+ 4082,
338
338
  "Plays a sound / audio cue when the active line has an inline suggestion."
339
339
  )),
340
340
  'properties': {
341
341
  'sound': {
342
- 'description': ( localize(4059, "Plays a sound when the active line has an inline suggestion.")),
342
+ 'description': ( localize(4083, "Plays a sound when the active line has an inline suggestion.")),
343
343
  ...soundFeatureBase,
344
344
  'default': 'off'
345
345
  }
@@ -348,16 +348,16 @@ const configuration = {
348
348
  'accessibility.signals.nextEditSuggestion': {
349
349
  ...signalFeatureBase,
350
350
  'description': ( localize(
351
- 4060,
351
+ 4084,
352
352
  "Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
353
353
  )),
354
354
  'properties': {
355
355
  'sound': {
356
- 'description': ( localize(4061, "Plays a sound when there is a next edit suggestion.")),
356
+ 'description': ( localize(4085, "Plays a sound when there is a next edit suggestion.")),
357
357
  ...soundFeatureBase,
358
358
  },
359
359
  'announcement': {
360
- 'description': ( localize(4062, "Announces when there is a next edit suggestion.")),
360
+ 'description': ( localize(4086, "Announces when there is a next edit suggestion.")),
361
361
  ...announcementFeatureBase,
362
362
  },
363
363
  }
@@ -365,16 +365,16 @@ const configuration = {
365
365
  'accessibility.signals.lineHasError': {
366
366
  ...signalFeatureBase,
367
367
  'description': ( localize(
368
- 4063,
368
+ 4087,
369
369
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
370
370
  )),
371
371
  'properties': {
372
372
  'sound': {
373
- 'description': ( localize(4064, "Plays a sound when the active line has an error.")),
373
+ 'description': ( localize(4088, "Plays a sound when the active line has an error.")),
374
374
  ...soundFeatureBase
375
375
  },
376
376
  'announcement': {
377
- 'description': ( localize(4065, "Announces when the active line has an error.")),
377
+ 'description': ( localize(4089, "Announces when the active line has an error.")),
378
378
  ...announcementFeatureBase,
379
379
  default: 'off'
380
380
  },
@@ -383,13 +383,13 @@ const configuration = {
383
383
  'accessibility.signals.lineHasFoldedArea': {
384
384
  ...signalFeatureBase,
385
385
  'description': ( localize(
386
- 4066,
386
+ 4090,
387
387
  "Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
388
388
  )),
389
389
  'properties': {
390
390
  'sound': {
391
391
  'description': ( localize(
392
- 4067,
392
+ 4091,
393
393
  "Plays a sound when the active line has a folded area that can be unfolded."
394
394
  )),
395
395
  ...soundFeatureBase,
@@ -397,7 +397,7 @@ const configuration = {
397
397
  },
398
398
  'announcement': {
399
399
  'description': ( localize(
400
- 4068,
400
+ 4092,
401
401
  "Announces when the active line has a folded area that can be unfolded."
402
402
  )),
403
403
  ...announcementFeatureBase
@@ -407,16 +407,16 @@ const configuration = {
407
407
  'accessibility.signals.lineHasWarning': {
408
408
  ...signalFeatureBase,
409
409
  'description': ( localize(
410
- 4069,
410
+ 4093,
411
411
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
412
412
  )),
413
413
  'properties': {
414
414
  'sound': {
415
- 'description': ( localize(4070, "Plays a sound when the active line has a warning.")),
415
+ 'description': ( localize(4094, "Plays a sound when the active line has a warning.")),
416
416
  ...soundFeatureBase
417
417
  },
418
418
  'announcement': {
419
- 'description': ( localize(4071, "Announces when the active line has a warning.")),
419
+ 'description': ( localize(4095, "Announces when the active line has a warning.")),
420
420
  ...announcementFeatureBase,
421
421
  default: 'off'
422
422
  },
@@ -425,16 +425,16 @@ const configuration = {
425
425
  'accessibility.signals.positionHasError': {
426
426
  ...signalFeatureBase,
427
427
  'description': ( localize(
428
- 4072,
428
+ 4096,
429
429
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
430
430
  )),
431
431
  'properties': {
432
432
  'sound': {
433
- 'description': ( localize(4073, "Plays a sound when the active line has a warning.")),
433
+ 'description': ( localize(4097, "Plays a sound when the active line has a warning.")),
434
434
  ...soundFeatureBase
435
435
  },
436
436
  'announcement': {
437
- 'description': ( localize(4074, "Announces when the active line has a warning.")),
437
+ 'description': ( localize(4098, "Announces when the active line has a warning.")),
438
438
  ...announcementFeatureBase,
439
439
  default: 'on'
440
440
  },
@@ -443,16 +443,16 @@ const configuration = {
443
443
  'accessibility.signals.positionHasWarning': {
444
444
  ...signalFeatureBase,
445
445
  'description': ( localize(
446
- 4075,
446
+ 4099,
447
447
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
448
448
  )),
449
449
  'properties': {
450
450
  'sound': {
451
- 'description': ( localize(4076, "Plays a sound when the active line has a warning.")),
451
+ 'description': ( localize(4100, "Plays a sound when the active line has a warning.")),
452
452
  ...soundFeatureBase
453
453
  },
454
454
  'announcement': {
455
- 'description': ( localize(4077, "Announces when the active line has a warning.")),
455
+ 'description': ( localize(4101, "Announces when the active line has a warning.")),
456
456
  ...announcementFeatureBase,
457
457
  default: 'on'
458
458
  },
@@ -461,16 +461,16 @@ const configuration = {
461
461
  'accessibility.signals.onDebugBreak': {
462
462
  ...signalFeatureBase,
463
463
  'description': ( localize(
464
- 4078,
464
+ 4102,
465
465
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
466
466
  )),
467
467
  'properties': {
468
468
  'sound': {
469
- 'description': ( localize(4079, "Plays a sound when the debugger stopped on a breakpoint.")),
469
+ 'description': ( localize(4103, "Plays a sound when the debugger stopped on a breakpoint.")),
470
470
  ...soundFeatureBase
471
471
  },
472
472
  'announcement': {
473
- 'description': ( localize(4080, "Announces when the debugger stopped on a breakpoint.")),
473
+ 'description': ( localize(4104, "Announces when the debugger stopped on a breakpoint.")),
474
474
  ...announcementFeatureBase
475
475
  },
476
476
  }
@@ -478,20 +478,20 @@ const configuration = {
478
478
  'accessibility.signals.noInlayHints': {
479
479
  ...signalFeatureBase,
480
480
  'description': ( localize(
481
- 4081,
481
+ 4105,
482
482
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
483
483
  )),
484
484
  'properties': {
485
485
  'sound': {
486
486
  'description': ( localize(
487
- 4082,
487
+ 4106,
488
488
  "Plays a sound when trying to read a line with inlay hints that has no inlay hints."
489
489
  )),
490
490
  ...soundFeatureBase
491
491
  },
492
492
  'announcement': {
493
493
  'description': ( localize(
494
- 4083,
494
+ 4107,
495
495
  "Announces when trying to read a line with inlay hints that has no inlay hints."
496
496
  )),
497
497
  ...announcementFeatureBase
@@ -501,16 +501,16 @@ const configuration = {
501
501
  'accessibility.signals.taskCompleted': {
502
502
  ...signalFeatureBase,
503
503
  'description': ( localize(
504
- 4084,
504
+ 4108,
505
505
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
506
506
  )),
507
507
  'properties': {
508
508
  'sound': {
509
- 'description': ( localize(4085, "Plays a sound when a task is completed.")),
509
+ 'description': ( localize(4109, "Plays a sound when a task is completed.")),
510
510
  ...soundFeatureBase
511
511
  },
512
512
  'announcement': {
513
- 'description': ( localize(4086, "Announces when a task is completed.")),
513
+ 'description': ( localize(4110, "Announces when a task is completed.")),
514
514
  ...announcementFeatureBase
515
515
  },
516
516
  }
@@ -518,16 +518,16 @@ const configuration = {
518
518
  'accessibility.signals.taskFailed': {
519
519
  ...signalFeatureBase,
520
520
  'description': ( localize(
521
- 4087,
521
+ 4111,
522
522
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
523
523
  )),
524
524
  'properties': {
525
525
  'sound': {
526
- 'description': ( localize(4088, "Plays a sound when a task fails (non-zero exit code).")),
526
+ 'description': ( localize(4112, "Plays a sound when a task fails (non-zero exit code).")),
527
527
  ...soundFeatureBase
528
528
  },
529
529
  'announcement': {
530
- 'description': ( localize(4089, "Announces when a task fails (non-zero exit code).")),
530
+ 'description': ( localize(4113, "Announces when a task fails (non-zero exit code).")),
531
531
  ...announcementFeatureBase
532
532
  },
533
533
  }
@@ -535,20 +535,20 @@ const configuration = {
535
535
  'accessibility.signals.terminalCommandFailed': {
536
536
  ...signalFeatureBase,
537
537
  'description': ( localize(
538
- 4090,
538
+ 4114,
539
539
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
540
540
  )),
541
541
  'properties': {
542
542
  'sound': {
543
543
  'description': ( localize(
544
- 4091,
544
+ 4115,
545
545
  "Plays a sound when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
546
546
  )),
547
547
  ...soundFeatureBase
548
548
  },
549
549
  'announcement': {
550
550
  'description': ( localize(
551
- 4092,
551
+ 4116,
552
552
  "Announces when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
553
553
  )),
554
554
  ...announcementFeatureBase
@@ -558,20 +558,20 @@ const configuration = {
558
558
  'accessibility.signals.terminalCommandSucceeded': {
559
559
  ...signalFeatureBase,
560
560
  'description': ( localize(
561
- 4093,
561
+ 4117,
562
562
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
563
563
  )),
564
564
  'properties': {
565
565
  'sound': {
566
566
  'description': ( localize(
567
- 4094,
567
+ 4118,
568
568
  "Plays a sound when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
569
569
  )),
570
570
  ...soundFeatureBase
571
571
  },
572
572
  'announcement': {
573
573
  'description': ( localize(
574
- 4095,
574
+ 4119,
575
575
  "Announces when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
576
576
  )),
577
577
  ...announcementFeatureBase
@@ -581,16 +581,16 @@ const configuration = {
581
581
  'accessibility.signals.terminalQuickFix': {
582
582
  ...signalFeatureBase,
583
583
  'description': ( localize(
584
- 4096,
584
+ 4120,
585
585
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
586
586
  )),
587
587
  'properties': {
588
588
  'sound': {
589
- 'description': ( localize(4097, "Plays a sound when terminal Quick Fixes are available.")),
589
+ 'description': ( localize(4121, "Plays a sound when terminal Quick Fixes are available.")),
590
590
  ...soundFeatureBase
591
591
  },
592
592
  'announcement': {
593
- 'description': ( localize(4098, "Announces when terminal Quick Fixes are available.")),
593
+ 'description': ( localize(4122, "Announces when terminal Quick Fixes are available.")),
594
594
  ...announcementFeatureBase
595
595
  },
596
596
  }
@@ -598,16 +598,16 @@ const configuration = {
598
598
  'accessibility.signals.terminalBell': {
599
599
  ...signalFeatureBase,
600
600
  'description': ( localize(
601
- 4099,
601
+ 4123,
602
602
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
603
603
  )),
604
604
  'properties': {
605
605
  'sound': {
606
- 'description': ( localize(4100, "Plays a sound when the terminal bell is ringing.")),
606
+ 'description': ( localize(4124, "Plays a sound when the terminal bell is ringing.")),
607
607
  ...soundFeatureBase
608
608
  },
609
609
  'announcement': {
610
- 'description': ( localize(4101, "Announces when the terminal bell is ringing.")),
610
+ 'description': ( localize(4125, "Announces when the terminal bell is ringing.")),
611
611
  ...announcementFeatureBase
612
612
  },
613
613
  }
@@ -615,13 +615,13 @@ const configuration = {
615
615
  'accessibility.signals.diffLineInserted': {
616
616
  ...defaultNoAnnouncement,
617
617
  'description': ( localize(
618
- 4102,
618
+ 4126,
619
619
  "Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
620
620
  )),
621
621
  'properties': {
622
622
  'sound': {
623
623
  'description': ( localize(
624
- 4103,
624
+ 4127,
625
625
  "Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
626
626
  )),
627
627
  ...soundFeatureBase
@@ -631,13 +631,13 @@ const configuration = {
631
631
  'accessibility.signals.diffLineModified': {
632
632
  ...defaultNoAnnouncement,
633
633
  'description': ( localize(
634
- 4104,
634
+ 4128,
635
635
  "Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
636
636
  )),
637
637
  'properties': {
638
638
  'sound': {
639
639
  'description': ( localize(
640
- 4105,
640
+ 4129,
641
641
  "Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
642
642
  )),
643
643
  ...soundFeatureBase
@@ -647,13 +647,13 @@ const configuration = {
647
647
  'accessibility.signals.diffLineDeleted': {
648
648
  ...defaultNoAnnouncement,
649
649
  'description': ( localize(
650
- 4106,
650
+ 4130,
651
651
  "Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
652
652
  )),
653
653
  'properties': {
654
654
  'sound': {
655
655
  'description': ( localize(
656
- 4107,
656
+ 4131,
657
657
  "Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
658
658
  )),
659
659
  ...soundFeatureBase
@@ -663,12 +663,12 @@ const configuration = {
663
663
  'accessibility.signals.chatEditModifiedFile': {
664
664
  ...defaultNoAnnouncement,
665
665
  'description': ( localize(
666
- 4108,
666
+ 4132,
667
667
  "Plays a sound / audio cue when revealing a file with changes from chat edits"
668
668
  )),
669
669
  'properties': {
670
670
  'sound': {
671
- 'description': ( localize(4109, "Plays a sound when revealing a file with changes from chat edits")),
671
+ 'description': ( localize(4133, "Plays a sound when revealing a file with changes from chat edits")),
672
672
  ...soundFeatureBase
673
673
  }
674
674
  }
@@ -676,20 +676,20 @@ const configuration = {
676
676
  'accessibility.signals.notebookCellCompleted': {
677
677
  ...signalFeatureBase,
678
678
  'description': ( localize(
679
- 4110,
679
+ 4134,
680
680
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
681
681
  )),
682
682
  'properties': {
683
683
  'sound': {
684
684
  'description': ( localize(
685
- 4111,
685
+ 4135,
686
686
  "Plays a sound when a notebook cell execution is successfully completed."
687
687
  )),
688
688
  ...soundFeatureBase
689
689
  },
690
690
  'announcement': {
691
691
  'description': ( localize(
692
- 4112,
692
+ 4136,
693
693
  "Announces when a notebook cell execution is successfully completed."
694
694
  )),
695
695
  ...announcementFeatureBase
@@ -699,16 +699,16 @@ const configuration = {
699
699
  'accessibility.signals.notebookCellFailed': {
700
700
  ...signalFeatureBase,
701
701
  'description': ( localize(
702
- 4113,
702
+ 4137,
703
703
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
704
704
  )),
705
705
  'properties': {
706
706
  'sound': {
707
- 'description': ( localize(4114, "Plays a sound when a notebook cell execution fails.")),
707
+ 'description': ( localize(4138, "Plays a sound when a notebook cell execution fails.")),
708
708
  ...soundFeatureBase
709
709
  },
710
710
  'announcement': {
711
- 'description': ( localize(4115, "Announces when a notebook cell execution fails.")),
711
+ 'description': ( localize(4139, "Announces when a notebook cell execution fails.")),
712
712
  ...announcementFeatureBase
713
713
  },
714
714
  }
@@ -716,16 +716,16 @@ const configuration = {
716
716
  'accessibility.signals.progress': {
717
717
  ...signalFeatureBase,
718
718
  'description': ( localize(
719
- 4116,
719
+ 4140,
720
720
  "Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
721
721
  )),
722
722
  'properties': {
723
723
  'sound': {
724
- 'description': ( localize(4117, "Plays a sound on loop while progress is occurring.")),
724
+ 'description': ( localize(4141, "Plays a sound on loop while progress is occurring.")),
725
725
  ...soundFeatureBase
726
726
  },
727
727
  'announcement': {
728
- 'description': ( localize(4118, "Alerts on loop while progress is occurring.")),
728
+ 'description': ( localize(4142, "Alerts on loop while progress is occurring.")),
729
729
  ...announcementFeatureBase
730
730
  },
731
731
  },
@@ -733,56 +733,56 @@ const configuration = {
733
733
  'accessibility.signals.chatRequestSent': {
734
734
  ...signalFeatureBase,
735
735
  'description': ( localize(
736
- 4119,
736
+ 4143,
737
737
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
738
738
  )),
739
739
  'properties': {
740
740
  'sound': {
741
- 'description': ( localize(4120, "Plays a sound when a chat request is made.")),
741
+ 'description': ( localize(4144, "Plays a sound when a chat request is made.")),
742
742
  ...soundFeatureBase
743
743
  },
744
744
  'announcement': {
745
- 'description': ( localize(4121, "Announces when a chat request is made.")),
745
+ 'description': ( localize(4145, "Announces when a chat request is made.")),
746
746
  ...announcementFeatureBase
747
747
  },
748
748
  }
749
749
  },
750
750
  'accessibility.signals.chatResponseReceived': {
751
751
  ...defaultNoAnnouncement,
752
- 'description': ( localize(4122, "Plays a sound / audio cue when the response has been received.")),
752
+ 'description': ( localize(4146, "Plays a sound / audio cue when the response has been received.")),
753
753
  'properties': {
754
754
  'sound': {
755
- 'description': ( localize(4123, "Plays a sound on when the response has been received.")),
755
+ 'description': ( localize(4147, "Plays a sound on when the response has been received.")),
756
756
  ...soundFeatureBase
757
757
  },
758
758
  }
759
759
  },
760
760
  'accessibility.signals.codeActionTriggered': {
761
761
  ...defaultNoAnnouncement,
762
- 'description': ( localize(4124, "Plays a sound / audio cue - when a code action has been triggered.")),
762
+ 'description': ( localize(4148, "Plays a sound / audio cue - when a code action has been triggered.")),
763
763
  'properties': {
764
764
  'sound': {
765
- 'description': ( localize(4125, "Plays a sound when a code action has been triggered.")),
765
+ 'description': ( localize(4149, "Plays a sound when a code action has been triggered.")),
766
766
  ...soundFeatureBase
767
767
  }
768
768
  }
769
769
  },
770
770
  'accessibility.signals.codeActionApplied': {
771
771
  ...defaultNoAnnouncement,
772
- 'description': ( localize(4126, "Plays a sound / audio cue when the code action has been applied.")),
772
+ 'description': ( localize(4150, "Plays a sound / audio cue when the code action has been applied.")),
773
773
  'properties': {
774
774
  'sound': {
775
- 'description': ( localize(4127, "Plays a sound when the code action has been applied.")),
775
+ 'description': ( localize(4151, "Plays a sound when the code action has been applied.")),
776
776
  ...soundFeatureBase
777
777
  },
778
778
  }
779
779
  },
780
780
  'accessibility.signals.voiceRecordingStarted': {
781
781
  ...defaultNoAnnouncement,
782
- 'description': ( localize(4128, "Plays a sound / audio cue when the voice recording has started.")),
782
+ 'description': ( localize(4152, "Plays a sound / audio cue when the voice recording has started.")),
783
783
  'properties': {
784
784
  'sound': {
785
- 'description': ( localize(4129, "Plays a sound when the voice recording has started.")),
785
+ 'description': ( localize(4153, "Plays a sound when the voice recording has started.")),
786
786
  ...soundFeatureBase,
787
787
  },
788
788
  },
@@ -792,10 +792,10 @@ const configuration = {
792
792
  },
793
793
  'accessibility.signals.voiceRecordingStopped': {
794
794
  ...defaultNoAnnouncement,
795
- 'description': ( localize(4130, "Plays a sound / audio cue when the voice recording has stopped.")),
795
+ 'description': ( localize(4154, "Plays a sound / audio cue when the voice recording has stopped.")),
796
796
  'properties': {
797
797
  'sound': {
798
- 'description': ( localize(4131, "Plays a sound when the voice recording has stopped.")),
798
+ 'description': ( localize(4155, "Plays a sound when the voice recording has stopped.")),
799
799
  ...soundFeatureBase,
800
800
  default: 'off'
801
801
  },
@@ -804,16 +804,16 @@ const configuration = {
804
804
  'accessibility.signals.clear': {
805
805
  ...signalFeatureBase,
806
806
  'description': ( localize(
807
- 4132,
807
+ 4156,
808
808
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
809
809
  )),
810
810
  'properties': {
811
811
  'sound': {
812
- 'description': ( localize(4133, "Plays a sound when a feature is cleared.")),
812
+ 'description': ( localize(4157, "Plays a sound when a feature is cleared.")),
813
813
  ...soundFeatureBase
814
814
  },
815
815
  'announcement': {
816
- 'description': ( localize(4134, "Announces when a feature is cleared.")),
816
+ 'description': ( localize(4158, "Announces when a feature is cleared.")),
817
817
  ...announcementFeatureBase
818
818
  },
819
819
  },
@@ -821,16 +821,16 @@ const configuration = {
821
821
  'accessibility.signals.editsUndone': {
822
822
  ...signalFeatureBase,
823
823
  'description': ( localize(
824
- 4135,
824
+ 4159,
825
825
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
826
826
  )),
827
827
  'properties': {
828
828
  'sound': {
829
- 'description': ( localize(4136, "Plays a sound when edits have been undone.")),
829
+ 'description': ( localize(4160, "Plays a sound when edits have been undone.")),
830
830
  ...soundFeatureBase
831
831
  },
832
832
  'announcement': {
833
- 'description': ( localize(4137, "Announces when edits have been undone.")),
833
+ 'description': ( localize(4161, "Announces when edits have been undone.")),
834
834
  ...announcementFeatureBase
835
835
  },
836
836
  },
@@ -838,16 +838,16 @@ const configuration = {
838
838
  'accessibility.signals.editsKept': {
839
839
  ...signalFeatureBase,
840
840
  'description': ( localize(
841
- 4138,
841
+ 4162,
842
842
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
843
843
  )),
844
844
  'properties': {
845
845
  'sound': {
846
- 'description': ( localize(4139, "Plays a sound when edits are kept.")),
846
+ 'description': ( localize(4163, "Plays a sound when edits are kept.")),
847
847
  ...soundFeatureBase
848
848
  },
849
849
  'announcement': {
850
- 'description': ( localize(4140, "Announces when edits are kept.")),
850
+ 'description': ( localize(4164, "Announces when edits are kept.")),
851
851
  ...announcementFeatureBase
852
852
  },
853
853
  },
@@ -857,30 +857,30 @@ const configuration = {
857
857
  'tags': ['accessibility'],
858
858
  additionalProperties: false,
859
859
  'markdownDescription': ( localize(
860
- 4141,
860
+ 4165,
861
861
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
862
862
  )),
863
863
  'properties': {
864
864
  'sound': {
865
- 'description': ( localize(4142, "Plays a sound when a file is saved.")),
865
+ 'description': ( localize(4166, "Plays a sound when a file is saved.")),
866
866
  'type': 'string',
867
867
  'enum': ['userGesture', 'always', 'never'],
868
868
  'default': 'never',
869
869
  'enumDescriptions': [
870
- ( localize(4143, "Plays the sound when a user explicitly saves a file.")),
871
- ( localize(4144, "Plays the sound whenever a file is saved, including auto save.")),
872
- ( localize(4145, "Never plays the sound."))
870
+ ( localize(4167, "Plays the sound when a user explicitly saves a file.")),
871
+ ( localize(4168, "Plays the sound whenever a file is saved, including auto save.")),
872
+ ( localize(4169, "Never plays the sound."))
873
873
  ],
874
874
  },
875
875
  'announcement': {
876
- 'description': ( localize(4146, "Announces when a file is saved.")),
876
+ 'description': ( localize(4170, "Announces when a file is saved.")),
877
877
  'type': 'string',
878
878
  'enum': ['userGesture', 'always', 'never'],
879
879
  'default': 'never',
880
880
  'enumDescriptions': [
881
- ( localize(4147, "Announces when a user explicitly saves a file.")),
882
- ( localize(4148, "Announces whenever a file is saved, including auto save.")),
883
- ( localize(4149, "Never plays the announcement."))
881
+ ( localize(4171, "Announces when a user explicitly saves a file.")),
882
+ ( localize(4172, "Announces whenever a file is saved, including auto save.")),
883
+ ( localize(4173, "Never plays the announcement."))
884
884
  ],
885
885
  },
886
886
  },
@@ -894,36 +894,36 @@ const configuration = {
894
894
  'tags': ['accessibility'],
895
895
  additionalProperties: false,
896
896
  'markdownDescription': ( localize(
897
- 4150,
897
+ 4174,
898
898
  "Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
899
899
  )),
900
900
  'properties': {
901
901
  'sound': {
902
- 'description': ( localize(4151, "Plays a sound when a file or notebook is formatted.")),
902
+ 'description': ( localize(4175, "Plays a sound when a file or notebook is formatted.")),
903
903
  'type': 'string',
904
904
  'enum': ['userGesture', 'always', 'never'],
905
905
  'default': 'never',
906
906
  'enumDescriptions': [
907
- ( localize(4152, "Plays the sound when a user explicitly formats a file.")),
907
+ ( localize(4176, "Plays the sound when a user explicitly formats a file.")),
908
908
  ( localize(
909
- 4153,
909
+ 4177,
910
910
  "Plays the sound whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
911
911
  )),
912
- ( localize(4154, "Never plays the sound."))
912
+ ( localize(4178, "Never plays the sound."))
913
913
  ],
914
914
  },
915
915
  'announcement': {
916
- 'description': ( localize(4155, "Announces when a file or notebook is formatted.")),
916
+ 'description': ( localize(4179, "Announces when a file or notebook is formatted.")),
917
917
  'type': 'string',
918
918
  'enum': ['userGesture', 'always', 'never'],
919
919
  'default': 'never',
920
920
  'enumDescriptions': [
921
- ( localize(4156, "Announces when a user explicitly formats a file.")),
921
+ ( localize(4180, "Announces when a user explicitly formats a file.")),
922
922
  ( localize(
923
- 4157,
923
+ 4181,
924
924
  "Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
925
925
  )),
926
- ( localize(4158, "Never announces."))
926
+ ( localize(4182, "Never announces."))
927
927
  ],
928
928
  },
929
929
  },
@@ -932,15 +932,49 @@ const configuration = {
932
932
  'announcement': 'never'
933
933
  }
934
934
  },
935
+ 'accessibility.signals.chatUserActionRequired': {
936
+ ...signalFeatureBase,
937
+ 'markdownDescription': ( localize(
938
+ 4183,
939
+ "Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
940
+ )),
941
+ 'properties': {
942
+ 'sound': {
943
+ 'description': ( localize(4184, "Plays a sound when user action is required in the chat.")),
944
+ 'type': 'string',
945
+ 'enum': ['auto', 'on', 'off'],
946
+ 'enumDescriptions': [
947
+ ( localize(
948
+ 4185,
949
+ "Enable sound when a screen reader is attached or when the current window is not focused."
950
+ )),
951
+ ( localize(4050, "Enable sound.")),
952
+ ( localize(4051, "Disable sound."))
953
+ ],
954
+ },
955
+ 'announcement': {
956
+ 'description': ( localize(
957
+ 4186,
958
+ "Announces when a user action is required in the chat - including information about the action and how to take it."
959
+ )),
960
+ ...announcementFeatureBase
961
+ },
962
+ },
963
+ default: {
964
+ 'sound': 'off',
965
+ 'announcement': 'auto'
966
+ },
967
+ tags: ['accessibility']
968
+ },
935
969
  'accessibility.underlineLinks': {
936
970
  'type': 'boolean',
937
- 'description': ( localize(4159, "Controls whether links should be underlined in the workbench.")),
971
+ 'description': ( localize(4187, "Controls whether links should be underlined in the workbench.")),
938
972
  'default': false,
939
973
  },
940
974
  'accessibility.debugWatchVariableAnnouncements': {
941
975
  'type': 'boolean',
942
976
  'description': ( localize(
943
- 4160,
977
+ 4188,
944
978
  "Controls whether variable changes should be announced in the debug watch view."
945
979
  )),
946
980
  'default': true,
@@ -948,7 +982,7 @@ const configuration = {
948
982
  'accessibility.replEditor.readLastExecutionOutput': {
949
983
  'type': 'boolean',
950
984
  'description': ( localize(
951
- 4161,
985
+ 4189,
952
986
  "Controls whether the output from an execution in the native REPL will be announced."
953
987
  )),
954
988
  'default': true,
@@ -958,7 +992,7 @@ const configuration = {
958
992
  enum: ['none', 'input', 'lastExecution'],
959
993
  default: 'input',
960
994
  description: ( localize(
961
- 4162,
995
+ 4190,
962
996
  "Control whether focus should automatically be sent to the REPL when code is executed."
963
997
  )),
964
998
  },
@@ -966,7 +1000,7 @@ const configuration = {
966
1000
  'type': 'boolean',
967
1001
  'default': true,
968
1002
  'markdownDescription': ( localize(
969
- 4163,
1003
+ 4191,
970
1004
  "Controls whether the {0} should be optimized for screen readers when in screen reader mode. When enabled, the window title will have {1} appended to the end.",
971
1005
  '`#window.title#`',
972
1006
  '`activeEditorState`'
@@ -982,7 +1016,7 @@ function registerAccessibilityConfiguration() {
982
1016
  properties: {
983
1017
  [AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
984
1018
  description: ( localize(
985
- 4164,
1019
+ 4192,
986
1020
  'Whether to dim unfocused editors and terminals, which makes it more clear where typed input will go to. This works with the majority of editors with the notable exceptions of those that utilize iframes like notebooks and extension webview editors.'
987
1021
  )),
988
1022
  type: 'boolean',
@@ -992,7 +1026,7 @@ function registerAccessibilityConfiguration() {
992
1026
  },
993
1027
  [AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
994
1028
  markdownDescription: ( localize(
995
- 4165,
1029
+ 4193,
996
1030
  'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
997
1031
  `\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
998
1032
  )),
@@ -1004,7 +1038,7 @@ function registerAccessibilityConfiguration() {
1004
1038
  scope: ConfigurationScope.APPLICATION,
1005
1039
  },
1006
1040
  [AccessibilityWorkbenchSettingId.HideAccessibleView]: {
1007
- description: ( localize(4166, "Controls whether the Accessible View is hidden.")),
1041
+ description: ( localize(4194, "Controls whether the Accessible View is hidden.")),
1008
1042
  type: 'boolean',
1009
1043
  default: false,
1010
1044
  tags: ['accessibility']
@@ -1034,7 +1068,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1034
1068
  properties: {
1035
1069
  [AccessibilityVoiceSettingId.SpeechTimeout]: {
1036
1070
  'markdownDescription': ( localize(
1037
- 4167,
1071
+ 4195,
1038
1072
  "The duration in milliseconds that voice speech recognition remains active after you stop speaking. For example in a chat session, the transcribed text is submitted automatically after the timeout is met. Set to `0` to disable this feature."
1039
1073
  )),
1040
1074
  'type': 'number',
@@ -1043,14 +1077,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1043
1077
  'tags': ['accessibility']
1044
1078
  },
1045
1079
  [AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
1046
- 'markdownDescription': ( localize(4168, "Whether to ignore code snippets in text-to-speech synthesis.")),
1080
+ 'markdownDescription': ( localize(4196, "Whether to ignore code snippets in text-to-speech synthesis.")),
1047
1081
  'type': 'boolean',
1048
1082
  'default': false,
1049
1083
  'tags': ['accessibility']
1050
1084
  },
1051
1085
  [AccessibilityVoiceSettingId.SpeechLanguage]: {
1052
1086
  'markdownDescription': ( localize(
1053
- 4169,
1087
+ 4197,
1054
1088
  "The language that text-to-speech and speech-to-text should use. Select `auto` to use the configured display language if possible. Note that not all display languages maybe supported by speech recognition and synthesizers."
1055
1089
  )),
1056
1090
  'type': 'string',
@@ -1065,13 +1099,13 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1065
1099
  'enum': ['on', 'off'],
1066
1100
  'enumDescriptions': [
1067
1101
  ( localize(
1068
- 4170,
1102
+ 4198,
1069
1103
  "Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
1070
1104
  )),
1071
- ( localize(4171, "Disable the feature.")),
1105
+ ( localize(4199, "Disable the feature.")),
1072
1106
  ],
1073
1107
  'markdownDescription': ( localize(
1074
- 4172,
1108
+ 4200,
1075
1109
  "Whether a textual response should automatically be read out aloud when speech was used as input. For example in a chat session, a response is automatically synthesized when voice was used as chat request."
1076
1110
  )),
1077
1111
  'default': 'off',
@@ -1083,7 +1117,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
1083
1117
  getLanguages() {
1084
1118
  return {
1085
1119
  ['auto']: {
1086
- name: ( localize(4173, "Auto (Use Display Language)"))
1120
+ name: ( localize(4201, "Auto (Use Display Language)"))
1087
1121
  },
1088
1122
  ...SPEECH_LANGUAGES
1089
1123
  };