@codingame/monaco-vscode-api 24.3.0 → 25.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 (943) hide show
  1. package/debugProtocol.d.ts +1 -1
  2. package/missing-services.js +30 -34
  3. package/package.json +8 -8
  4. package/services.d.ts +16 -16
  5. package/services.js +19 -19
  6. package/vscode/product.json.js +1 -1
  7. package/vscode/src/vs/base/browser/dom.js +14 -2
  8. package/vscode/src/vs/base/browser/ui/button/button.d.ts +3 -1
  9. package/vscode/src/vs/base/browser/ui/button/button.js +16 -8
  10. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +3 -8
  11. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  12. package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +5 -0
  13. package/vscode/src/vs/base/browser/ui/findinput/findInput.js +6 -1
  14. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.d.ts +3 -0
  15. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +17 -1
  16. package/vscode/src/vs/base/browser/ui/list/list.css +1 -0
  17. package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +12 -2
  18. package/vscode/src/vs/base/browser/ui/toggle/toggle.js +15 -4
  19. package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -0
  20. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -0
  21. package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -0
  22. package/vscode/src/vs/base/common/actions.d.ts +1 -1
  23. package/vscode/src/vs/base/common/actions.js +1 -1
  24. package/vscode/src/vs/base/common/codicons.d.ts +5 -2
  25. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -2
  26. package/vscode/src/vs/base/common/codiconsLibrary.js +5 -2
  27. package/vscode/src/vs/base/common/date.js +14 -22
  28. package/vscode/src/vs/base/common/equals.d.ts +46 -15
  29. package/vscode/src/vs/base/common/equals.js +51 -24
  30. package/vscode/src/vs/base/common/errorMessage.js +6 -6
  31. package/vscode/src/vs/base/common/event.d.ts +12 -2
  32. package/vscode/src/vs/base/common/event.js +4 -4
  33. package/vscode/src/vs/base/common/fuzzyScorer.d.ts +1 -1
  34. package/vscode/src/vs/base/common/fuzzyScorer.js +2 -2
  35. package/vscode/src/vs/base/common/jsonErrorMessages.js +9 -9
  36. package/vscode/src/vs/base/common/keybindingLabels.js +20 -20
  37. package/vscode/src/vs/base/common/marshallingIds.d.ts +1 -1
  38. package/vscode/src/vs/base/common/marshallingIds.js +1 -1
  39. package/vscode/src/vs/base/common/oauth.d.ts +12 -4
  40. package/vscode/src/vs/base/common/oauth.js +63 -60
  41. package/vscode/src/vs/base/common/observableInternal/base.js +1 -1
  42. package/vscode/src/vs/base/common/observableInternal/changeTracker.js +1 -1
  43. package/vscode/src/vs/base/common/observableInternal/experimental/utils.js +1 -1
  44. package/vscode/src/vs/base/common/observableInternal/index.js +1 -1
  45. package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +1 -1
  46. package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +1 -0
  47. package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +1 -1
  48. package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +1 -1
  49. package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +2 -0
  50. package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +17 -1
  51. package/vscode/src/vs/base/common/observableInternal/utils/runOnChange.js +1 -1
  52. package/vscode/src/vs/base/common/observableInternal/utils/utils.js +1 -1
  53. package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.js +1 -1
  54. package/vscode/src/vs/base/common/observableInternal/utils/valueWithChangeEvent.js +1 -1
  55. package/vscode/src/vs/base/common/strings.js +2 -1
  56. package/vscode/src/vs/base/parts/ipc/common/ipc.js +1 -0
  57. package/vscode/src/vs/editor/browser/controller/dragScrolling.js +2 -1
  58. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -1
  59. package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +1 -2
  60. package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +4 -4
  61. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
  62. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.js +16 -2
  63. package/vscode/src/vs/editor/browser/controller/mouseHandler.js +5 -2
  64. package/vscode/src/vs/editor/browser/coreCommands.js +5 -4
  65. package/vscode/src/vs/editor/browser/editorExtensions.js +9 -9
  66. package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +4 -0
  67. package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.js +7 -1
  68. package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +13 -1
  69. package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +7 -4
  70. package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +13 -3
  71. package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.js +36 -1
  72. package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +36 -1
  73. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +29 -3
  74. package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +8 -0
  75. package/vscode/src/vs/editor/browser/observableCodeEditor.js +24 -15
  76. package/vscode/src/vs/editor/browser/services/editorWorkerService.js +7 -2
  77. package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +4 -4
  78. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +2 -2
  79. package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
  80. package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +14 -14
  81. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
  82. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +7 -7
  83. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
  84. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
  85. package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
  86. package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +2 -2
  87. package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
  88. package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +7 -6
  89. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
  90. package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +2 -2
  91. package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +61 -56
  92. package/vscode/src/vs/editor/common/config/editorOptions.js +410 -410
  93. package/vscode/src/vs/editor/common/config/fontInfo.d.ts +1 -1
  94. package/vscode/src/vs/editor/common/config/fontInfo.js +1 -1
  95. package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
  96. package/vscode/src/vs/editor/common/core/range.d.ts +3 -0
  97. package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.js +3 -3
  98. package/vscode/src/vs/editor/common/cursor/cursorWordOperations.d.ts +1 -1
  99. package/vscode/src/vs/editor/common/cursor/cursorWordOperations.js +6 -3
  100. package/vscode/src/vs/editor/common/editorContextKeys.js +47 -47
  101. package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +5 -5
  102. package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
  103. package/vscode/src/vs/editor/common/languages/nullTokenize.js +1 -1
  104. package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +3 -0
  105. package/vscode/src/vs/editor/common/languages/supports/tokenization.js +29 -1
  106. package/vscode/src/vs/editor/common/languages.d.ts +17 -3
  107. package/vscode/src/vs/editor/common/languages.js +58 -57
  108. package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +15 -2
  109. package/vscode/src/vs/editor/common/model/decorationProvider.js +25 -0
  110. package/vscode/src/vs/editor/common/model/editStack.js +1 -1
  111. package/vscode/src/vs/editor/common/model/indentationGuesser.js +2 -2
  112. package/vscode/src/vs/editor/common/model/textModel.d.ts +10 -7
  113. package/vscode/src/vs/editor/common/model/textModel.js +44 -30
  114. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +4 -1
  115. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +5 -3
  116. package/vscode/src/vs/editor/common/model/tokens/annotations.d.ts +85 -0
  117. package/vscode/src/vs/editor/common/model/tokens/annotations.js +180 -0
  118. package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.d.ts +24 -0
  119. package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.js +126 -0
  120. package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -1
  121. package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.js +9 -0
  122. package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
  123. package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.js +9 -0
  124. package/vscode/src/vs/editor/common/standaloneStrings.d.ts +1 -0
  125. package/vscode/src/vs/editor/common/standaloneStrings.js +53 -48
  126. package/vscode/src/vs/editor/common/textModelEvents.d.ts +37 -0
  127. package/vscode/src/vs/editor/common/textModelEvents.js +19 -1
  128. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  129. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +4 -0
  130. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +21 -14
  131. package/vscode/src/vs/editor/common/viewModel.d.ts +1 -0
  132. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  133. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
  134. package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  135. package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  136. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -27
  137. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  138. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
  139. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  140. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  141. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  142. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  143. package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  144. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  145. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  146. package/vscode/src/vs/editor/contrib/colorPicker/browser/defaultDocumentColorProvider.js +4 -5
  147. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  148. package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  149. package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
  150. package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
  151. package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  152. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  153. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
  154. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
  155. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  156. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  157. package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  158. package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
  159. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
  160. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
  161. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  162. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  163. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  164. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  165. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +15 -15
  166. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
  167. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  168. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  169. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  170. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  171. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  172. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  173. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  174. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  175. package/vscode/src/vs/editor/contrib/hover/browser/hover.css +1 -1
  176. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  177. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  178. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
  179. package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
  180. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +11 -11
  181. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  182. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  183. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
  184. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -0
  185. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
  186. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
  187. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
  188. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
  189. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  190. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
  191. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +24 -7
  192. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +4 -3
  193. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +1 -1
  194. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +2 -2
  195. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.d.ts +3 -1
  196. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +57 -32
  197. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.d.ts +3 -2
  198. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +24 -22
  199. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
  200. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +44 -23
  201. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +2 -1
  202. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
  203. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +17 -19
  204. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +2 -1
  205. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +6 -17
  206. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +2 -1
  207. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +7 -15
  208. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +2 -1
  209. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +7 -15
  210. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +3 -2
  211. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +13 -11
  212. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +3 -1
  213. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +15 -19
  214. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +5 -2
  215. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +25 -18
  216. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.d.ts +2 -0
  217. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +62 -91
  218. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.d.ts +54 -0
  219. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.js +105 -0
  220. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +2 -1
  221. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +2 -1
  222. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.d.ts +3 -0
  223. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +42 -22
  224. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +13 -5
  225. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  226. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  227. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +35 -35
  228. package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +1 -0
  229. package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.js +29 -78
  230. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  231. package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
  232. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  233. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  234. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  235. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  236. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
  237. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  238. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +31 -36
  239. package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
  240. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  241. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
  242. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  243. package/vscode/src/vs/editor/contrib/sectionHeaders/browser/sectionHeaders.js +3 -2
  244. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  245. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  246. package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +2 -0
  247. package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.js +33 -0
  248. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  249. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  250. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +1 -0
  251. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +13 -4
  252. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +4 -3
  253. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +120 -125
  254. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +1 -0
  255. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -8
  256. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +56 -28
  257. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.d.ts +1 -0
  258. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +24 -19
  259. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +21 -6
  260. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  261. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.d.ts +8 -1
  262. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.js +11 -6
  263. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  264. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  265. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  266. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  267. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  268. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  269. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  270. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  271. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +6 -9
  272. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +20 -3
  273. package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +3 -0
  274. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +63 -64
  275. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  276. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
  277. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +11 -8
  278. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
  279. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
  280. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  281. package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -6
  282. package/vscode/src/vs/platform/actions/common/actions.js +1 -3
  283. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  284. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  285. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  286. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  287. package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
  288. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  289. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  290. package/vscode/src/vs/platform/dialogs/browser/dialog.js +1 -1
  291. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  292. package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
  293. package/vscode/src/vs/platform/dnd/browser/dnd.js +15 -1
  294. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
  295. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  296. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -8
  297. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
  298. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +0 -6
  299. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +0 -6
  300. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  301. package/vscode/src/vs/platform/files/common/files.d.ts +12 -1
  302. package/vscode/src/vs/platform/files/common/files.js +7 -6
  303. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  304. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
  305. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  306. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
  307. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  308. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  309. package/vscode/src/vs/platform/list/browser/listService.js +27 -27
  310. package/vscode/src/vs/platform/log/common/log.js +6 -6
  311. package/vscode/src/vs/platform/markers/common/markerService.js +6 -6
  312. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  313. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  314. package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +1 -1
  315. package/vscode/src/vs/platform/product/common/product.js +3 -3
  316. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +46 -8
  317. package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +13 -13
  318. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +81 -78
  319. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +14 -5
  320. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +4 -0
  321. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +13 -1
  322. package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +3 -1
  323. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +59 -27
  324. package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +3 -2
  325. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +44 -47
  326. package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -1
  327. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.d.ts +4 -0
  328. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +65 -9
  329. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  330. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  331. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +3 -2
  332. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +8 -8
  333. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +7 -4
  334. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +20 -14
  335. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +1 -1
  336. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +4 -5
  337. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +29 -28
  338. package/vscode/src/vs/platform/request/common/request.js +20 -20
  339. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +9 -1
  340. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +11 -6
  341. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -1
  342. package/vscode/src/vs/platform/terminal/common/terminal.js +1 -0
  343. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +32 -32
  344. package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +0 -5
  345. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  346. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  347. package/vscode/src/vs/platform/theme/common/colors/baseColors.d.ts +1 -0
  348. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -17
  349. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  350. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  351. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
  352. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  353. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  354. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +12 -12
  355. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  356. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  357. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  358. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  359. package/vscode/src/vs/platform/theme/common/themeService.d.ts +9 -0
  360. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  361. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +21 -21
  362. package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.d.ts +1 -1
  363. package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.js +3 -2
  364. package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.d.ts +1 -1
  365. package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.js +1 -1
  366. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  367. package/vscode/src/vs/platform/userDataSync/common/abstractJsonSynchronizer.js +3 -0
  368. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  369. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  370. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  371. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  372. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  373. package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +4 -0
  374. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  375. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +3 -3
  376. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +32 -18
  377. package/vscode/src/vs/workbench/api/common/extHost.protocol.js +13 -1
  378. package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
  379. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  380. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +4 -4
  381. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +9 -6
  382. package/vscode/src/vs/workbench/api/common/extHostChatContext.d.ts +1 -1
  383. package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +1 -5
  384. package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +8 -29
  385. package/vscode/src/vs/workbench/api/common/extHostCodeMapper.d.ts +1 -1
  386. package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +1 -1
  387. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  388. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
  389. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
  390. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +1 -1
  391. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +3 -3
  392. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +2 -2
  393. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  394. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +5 -2
  395. package/vscode/src/vs/workbench/api/common/extHostMcp.js +47 -21
  396. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +4 -4
  397. package/vscode/src/vs/workbench/api/common/extHostOutput.d.ts +2 -1
  398. package/vscode/src/vs/workbench/api/common/extHostOutput.js +40 -25
  399. package/vscode/src/vs/workbench/api/common/extHostQuickOpen.js +2 -20
  400. package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -1
  401. package/vscode/src/vs/workbench/api/common/extHostSCM.js +7 -3
  402. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  403. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -3
  404. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  405. package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +16 -3
  406. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  407. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +6 -6
  408. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +3 -3
  409. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +3 -2
  410. package/vscode/src/vs/workbench/api/common/extHostTypes.js +1 -0
  411. package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +2 -7
  412. package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.js +6 -1
  413. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
  414. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
  415. package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
  416. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +139 -136
  417. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  418. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  419. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  420. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  421. package/vscode/src/vs/workbench/browser/dnd.js +9 -0
  422. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  423. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  424. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +20 -20
  425. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +25 -25
  426. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
  427. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  428. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  429. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  430. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  431. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  432. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  433. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.d.ts +3 -0
  434. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +48 -41
  435. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +57 -10
  436. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsModel.js +1 -1
  437. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  438. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
  439. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +6 -0
  440. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +158 -138
  441. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +35 -22
  442. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  443. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +8 -8
  444. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
  445. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  446. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +1 -1
  447. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  448. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  449. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  450. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +2 -2
  451. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  452. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  453. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  454. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  455. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  456. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
  457. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +17 -17
  458. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  459. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
  460. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +9 -9
  461. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  462. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
  463. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
  464. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
  465. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
  466. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  467. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +33 -33
  468. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +4 -4
  469. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  470. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  471. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +18 -18
  472. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +14 -14
  473. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.d.ts +1 -0
  474. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +4 -2
  475. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  476. package/vscode/src/vs/workbench/browser/parts/views/media/views.css +7 -6
  477. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +18 -18
  478. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +1 -1
  479. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +4 -4
  480. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
  481. package/vscode/src/vs/workbench/browser/quickaccess.d.ts +1 -1
  482. package/vscode/src/vs/workbench/browser/quickaccess.js +9 -9
  483. package/vscode/src/vs/workbench/browser/window.js +16 -16
  484. package/vscode/src/vs/workbench/browser/workbench.contribution.js +251 -238
  485. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  486. package/vscode/src/vs/workbench/common/contextkeys.js +73 -73
  487. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  488. package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +7 -0
  489. package/vscode/src/vs/workbench/common/editor/editorInput.js +3 -0
  490. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  491. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  492. package/vscode/src/vs/workbench/common/editor.js +4 -4
  493. package/vscode/src/vs/workbench/common/theme.js +160 -160
  494. package/vscode/src/vs/workbench/common/views.js +4 -4
  495. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +160 -160
  496. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  497. package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +2 -1
  498. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +3 -3
  499. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -652
  500. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +6 -4
  501. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +14 -27
  502. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +33 -17
  503. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +39 -12
  504. package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.d.ts → attachments/chatAttachmentResolveService.service.d.ts} +8 -8
  505. package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.js → attachments/chatAttachmentResolveService.service.js} +1 -1
  506. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.d.ts → attachments/chatContextPickService.d.ts} +7 -7
  507. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.js → attachments/chatContextPickService.js} +7 -7
  508. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.d.ts → attachments/chatContextPickService.service.d.ts} +2 -2
  509. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.js → attachments/chatContextPickService.service.js} +1 -1
  510. package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.d.ts +2 -2
  511. package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.js +1 -1
  512. package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.d.ts → attachments/chatScreenshotContext.d.ts} +1 -1
  513. package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.js → attachments/chatScreenshotContext.js} +1 -1
  514. package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +15 -10
  515. package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +1 -1
  516. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +11 -7
  517. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.d.ts +2 -2
  518. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +10 -10
  519. package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContextService.service.d.ts +4 -0
  520. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextService.service.js → contextContrib/chatContextService.service.js} +1 -1
  521. package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.d.ts +2 -2
  522. package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.js +1 -1
  523. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatContentParts.d.ts +5 -5
  524. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.d.ts +3 -3
  525. package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.js +1 -1
  526. package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.d.ts → widgetHosts/editor/chatEditorInput.d.ts} +17 -24
  527. package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.js → widgetHosts/editor/chatEditorInput.js} +44 -105
  528. package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.d.ts → actions/chatActions.d.ts} +2 -2
  529. package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.js → actions/chatActions.js} +2 -2
  530. package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.d.ts → actions/chatContextKeys.d.ts} +11 -10
  531. package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.js → actions/chatContextKeys.js} +81 -73
  532. package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.d.ts → attachments/chatVariableEntries.d.ts} +9 -9
  533. package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.js → attachments/chatVariableEntries.js} +8 -8
  534. package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.d.ts → attachments/chatVariables.d.ts} +7 -7
  535. package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.d.ts → attachments/chatVariables.service.d.ts} +3 -3
  536. package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.js → attachments/chatVariables.service.js} +1 -1
  537. package/vscode/src/vs/workbench/contrib/chat/common/chat.d.ts +2 -2
  538. package/vscode/src/vs/workbench/contrib/chat/common/chat.js +3 -2
  539. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +2 -2
  540. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +2 -2
  541. package/vscode/src/vs/workbench/contrib/chat/common/{chatService.d.ts → chatService/chatService.d.ts} +31 -41
  542. package/vscode/src/vs/workbench/contrib/chat/common/{chatService.js → chatService/chatService.js} +16 -8
  543. package/vscode/src/vs/workbench/contrib/chat/common/{chatService.service.d.ts → chatService/chatService.service.d.ts} +14 -15
  544. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.js +6 -0
  545. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +6 -10
  546. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +4 -1
  547. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +5 -10
  548. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +0 -4
  549. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +1 -4
  550. package/vscode/src/vs/workbench/contrib/chat/common/{chatContext.d.ts → contextContrib/chatContext.d.ts} +3 -3
  551. package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.d.ts → editing/chatCodeMapperService.service.d.ts} +4 -4
  552. package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.js → editing/chatCodeMapperService.service.js} +1 -1
  553. package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.d.ts → editing/chatEditingService.d.ts} +15 -15
  554. package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.js → editing/chatEditingService.js} +11 -11
  555. package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.d.ts → editing/chatEditingService.service.d.ts} +6 -6
  556. package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.js → editing/chatEditingService.service.js} +1 -1
  557. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  558. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +9 -9
  559. package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.d.ts → model/chatModel.d.ts} +36 -26
  560. package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.js → model/chatModel.js} +82 -64
  561. package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.d.ts +7 -7
  562. package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.js +4 -4
  563. package/vscode/src/vs/workbench/contrib/chat/common/model/chatTransferService.service.d.ts +7 -0
  564. package/vscode/src/vs/workbench/contrib/chat/common/{chatTransferService.service.js → model/chatTransferService.service.js} +1 -1
  565. package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.d.ts → model/chatUri.d.ts} +2 -1
  566. package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.js → model/chatUri.js} +8 -4
  567. package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.d.ts → model/chatViewModel.d.ts} +15 -14
  568. package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.js → model/chatViewModel.js} +10 -10
  569. package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.js → model/chatWordCounter.js} +1 -1
  570. package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.d.ts → participants/chatAgents.d.ts} +19 -19
  571. package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.js → participants/chatAgents.js} +27 -24
  572. package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.d.ts → participants/chatAgents.service.d.ts} +7 -7
  573. package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.js → participants/chatAgents.service.js} +1 -1
  574. package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.d.ts → participants/chatParticipantContribTypes.d.ts} +1 -1
  575. package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.d.ts → participants/chatSlashCommands.service.d.ts} +10 -10
  576. package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.js → participants/chatSlashCommands.service.js} +1 -1
  577. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +48 -0
  578. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +376 -0
  579. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +2 -2
  580. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -1
  581. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +26 -0
  582. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +9 -1
  583. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +3 -3
  584. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +4 -4
  585. package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.d.ts → requestParser/chatParserTypes.d.ts} +10 -10
  586. package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.js → requestParser/chatParserTypes.js} +5 -5
  587. package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.d.ts → requestParser/chatRequestParser.d.ts} +7 -7
  588. package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.js → requestParser/chatRequestParser.js} +10 -10
  589. package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.d.ts → builtinTools/confirmationTool.d.ts} +1 -1
  590. package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.js → builtinTools/confirmationTool.js} +1 -1
  591. package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.d.ts → builtinTools/editFileTool.d.ts} +5 -5
  592. package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.js → builtinTools/editFileTool.js} +10 -10
  593. package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.d.ts → builtinTools/manageTodoListTool.d.ts} +4 -4
  594. package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.js → builtinTools/manageTodoListTool.js} +20 -20
  595. package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.d.ts → builtinTools/runSubagentTool.d.ts} +14 -11
  596. package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.js → builtinTools/runSubagentTool.js} +41 -20
  597. package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.d.ts → builtinTools/tools.d.ts} +4 -4
  598. package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.js → builtinTools/tools.js} +8 -8
  599. package/vscode/src/vs/workbench/contrib/chat/common/tools/chatTodoListService.service.d.ts +10 -0
  600. package/vscode/src/vs/workbench/contrib/chat/common/{chatTodoListService.service.js → tools/chatTodoListService.service.js} +1 -1
  601. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.d.ts → tools/languageModelToolsConfirmationService.d.ts} +2 -2
  602. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.d.ts → tools/languageModelToolsConfirmationService.service.d.ts} +2 -2
  603. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.js → tools/languageModelToolsConfirmationService.service.js} +1 -1
  604. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.d.ts → tools/languageModelToolsService.d.ts} +20 -16
  605. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.js → tools/languageModelToolsService.js} +13 -13
  606. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.d.ts → tools/languageModelToolsService.service.d.ts} +8 -8
  607. package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.js → tools/languageModelToolsService.service.js} +1 -1
  608. package/vscode/src/vs/workbench/contrib/chat/common/{annotations.d.ts → widget/annotations.d.ts} +4 -4
  609. package/vscode/src/vs/workbench/contrib/chat/common/{annotations.js → widget/annotations.js} +9 -8
  610. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatLayoutService.service.d.ts +7 -0
  611. package/vscode/src/vs/workbench/contrib/chat/common/{chatLayoutService.service.js → widget/chatLayoutService.service.js} +1 -1
  612. package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.d.ts → widget/chatWidgetHistoryService.service.d.ts} +5 -5
  613. package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.js → widget/chatWidgetHistoryService.service.js} +1 -1
  614. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +6 -0
  615. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
  616. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  617. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  618. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  619. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  620. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  621. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  622. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  623. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  624. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  625. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
  626. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  627. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  628. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  629. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  630. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  631. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +7 -7
  632. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +4 -4
  633. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  634. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  635. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  636. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  637. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  638. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  639. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  640. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  641. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  642. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  643. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  644. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
  645. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.d.ts +2 -2
  646. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  647. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  648. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +30 -30
  649. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  650. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.d.ts +20 -4
  651. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +524 -146
  652. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  653. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  654. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  655. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +39 -39
  656. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  657. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  658. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  659. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  660. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  661. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +12 -10
  662. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  663. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  664. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  665. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  666. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
  667. package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +1 -1
  668. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.d.ts +1 -0
  669. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +30 -13
  670. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  671. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  672. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  673. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  674. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  675. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  676. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
  677. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  678. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  679. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +93 -81
  680. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  681. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  682. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +15 -15
  683. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +154 -153
  684. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.d.ts +0 -1
  685. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +182 -183
  686. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  687. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  688. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  689. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +24 -24
  690. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  691. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  692. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +3 -1
  693. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +53 -50
  694. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +11 -18
  695. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.d.ts +1 -0
  696. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +36 -31
  697. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
  698. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  699. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionActions.css +31 -12
  700. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +32 -31
  701. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsWidgets.css +15 -0
  702. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  703. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  704. package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +9 -2
  705. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  706. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  707. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  708. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  709. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
  710. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +1 -1
  711. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -4
  712. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  713. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +5 -5
  714. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  715. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  716. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  717. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  718. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  719. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +90 -90
  720. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  721. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  722. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  723. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +32 -32
  724. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +56 -53
  725. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  726. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  727. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  728. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.d.ts +3 -1
  729. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +22 -10
  730. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +26 -24
  731. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  732. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  733. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  734. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  735. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  736. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  737. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  738. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  739. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  740. package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.js +4 -4
  741. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  742. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  743. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +48 -48
  744. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +31 -31
  745. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +1 -1
  746. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
  747. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypesUtils.d.ts +1 -1
  748. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  749. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +31 -40
  750. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  751. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +21 -21
  752. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  753. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  754. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  755. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  756. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController.js +7 -7
  757. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  758. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.js +3 -3
  759. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  760. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  761. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  762. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.service.d.ts +1 -1
  763. package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebookCellChat.css +1 -0
  764. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +4 -4
  765. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +1 -0
  766. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookCellLayoutManager.js +3 -1
  767. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +8 -8
  768. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  769. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  770. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -4
  771. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +8 -8
  772. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.d.ts +18 -0
  773. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +57 -12
  774. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  775. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  776. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  777. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +2 -2
  778. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  779. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  780. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  781. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/webviewPreloads.js +5 -9
  782. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorStickyScroll.js +1 -1
  783. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorToolbar.js +1 -0
  784. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +15 -15
  785. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  786. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  787. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  788. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  789. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +14 -14
  790. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  791. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +50 -50
  792. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +1 -1
  793. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -5
  794. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  795. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  796. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  797. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +60 -60
  798. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.js +1 -1
  799. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.js +1 -1
  800. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +15 -15
  801. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.d.ts +1 -1
  802. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +9 -9
  803. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  804. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +2 -1
  805. package/vscode/src/vs/workbench/contrib/scm/common/scm.d.ts +1 -0
  806. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +10 -10
  807. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  808. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  809. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
  810. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  811. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.d.ts +1 -1
  812. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +7 -7
  813. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  814. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  815. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  816. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  817. package/vscode/src/vs/workbench/contrib/search/browser/searchView.d.ts +1 -0
  818. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +69 -59
  819. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +8 -8
  820. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  821. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  822. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  823. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  824. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  825. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  826. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  827. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  828. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  829. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  830. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  831. package/vscode/src/vs/workbench/contrib/terminal/browser/detachedTerminal.js +3 -1
  832. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +10 -2
  833. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +19 -0
  834. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.d.ts +1 -0
  835. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +7 -4
  836. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  837. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +51 -45
  838. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  839. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +9 -9
  840. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  841. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +19 -18
  842. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  843. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +4 -0
  844. package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +7 -2
  845. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  846. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  847. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +2 -0
  848. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +93 -48
  849. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  850. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  851. package/vscode/src/vs/workbench/contrib/terminalContrib/{chat → inlineHint}/common/terminalInitialHintConfiguration.js +1 -1
  852. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +2 -2
  853. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.d.ts +6 -1
  854. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.js +5 -0
  855. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.d.ts +13 -1
  856. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +79 -73
  857. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +7 -7
  858. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  859. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  860. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  861. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  862. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.d.ts +1 -0
  863. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.js +4 -1
  864. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.d.ts +1 -0
  865. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +46 -13
  866. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  867. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  868. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.d.ts +7 -6
  869. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.js +4 -0
  870. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.d.ts +3 -3
  871. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +3 -3
  872. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  873. package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +1 -1
  874. package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +29 -28
  875. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +1 -1
  876. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +15 -15
  877. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  878. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +13 -12
  879. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  880. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  881. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  882. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  883. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  884. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  885. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  886. package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +7 -1
  887. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +86 -86
  888. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  889. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  890. package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.d.ts +4 -7
  891. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  892. package/vscode/src/vs/workbench/services/outline/browser/outline.d.ts +5 -1
  893. package/vscode/src/vs/workbench/services/output/common/output.d.ts +2 -0
  894. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  895. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  896. package/vscode/src/vs/workbench/services/preferences/common/preferences.d.ts +1 -0
  897. package/vscode/src/vs/workbench/services/preferences/common/preferences.js +2 -1
  898. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  899. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  900. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  901. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  902. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  903. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +8 -5
  904. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  905. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.d.ts +13 -1
  906. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +63 -10
  907. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  908. package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +3 -0
  909. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  910. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  911. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  912. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
  913. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +22 -19
  914. package/vscode-dts/vscode.d.ts +33 -14
  915. package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +13 -20
  916. package/vscode-dts/vscode.proposed.d.ts +0 -2
  917. package/vscode-dts/vscode.proposed.interactive.d.ts +1 -1
  918. package/vscode-dts/vscode.proposed.scmProviderOptions.d.ts +1 -1
  919. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +0 -3
  920. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +0 -25
  921. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.d.ts +0 -8
  922. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.js +0 -38
  923. package/vscode/src/vs/workbench/contrib/chat/browser/chatContextService.service.d.ts +0 -4
  924. package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +0 -7
  925. package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.js +0 -6
  926. package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +0 -10
  927. package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +0 -7
  928. package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +0 -6
  929. package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.d.ts +0 -9
  930. package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.js +0 -25
  931. package/vscode-dts/vscode.proposed.quickPickItemResource.d.ts +0 -22
  932. package/vscode-dts/vscode.proposed.quickPickPrompt.d.ts +0 -27
  933. /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.d.ts → chatImageUtils.d.ts} +0 -0
  934. /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.js → chatImageUtils.js} +0 -0
  935. /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.d.ts +0 -0
  936. /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.js +0 -0
  937. /package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.d.ts → model/chatWordCounter.d.ts} +0 -0
  938. /package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.js → participants/chatParticipantContribTypes.js} +0 -0
  939. /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.d.ts → builtinTools/toolHelpers.d.ts} +0 -0
  940. /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.js → builtinTools/toolHelpers.js} +0 -0
  941. /package/vscode/src/vs/workbench/contrib/chat/common/{modelPicker → widget/input}/modelPickerWidget.d.ts +0 -0
  942. /package/vscode/src/vs/workbench/contrib/terminalContrib/{chat → inlineHint}/common/terminalInitialHintConfiguration.d.ts +0 -0
  943. /package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.js +0 -0
@@ -109,7 +109,7 @@ export declare const DEFAULT_MAC_FONT_FAMILY = "Menlo, Monaco, 'Courier New', mo
109
109
  /**
110
110
  * @internal
111
111
  */
112
- export declare const DEFAULT_LINUX_FONT_FAMILY = "'Droid Sans Mono', 'monospace', monospace";
112
+ export declare const DEFAULT_LINUX_FONT_FAMILY = "'Droid Sans Mono', monospace";
113
113
  /**
114
114
  * @internal
115
115
  */
@@ -109,7 +109,7 @@ const FONT_VARIATION_OFF = 'normal';
109
109
  const FONT_VARIATION_TRANSLATE = 'translate';
110
110
  const DEFAULT_WINDOWS_FONT_FAMILY = 'Consolas, \'Courier New\', monospace';
111
111
  const DEFAULT_MAC_FONT_FAMILY = 'Menlo, Monaco, \'Courier New\', monospace';
112
- const DEFAULT_LINUX_FONT_FAMILY = '\'Droid Sans Mono\', \'monospace\', monospace';
112
+ const DEFAULT_LINUX_FONT_FAMILY = '\'Droid Sans Mono\', monospace';
113
113
  const EDITOR_FONT_DEFAULTS = {
114
114
  fontFamily: (isMacintosh ? DEFAULT_MAC_FONT_FAMILY : (isWindows ? DEFAULT_WINDOWS_FONT_FAMILY : DEFAULT_LINUX_FONT_FAMILY)),
115
115
  fontWeight: 'normal',
@@ -14,178 +14,178 @@ import '../../../platform/theme/common/colors/quickpickColors.js';
14
14
  import '../../../platform/theme/common/colors/searchColors.js';
15
15
  import { registerThemingParticipant } from '../../../platform/theme/common/themeService.js';
16
16
 
17
- const editorLineHighlight = registerColor('editor.lineHighlightBackground', null, ( localize(677, 'Background color for the highlight of line at the cursor position.')));
17
+ const editorLineHighlight = registerColor('editor.lineHighlightBackground', null, ( localize(680, 'Background color for the highlight of line at the cursor position.')));
18
18
  const editorInactiveLineHighlight = registerColor('editor.inactiveLineHighlightBackground', editorLineHighlight, ( localize(
19
- 678,
19
+ 681,
20
20
  'Background color for the highlight of line at the cursor position when the editor is not focused.'
21
21
  )));
22
22
  const editorLineHighlightBorder = registerColor('editor.lineHighlightBorder', { dark: '#282828', light: '#eeeeee', hcDark: '#f38518', hcLight: contrastBorder }, ( localize(
23
- 679,
23
+ 682,
24
24
  'Background color for the border around the line at the cursor position.'
25
25
  )));
26
26
  const editorRangeHighlight = registerColor('editor.rangeHighlightBackground', { dark: '#ffffff0b', light: '#fdff0033', hcDark: null, hcLight: null }, ( localize(
27
- 680,
27
+ 683,
28
28
  'Background color of highlighted ranges, like by quick open and find features. The color must not be opaque so as not to hide underlying decorations.'
29
29
  )), true);
30
- registerColor('editor.rangeHighlightBorder', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(681, 'Background color of the border around highlighted ranges.')));
30
+ registerColor('editor.rangeHighlightBorder', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(684, 'Background color of the border around highlighted ranges.')));
31
31
  registerColor('editor.symbolHighlightBackground', { dark: editorFindMatchHighlight, light: editorFindMatchHighlight, hcDark: null, hcLight: null }, ( localize(
32
- 682,
32
+ 685,
33
33
  'Background color of highlighted symbol, like for go to definition or go next/previous symbol. The color must not be opaque so as not to hide underlying decorations.'
34
34
  )), true);
35
- registerColor('editor.symbolHighlightBorder', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(683, 'Background color of the border around highlighted symbols.')));
36
- const editorCursorForeground = registerColor('editorCursor.foreground', { dark: '#AEAFAD', light: Color.black, hcDark: Color.white, hcLight: '#0F4A85' }, ( localize(684, 'Color of the editor cursor.')));
35
+ registerColor('editor.symbolHighlightBorder', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(686, 'Background color of the border around highlighted symbols.')));
36
+ const editorCursorForeground = registerColor('editorCursor.foreground', { dark: '#AEAFAD', light: Color.black, hcDark: Color.white, hcLight: '#0F4A85' }, ( localize(687, 'Color of the editor cursor.')));
37
37
  const editorCursorBackground = registerColor('editorCursor.background', null, ( localize(
38
- 685,
38
+ 688,
39
39
  'The background color of the editor cursor. Allows customizing the color of a character overlapped by a block cursor.'
40
40
  )));
41
41
  const editorMultiCursorPrimaryForeground = registerColor('editorMultiCursor.primary.foreground', editorCursorForeground, ( localize(
42
- 686,
42
+ 689,
43
43
  'Color of the primary editor cursor when multiple cursors are present.'
44
44
  )));
45
45
  const editorMultiCursorPrimaryBackground = registerColor('editorMultiCursor.primary.background', editorCursorBackground, ( localize(
46
- 687,
46
+ 690,
47
47
  'The background color of the primary editor cursor when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor.'
48
48
  )));
49
49
  const editorMultiCursorSecondaryForeground = registerColor('editorMultiCursor.secondary.foreground', editorCursorForeground, ( localize(
50
- 688,
50
+ 691,
51
51
  'Color of secondary editor cursors when multiple cursors are present.'
52
52
  )));
53
53
  const editorMultiCursorSecondaryBackground = registerColor('editorMultiCursor.secondary.background', editorCursorBackground, ( localize(
54
- 689,
54
+ 692,
55
55
  'The background color of secondary editor cursors when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor.'
56
56
  )));
57
- const editorWhitespaces = registerColor('editorWhitespace.foreground', { dark: '#e3e4e229', light: '#33333333', hcDark: '#e3e4e229', hcLight: '#CCCCCC' }, ( localize(690, 'Color of whitespace characters in the editor.')));
58
- const editorLineNumbers = registerColor('editorLineNumber.foreground', { dark: '#858585', light: '#237893', hcDark: Color.white, hcLight: '#292929' }, ( localize(691, 'Color of editor line numbers.')));
59
- const deprecatedEditorIndentGuides = registerColor('editorIndentGuide.background', editorWhitespaces, ( localize(692, 'Color of the editor indentation guides.')), false, ( localize(
60
- 693,
57
+ const editorWhitespaces = registerColor('editorWhitespace.foreground', { dark: '#e3e4e229', light: '#33333333', hcDark: '#e3e4e229', hcLight: '#CCCCCC' }, ( localize(693, 'Color of whitespace characters in the editor.')));
58
+ const editorLineNumbers = registerColor('editorLineNumber.foreground', { dark: '#858585', light: '#237893', hcDark: Color.white, hcLight: '#292929' }, ( localize(694, 'Color of editor line numbers.')));
59
+ const deprecatedEditorIndentGuides = registerColor('editorIndentGuide.background', editorWhitespaces, ( localize(695, 'Color of the editor indentation guides.')), false, ( localize(
60
+ 696,
61
61
  '\'editorIndentGuide.background\' is deprecated. Use \'editorIndentGuide.background1\' instead.'
62
62
  )));
63
- const deprecatedEditorActiveIndentGuides = registerColor('editorIndentGuide.activeBackground', editorWhitespaces, ( localize(694, 'Color of the active editor indentation guides.')), false, ( localize(
64
- 695,
63
+ const deprecatedEditorActiveIndentGuides = registerColor('editorIndentGuide.activeBackground', editorWhitespaces, ( localize(697, 'Color of the active editor indentation guides.')), false, ( localize(
64
+ 698,
65
65
  '\'editorIndentGuide.activeBackground\' is deprecated. Use \'editorIndentGuide.activeBackground1\' instead.'
66
66
  )));
67
- const editorIndentGuide1 = registerColor('editorIndentGuide.background1', deprecatedEditorIndentGuides, ( localize(696, 'Color of the editor indentation guides (1).')));
68
- const editorIndentGuide2 = registerColor('editorIndentGuide.background2', '#00000000', ( localize(697, 'Color of the editor indentation guides (2).')));
69
- const editorIndentGuide3 = registerColor('editorIndentGuide.background3', '#00000000', ( localize(698, 'Color of the editor indentation guides (3).')));
70
- const editorIndentGuide4 = registerColor('editorIndentGuide.background4', '#00000000', ( localize(699, 'Color of the editor indentation guides (4).')));
71
- const editorIndentGuide5 = registerColor('editorIndentGuide.background5', '#00000000', ( localize(700, 'Color of the editor indentation guides (5).')));
72
- const editorIndentGuide6 = registerColor('editorIndentGuide.background6', '#00000000', ( localize(701, 'Color of the editor indentation guides (6).')));
73
- const editorActiveIndentGuide1 = registerColor('editorIndentGuide.activeBackground1', deprecatedEditorActiveIndentGuides, ( localize(702, 'Color of the active editor indentation guides (1).')));
74
- const editorActiveIndentGuide2 = registerColor('editorIndentGuide.activeBackground2', '#00000000', ( localize(703, 'Color of the active editor indentation guides (2).')));
75
- const editorActiveIndentGuide3 = registerColor('editorIndentGuide.activeBackground3', '#00000000', ( localize(704, 'Color of the active editor indentation guides (3).')));
76
- const editorActiveIndentGuide4 = registerColor('editorIndentGuide.activeBackground4', '#00000000', ( localize(705, 'Color of the active editor indentation guides (4).')));
77
- const editorActiveIndentGuide5 = registerColor('editorIndentGuide.activeBackground5', '#00000000', ( localize(706, 'Color of the active editor indentation guides (5).')));
78
- const editorActiveIndentGuide6 = registerColor('editorIndentGuide.activeBackground6', '#00000000', ( localize(707, 'Color of the active editor indentation guides (6).')));
79
- const deprecatedEditorActiveLineNumber = registerColor('editorActiveLineNumber.foreground', { dark: '#c6c6c6', light: '#0B216F', hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(708, 'Color of editor active line number')), false, ( localize(
80
- 709,
67
+ const editorIndentGuide1 = registerColor('editorIndentGuide.background1', deprecatedEditorIndentGuides, ( localize(699, 'Color of the editor indentation guides (1).')));
68
+ const editorIndentGuide2 = registerColor('editorIndentGuide.background2', '#00000000', ( localize(700, 'Color of the editor indentation guides (2).')));
69
+ const editorIndentGuide3 = registerColor('editorIndentGuide.background3', '#00000000', ( localize(701, 'Color of the editor indentation guides (3).')));
70
+ const editorIndentGuide4 = registerColor('editorIndentGuide.background4', '#00000000', ( localize(702, 'Color of the editor indentation guides (4).')));
71
+ const editorIndentGuide5 = registerColor('editorIndentGuide.background5', '#00000000', ( localize(703, 'Color of the editor indentation guides (5).')));
72
+ const editorIndentGuide6 = registerColor('editorIndentGuide.background6', '#00000000', ( localize(704, 'Color of the editor indentation guides (6).')));
73
+ const editorActiveIndentGuide1 = registerColor('editorIndentGuide.activeBackground1', deprecatedEditorActiveIndentGuides, ( localize(705, 'Color of the active editor indentation guides (1).')));
74
+ const editorActiveIndentGuide2 = registerColor('editorIndentGuide.activeBackground2', '#00000000', ( localize(706, 'Color of the active editor indentation guides (2).')));
75
+ const editorActiveIndentGuide3 = registerColor('editorIndentGuide.activeBackground3', '#00000000', ( localize(707, 'Color of the active editor indentation guides (3).')));
76
+ const editorActiveIndentGuide4 = registerColor('editorIndentGuide.activeBackground4', '#00000000', ( localize(708, 'Color of the active editor indentation guides (4).')));
77
+ const editorActiveIndentGuide5 = registerColor('editorIndentGuide.activeBackground5', '#00000000', ( localize(709, 'Color of the active editor indentation guides (5).')));
78
+ const editorActiveIndentGuide6 = registerColor('editorIndentGuide.activeBackground6', '#00000000', ( localize(710, 'Color of the active editor indentation guides (6).')));
79
+ const deprecatedEditorActiveLineNumber = registerColor('editorActiveLineNumber.foreground', { dark: '#c6c6c6', light: '#0B216F', hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(711, 'Color of editor active line number')), false, ( localize(
80
+ 712,
81
81
  'Id is deprecated. Use \'editorLineNumber.activeForeground\' instead.'
82
82
  )));
83
- registerColor('editorLineNumber.activeForeground', deprecatedEditorActiveLineNumber, ( localize(708, 'Color of editor active line number')));
83
+ registerColor('editorLineNumber.activeForeground', deprecatedEditorActiveLineNumber, ( localize(711, 'Color of editor active line number')));
84
84
  const editorDimmedLineNumber = registerColor('editorLineNumber.dimmedForeground', null, ( localize(
85
- 710,
85
+ 713,
86
86
  'Color of the final editor line when editor.renderFinalNewline is set to dimmed.'
87
87
  )));
88
- const editorRuler = registerColor('editorRuler.foreground', { dark: '#5A5A5A', light: Color.lightgrey, hcDark: Color.white, hcLight: '#292929' }, ( localize(711, 'Color of the editor rulers.')));
89
- registerColor('editorCodeLens.foreground', { dark: '#999999', light: '#919191', hcDark: '#999999', hcLight: '#292929' }, ( localize(712, 'Foreground color of editor CodeLens')));
90
- registerColor('editorBracketMatch.background', { dark: '#0064001a', light: '#0064001a', hcDark: '#0064001a', hcLight: '#0000' }, ( localize(713, 'Background color behind matching brackets')));
91
- registerColor('editorBracketMatch.border', { dark: '#888', light: '#B9B9B9', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(714, 'Color for matching brackets boxes')));
92
- const editorOverviewRulerBorder = registerColor('editorOverviewRuler.border', { dark: '#7f7f7f4d', light: '#7f7f7f4d', hcDark: '#7f7f7f4d', hcLight: '#666666' }, ( localize(715, 'Color of the overview ruler border.')));
93
- const editorOverviewRulerBackground = registerColor('editorOverviewRuler.background', null, ( localize(716, 'Background color of the editor overview ruler.')));
88
+ const editorRuler = registerColor('editorRuler.foreground', { dark: '#5A5A5A', light: Color.lightgrey, hcDark: Color.white, hcLight: '#292929' }, ( localize(714, 'Color of the editor rulers.')));
89
+ registerColor('editorCodeLens.foreground', { dark: '#999999', light: '#919191', hcDark: '#999999', hcLight: '#292929' }, ( localize(715, 'Foreground color of editor CodeLens')));
90
+ registerColor('editorBracketMatch.background', { dark: '#0064001a', light: '#0064001a', hcDark: '#0064001a', hcLight: '#0000' }, ( localize(716, 'Background color behind matching brackets')));
91
+ registerColor('editorBracketMatch.border', { dark: '#888', light: '#B9B9B9', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(717, 'Color for matching brackets boxes')));
92
+ const editorOverviewRulerBorder = registerColor('editorOverviewRuler.border', { dark: '#7f7f7f4d', light: '#7f7f7f4d', hcDark: '#7f7f7f4d', hcLight: '#666666' }, ( localize(718, 'Color of the overview ruler border.')));
93
+ const editorOverviewRulerBackground = registerColor('editorOverviewRuler.background', null, ( localize(719, 'Background color of the editor overview ruler.')));
94
94
  registerColor('editorGutter.background', editorBackground, ( localize(
95
- 717,
95
+ 720,
96
96
  'Background color of the editor gutter. The gutter contains the glyph margins and the line numbers.'
97
97
  )));
98
- registerColor('editorUnnecessaryCode.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#fff')).transparent(0.8)), hcLight: contrastBorder }, ( localize(718, 'Border color of unnecessary (unused) source code in the editor.')));
98
+ registerColor('editorUnnecessaryCode.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#fff')).transparent(0.8)), hcLight: contrastBorder }, ( localize(721, 'Border color of unnecessary (unused) source code in the editor.')));
99
99
  const editorUnnecessaryCodeOpacity = registerColor('editorUnnecessaryCode.opacity', { dark: ( Color.fromHex('#000a')), light: ( Color.fromHex('#0007')), hcDark: null, hcLight: null }, ( localize(
100
- 719,
100
+ 722,
101
101
  'Opacity of unnecessary (unused) source code in the editor. For example, "#000000c0" will render the code with 75% opacity. For high contrast themes, use the \'editorUnnecessaryCode.border\' theme color to underline unnecessary code instead of fading it out.'
102
102
  )));
103
- registerColor('editorGhostText.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#fff')).transparent(0.8)), hcLight: ( ( Color.fromHex('#292929')).transparent(0.8)) }, ( localize(720, 'Border color of ghost text in the editor.')));
104
- const ghostTextForeground = registerColor('editorGhostText.foreground', { dark: ( Color.fromHex('#ffffff56')), light: ( Color.fromHex('#0007')), hcDark: null, hcLight: null }, ( localize(721, 'Foreground color of the ghost text in the editor.')));
105
- registerColor('editorGhostText.background', null, ( localize(722, 'Background color of the ghost text in the editor.')));
103
+ registerColor('editorGhostText.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#fff')).transparent(0.8)), hcLight: ( ( Color.fromHex('#292929')).transparent(0.8)) }, ( localize(723, 'Border color of ghost text in the editor.')));
104
+ const ghostTextForeground = registerColor('editorGhostText.foreground', { dark: ( Color.fromHex('#ffffff56')), light: ( Color.fromHex('#0007')), hcDark: null, hcLight: null }, ( localize(724, 'Foreground color of the ghost text in the editor.')));
105
+ registerColor('editorGhostText.background', null, ( localize(725, 'Background color of the ghost text in the editor.')));
106
106
  const rulerRangeDefault = ( new Color(( new RGBA(0, 122, 204, 0.6))));
107
107
  const overviewRulerRangeHighlight = registerColor('editorOverviewRuler.rangeHighlightForeground', rulerRangeDefault, ( localize(
108
- 723,
108
+ 726,
109
109
  'Overview ruler marker color for range highlights. The color must not be opaque so as not to hide underlying decorations.'
110
110
  )), true);
111
- const overviewRulerError = registerColor('editorOverviewRuler.errorForeground', { dark: ( new Color(( new RGBA(255, 18, 18, 0.7)))), light: ( new Color(( new RGBA(255, 18, 18, 0.7)))), hcDark: ( new Color(( new RGBA(255, 50, 50, 1)))), hcLight: '#B5200D' }, ( localize(724, 'Overview ruler marker color for errors.')));
112
- const overviewRulerWarning = registerColor('editorOverviewRuler.warningForeground', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningBorder, hcLight: editorWarningBorder }, ( localize(725, 'Overview ruler marker color for warnings.')));
113
- const overviewRulerInfo = registerColor('editorOverviewRuler.infoForeground', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoBorder, hcLight: editorInfoBorder }, ( localize(726, 'Overview ruler marker color for infos.')));
111
+ const overviewRulerError = registerColor('editorOverviewRuler.errorForeground', { dark: ( new Color(( new RGBA(255, 18, 18, 0.7)))), light: ( new Color(( new RGBA(255, 18, 18, 0.7)))), hcDark: ( new Color(( new RGBA(255, 50, 50, 1)))), hcLight: '#B5200D' }, ( localize(727, 'Overview ruler marker color for errors.')));
112
+ const overviewRulerWarning = registerColor('editorOverviewRuler.warningForeground', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningBorder, hcLight: editorWarningBorder }, ( localize(728, 'Overview ruler marker color for warnings.')));
113
+ const overviewRulerInfo = registerColor('editorOverviewRuler.infoForeground', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoBorder, hcLight: editorInfoBorder }, ( localize(729, 'Overview ruler marker color for infos.')));
114
114
  const editorBracketHighlightingForeground1 = registerColor('editorBracketHighlight.foreground1', { dark: '#FFD700', light: '#0431FAFF', hcDark: '#FFD700', hcLight: '#0431FAFF' }, ( localize(
115
- 727,
115
+ 730,
116
116
  'Foreground color of brackets (1). Requires enabling bracket pair colorization.'
117
117
  )));
118
118
  const editorBracketHighlightingForeground2 = registerColor('editorBracketHighlight.foreground2', { dark: '#DA70D6', light: '#319331FF', hcDark: '#DA70D6', hcLight: '#319331FF' }, ( localize(
119
- 728,
119
+ 731,
120
120
  'Foreground color of brackets (2). Requires enabling bracket pair colorization.'
121
121
  )));
122
122
  const editorBracketHighlightingForeground3 = registerColor('editorBracketHighlight.foreground3', { dark: '#179FFF', light: '#7B3814FF', hcDark: '#87CEFA', hcLight: '#7B3814FF' }, ( localize(
123
- 729,
123
+ 732,
124
124
  'Foreground color of brackets (3). Requires enabling bracket pair colorization.'
125
125
  )));
126
126
  const editorBracketHighlightingForeground4 = registerColor('editorBracketHighlight.foreground4', '#00000000', ( localize(
127
- 730,
127
+ 733,
128
128
  'Foreground color of brackets (4). Requires enabling bracket pair colorization.'
129
129
  )));
130
130
  const editorBracketHighlightingForeground5 = registerColor('editorBracketHighlight.foreground5', '#00000000', ( localize(
131
- 731,
131
+ 734,
132
132
  'Foreground color of brackets (5). Requires enabling bracket pair colorization.'
133
133
  )));
134
134
  const editorBracketHighlightingForeground6 = registerColor('editorBracketHighlight.foreground6', '#00000000', ( localize(
135
- 732,
135
+ 735,
136
136
  'Foreground color of brackets (6). Requires enabling bracket pair colorization.'
137
137
  )));
138
- const editorBracketHighlightingUnexpectedBracketForeground = registerColor('editorBracketHighlight.unexpectedBracket.foreground', { dark: ( new Color(( new RGBA(255, 18, 18, 0.8)))), light: ( new Color(( new RGBA(255, 18, 18, 0.8)))), hcDark: ( new Color(( new RGBA(255, 50, 50, 1)))), hcLight: '#B5200D' }, ( localize(733, 'Foreground color of unexpected brackets.')));
138
+ const editorBracketHighlightingUnexpectedBracketForeground = registerColor('editorBracketHighlight.unexpectedBracket.foreground', { dark: ( new Color(( new RGBA(255, 18, 18, 0.8)))), light: ( new Color(( new RGBA(255, 18, 18, 0.8)))), hcDark: ( new Color(( new RGBA(255, 50, 50, 1)))), hcLight: '#B5200D' }, ( localize(736, 'Foreground color of unexpected brackets.')));
139
139
  const editorBracketPairGuideBackground1 = registerColor('editorBracketPairGuide.background1', '#00000000', ( localize(
140
- 734,
140
+ 737,
141
141
  'Background color of inactive bracket pair guides (1). Requires enabling bracket pair guides.'
142
142
  )));
143
143
  const editorBracketPairGuideBackground2 = registerColor('editorBracketPairGuide.background2', '#00000000', ( localize(
144
- 735,
144
+ 738,
145
145
  'Background color of inactive bracket pair guides (2). Requires enabling bracket pair guides.'
146
146
  )));
147
147
  const editorBracketPairGuideBackground3 = registerColor('editorBracketPairGuide.background3', '#00000000', ( localize(
148
- 736,
148
+ 739,
149
149
  'Background color of inactive bracket pair guides (3). Requires enabling bracket pair guides.'
150
150
  )));
151
151
  const editorBracketPairGuideBackground4 = registerColor('editorBracketPairGuide.background4', '#00000000', ( localize(
152
- 737,
152
+ 740,
153
153
  'Background color of inactive bracket pair guides (4). Requires enabling bracket pair guides.'
154
154
  )));
155
155
  const editorBracketPairGuideBackground5 = registerColor('editorBracketPairGuide.background5', '#00000000', ( localize(
156
- 738,
156
+ 741,
157
157
  'Background color of inactive bracket pair guides (5). Requires enabling bracket pair guides.'
158
158
  )));
159
159
  const editorBracketPairGuideBackground6 = registerColor('editorBracketPairGuide.background6', '#00000000', ( localize(
160
- 739,
160
+ 742,
161
161
  'Background color of inactive bracket pair guides (6). Requires enabling bracket pair guides.'
162
162
  )));
163
163
  const editorBracketPairGuideActiveBackground1 = registerColor('editorBracketPairGuide.activeBackground1', '#00000000', ( localize(
164
- 740,
164
+ 743,
165
165
  'Background color of active bracket pair guides (1). Requires enabling bracket pair guides.'
166
166
  )));
167
167
  const editorBracketPairGuideActiveBackground2 = registerColor('editorBracketPairGuide.activeBackground2', '#00000000', ( localize(
168
- 741,
168
+ 744,
169
169
  'Background color of active bracket pair guides (2). Requires enabling bracket pair guides.'
170
170
  )));
171
171
  const editorBracketPairGuideActiveBackground3 = registerColor('editorBracketPairGuide.activeBackground3', '#00000000', ( localize(
172
- 742,
172
+ 745,
173
173
  'Background color of active bracket pair guides (3). Requires enabling bracket pair guides.'
174
174
  )));
175
175
  const editorBracketPairGuideActiveBackground4 = registerColor('editorBracketPairGuide.activeBackground4', '#00000000', ( localize(
176
- 743,
176
+ 746,
177
177
  'Background color of active bracket pair guides (4). Requires enabling bracket pair guides.'
178
178
  )));
179
179
  const editorBracketPairGuideActiveBackground5 = registerColor('editorBracketPairGuide.activeBackground5', '#00000000', ( localize(
180
- 744,
180
+ 747,
181
181
  'Background color of active bracket pair guides (5). Requires enabling bracket pair guides.'
182
182
  )));
183
183
  const editorBracketPairGuideActiveBackground6 = registerColor('editorBracketPairGuide.activeBackground6', '#00000000', ( localize(
184
- 745,
184
+ 748,
185
185
  'Background color of active bracket pair guides (6). Requires enabling bracket pair guides.'
186
186
  )));
187
- registerColor('editorUnicodeHighlight.border', editorWarningForeground, ( localize(746, 'Border color used to highlight unicode characters.')));
188
- registerColor('editorUnicodeHighlight.background', editorWarningBackground, ( localize(747, 'Background color used to highlight unicode characters.')));
187
+ registerColor('editorUnicodeHighlight.border', editorWarningForeground, ( localize(749, 'Border color used to highlight unicode characters.')));
188
+ registerColor('editorUnicodeHighlight.background', editorWarningBackground, ( localize(750, 'Background color used to highlight unicode characters.')));
189
189
  registerThemingParticipant((theme, collector) => {
190
190
  const background = theme.getColor(editorBackground);
191
191
  const lineHighlight = theme.getColor(editorLineHighlight);
@@ -152,6 +152,9 @@ export declare class Range {
152
152
  * Moves the range by the given amount of lines.
153
153
  */
154
154
  delta(lineCount: number): Range;
155
+ /**
156
+ * Test if this range starts and ends on the same line.
157
+ */
155
158
  isSingleLine(): boolean;
156
159
  static fromPositions(start: IPosition, end?: IPosition): Range;
157
160
  /**
@@ -576,15 +576,15 @@ class PasteOperation {
576
576
  }
577
577
  }
578
578
  static _distributePasteToCursors(config, selections, text, pasteOnNewLine, multicursorText) {
579
- if (pasteOnNewLine) {
580
- return null;
581
- }
582
579
  if (selections.length === 1) {
583
580
  return null;
584
581
  }
585
582
  if (multicursorText && multicursorText.length === selections.length) {
586
583
  return multicursorText;
587
584
  }
585
+ if (pasteOnNewLine) {
586
+ return null;
587
+ }
588
588
  if (config.multiCursorPaste === 'spread') {
589
589
  if (text.charCodeAt(text.length - 1) === CharCode.LineFeed) {
590
590
  text = text.substring(0, text.length - 1);
@@ -39,7 +39,7 @@ export declare class WordOperations {
39
39
  static _moveWordPartRight(model: ICursorSimpleModel, position: Position): Position;
40
40
  protected static _deleteWordLeftWhitespace(model: ICursorSimpleModel, position: Position): Range | null;
41
41
  static deleteWordLeft(ctx: DeleteWordContext, wordNavigationType: WordNavigationType): Range | null;
42
- static deleteInsideWord(wordSeparators: WordCharacterClassifier, model: ITextModel, selection: Selection): Range;
42
+ static deleteInsideWord(wordSeparators: WordCharacterClassifier, model: ITextModel, selection: Selection, onlyWord?: boolean): Range;
43
43
  private static _charAtIsWhitespace;
44
44
  private static _deleteInsideWordWhitespace;
45
45
  private static _deleteInsideWordDetermineDeleteRange;
@@ -367,7 +367,7 @@ class WordOperations {
367
367
  }
368
368
  return ( new Range(lineNumber, column, position.lineNumber, position.column));
369
369
  }
370
- static deleteInsideWord(wordSeparators, model, selection) {
370
+ static deleteInsideWord(wordSeparators, model, selection, onlyWord = false) {
371
371
  if (!selection.isEmpty()) {
372
372
  return selection;
373
373
  }
@@ -376,7 +376,7 @@ class WordOperations {
376
376
  if (r) {
377
377
  return r;
378
378
  }
379
- return this._deleteInsideWordDetermineDeleteRange(wordSeparators, model, position);
379
+ return this._deleteInsideWordDetermineDeleteRange(wordSeparators, model, position, onlyWord);
380
380
  }
381
381
  static _charAtIsWhitespace(str, index) {
382
382
  const charCode = str.charCodeAt(index);
@@ -404,7 +404,7 @@ class WordOperations {
404
404
  }
405
405
  return ( new Range(position.lineNumber, leftIndex + 1, position.lineNumber, rightIndex + 2));
406
406
  }
407
- static _deleteInsideWordDetermineDeleteRange(wordSeparators, model, position) {
407
+ static _deleteInsideWordDetermineDeleteRange(wordSeparators, model, position, onlyWord) {
408
408
  const lineContent = model.getLineContent(position.lineNumber);
409
409
  const lineLength = lineContent.length;
410
410
  if (lineLength === 0) {
@@ -436,6 +436,9 @@ class WordOperations {
436
436
  const deleteWordAndAdjacentWhitespace = (word) => {
437
437
  let startColumn = word.start + 1;
438
438
  let endColumn = word.end + 1;
439
+ if (onlyWord) {
440
+ return createRangeWithPosition(startColumn, endColumn);
441
+ }
439
442
  let expandedToTheRight = false;
440
443
  while (endColumn - 1 < lineLength && this._charAtIsWhitespace(lineContent, endColumn - 1)) {
441
444
  expandedToTheRight = true;
@@ -5,74 +5,74 @@ import { RawContextKey } from '../../platform/contextkey/common/contextkey.js';
5
5
  var EditorContextKeys;
6
6
  (function (EditorContextKeys) {
7
7
  EditorContextKeys.editorSimpleInput = ( new RawContextKey('editorSimpleInput', false, true));
8
- EditorContextKeys.editorTextFocus = ( new RawContextKey('editorTextFocus', false, ( localize(748, "Whether the editor text has focus (cursor is blinking)"))));
8
+ EditorContextKeys.editorTextFocus = ( new RawContextKey('editorTextFocus', false, ( localize(751, "Whether the editor text has focus (cursor is blinking)"))));
9
9
  EditorContextKeys.focus = ( new RawContextKey('editorFocus', false, ( localize(
10
- 749,
10
+ 752,
11
11
  "Whether the editor or an editor widget has focus (e.g. focus is in the find widget)"
12
12
  ))));
13
13
  EditorContextKeys.textInputFocus = ( new RawContextKey('textInputFocus', false, ( localize(
14
- 750,
14
+ 753,
15
15
  "Whether an editor or a rich text input has focus (cursor is blinking)"
16
16
  ))));
17
- EditorContextKeys.readOnly = ( new RawContextKey('editorReadonly', false, ( localize(751, "Whether the editor is read-only"))));
18
- EditorContextKeys.inDiffEditor = ( new RawContextKey('inDiffEditor', false, ( localize(752, "Whether the context is a diff editor"))));
19
- EditorContextKeys.isEmbeddedDiffEditor = ( new RawContextKey('isEmbeddedDiffEditor', false, ( localize(753, "Whether the context is an embedded diff editor"))));
20
- EditorContextKeys.inMultiDiffEditor = ( new RawContextKey('inMultiDiffEditor', false, ( localize(754, "Whether the context is a multi diff editor"))));
21
- EditorContextKeys.multiDiffEditorAllCollapsed = ( new RawContextKey('multiDiffEditorAllCollapsed', undefined, ( localize(755, "Whether all files in multi diff editor are collapsed"))));
22
- EditorContextKeys.hasChanges = ( new RawContextKey('diffEditorHasChanges', false, ( localize(756, "Whether the diff editor has changes"))));
23
- EditorContextKeys.comparingMovedCode = ( new RawContextKey('comparingMovedCode', false, ( localize(757, "Whether a moved code block is selected for comparison"))));
24
- EditorContextKeys.accessibleDiffViewerVisible = ( new RawContextKey('accessibleDiffViewerVisible', false, ( localize(758, "Whether the accessible diff viewer is visible"))));
17
+ EditorContextKeys.readOnly = ( new RawContextKey('editorReadonly', false, ( localize(754, "Whether the editor is read-only"))));
18
+ EditorContextKeys.inDiffEditor = ( new RawContextKey('inDiffEditor', false, ( localize(755, "Whether the context is a diff editor"))));
19
+ EditorContextKeys.isEmbeddedDiffEditor = ( new RawContextKey('isEmbeddedDiffEditor', false, ( localize(756, "Whether the context is an embedded diff editor"))));
20
+ EditorContextKeys.inMultiDiffEditor = ( new RawContextKey('inMultiDiffEditor', false, ( localize(757, "Whether the context is a multi diff editor"))));
21
+ EditorContextKeys.multiDiffEditorAllCollapsed = ( new RawContextKey('multiDiffEditorAllCollapsed', undefined, ( localize(758, "Whether all files in multi diff editor are collapsed"))));
22
+ EditorContextKeys.hasChanges = ( new RawContextKey('diffEditorHasChanges', false, ( localize(759, "Whether the diff editor has changes"))));
23
+ EditorContextKeys.comparingMovedCode = ( new RawContextKey('comparingMovedCode', false, ( localize(760, "Whether a moved code block is selected for comparison"))));
24
+ EditorContextKeys.accessibleDiffViewerVisible = ( new RawContextKey('accessibleDiffViewerVisible', false, ( localize(761, "Whether the accessible diff viewer is visible"))));
25
25
  EditorContextKeys.diffEditorRenderSideBySideInlineBreakpointReached = ( new RawContextKey('diffEditorRenderSideBySideInlineBreakpointReached', false, ( localize(
26
- 759,
26
+ 762,
27
27
  "Whether the diff editor render side by side inline breakpoint is reached"
28
28
  ))));
29
- EditorContextKeys.diffEditorInlineMode = ( new RawContextKey('diffEditorInlineMode', false, ( localize(760, "Whether inline mode is active"))));
30
- EditorContextKeys.diffEditorOriginalWritable = ( new RawContextKey('diffEditorOriginalWritable', false, ( localize(761, "Whether modified is writable in the diff editor"))));
31
- EditorContextKeys.diffEditorModifiedWritable = ( new RawContextKey('diffEditorModifiedWritable', false, ( localize(762, "Whether modified is writable in the diff editor"))));
32
- EditorContextKeys.diffEditorOriginalUri = ( new RawContextKey('diffEditorOriginalUri', '', ( localize(763, "The uri of the original document"))));
33
- EditorContextKeys.diffEditorModifiedUri = ( new RawContextKey('diffEditorModifiedUri', '', ( localize(764, "The uri of the modified document"))));
34
- EditorContextKeys.columnSelection = ( new RawContextKey('editorColumnSelection', false, ( localize(765, "Whether `editor.columnSelection` is enabled"))));
29
+ EditorContextKeys.diffEditorInlineMode = ( new RawContextKey('diffEditorInlineMode', false, ( localize(763, "Whether inline mode is active"))));
30
+ EditorContextKeys.diffEditorOriginalWritable = ( new RawContextKey('diffEditorOriginalWritable', false, ( localize(764, "Whether modified is writable in the diff editor"))));
31
+ EditorContextKeys.diffEditorModifiedWritable = ( new RawContextKey('diffEditorModifiedWritable', false, ( localize(765, "Whether modified is writable in the diff editor"))));
32
+ EditorContextKeys.diffEditorOriginalUri = ( new RawContextKey('diffEditorOriginalUri', '', ( localize(766, "The uri of the original document"))));
33
+ EditorContextKeys.diffEditorModifiedUri = ( new RawContextKey('diffEditorModifiedUri', '', ( localize(767, "The uri of the modified document"))));
34
+ EditorContextKeys.columnSelection = ( new RawContextKey('editorColumnSelection', false, ( localize(768, "Whether `editor.columnSelection` is enabled"))));
35
35
  EditorContextKeys.writable = ( EditorContextKeys.readOnly.toNegated());
36
- EditorContextKeys.hasNonEmptySelection = ( new RawContextKey('editorHasSelection', false, ( localize(766, "Whether the editor has text selected"))));
36
+ EditorContextKeys.hasNonEmptySelection = ( new RawContextKey('editorHasSelection', false, ( localize(769, "Whether the editor has text selected"))));
37
37
  EditorContextKeys.hasOnlyEmptySelection = ( EditorContextKeys.hasNonEmptySelection.toNegated());
38
- EditorContextKeys.hasMultipleSelections = ( new RawContextKey('editorHasMultipleSelections', false, ( localize(767, "Whether the editor has multiple selections"))));
38
+ EditorContextKeys.hasMultipleSelections = ( new RawContextKey('editorHasMultipleSelections', false, ( localize(770, "Whether the editor has multiple selections"))));
39
39
  EditorContextKeys.hasSingleSelection = ( EditorContextKeys.hasMultipleSelections.toNegated());
40
- EditorContextKeys.tabMovesFocus = ( new RawContextKey('editorTabMovesFocus', false, ( localize(768, "Whether `Tab` will move focus out of the editor"))));
40
+ EditorContextKeys.tabMovesFocus = ( new RawContextKey('editorTabMovesFocus', false, ( localize(771, "Whether `Tab` will move focus out of the editor"))));
41
41
  EditorContextKeys.tabDoesNotMoveFocus = ( EditorContextKeys.tabMovesFocus.toNegated());
42
42
  EditorContextKeys.isInEmbeddedEditor = ( new RawContextKey('isInEmbeddedEditor', false, true));
43
43
  EditorContextKeys.canUndo = ( new RawContextKey('canUndo', false, true));
44
44
  EditorContextKeys.canRedo = ( new RawContextKey('canRedo', false, true));
45
- EditorContextKeys.hoverVisible = ( new RawContextKey('editorHoverVisible', false, ( localize(769, "Whether the editor hover is visible"))));
46
- EditorContextKeys.hoverFocused = ( new RawContextKey('editorHoverFocused', false, ( localize(770, "Whether the editor hover is focused"))));
47
- EditorContextKeys.stickyScrollFocused = ( new RawContextKey('stickyScrollFocused', false, ( localize(771, "Whether the sticky scroll is focused"))));
48
- EditorContextKeys.stickyScrollVisible = ( new RawContextKey('stickyScrollVisible', false, ( localize(772, "Whether the sticky scroll is visible"))));
49
- EditorContextKeys.standaloneColorPickerVisible = ( new RawContextKey('standaloneColorPickerVisible', false, ( localize(773, "Whether the standalone color picker is visible"))));
50
- EditorContextKeys.standaloneColorPickerFocused = ( new RawContextKey('standaloneColorPickerFocused', false, ( localize(774, "Whether the standalone color picker is focused"))));
51
- EditorContextKeys.inCompositeEditor = ( new RawContextKey('inCompositeEditor', undefined, ( localize(775, "Whether the editor is part of a larger editor (e.g. notebooks)"))));
45
+ EditorContextKeys.hoverVisible = ( new RawContextKey('editorHoverVisible', false, ( localize(772, "Whether the editor hover is visible"))));
46
+ EditorContextKeys.hoverFocused = ( new RawContextKey('editorHoverFocused', false, ( localize(773, "Whether the editor hover is focused"))));
47
+ EditorContextKeys.stickyScrollFocused = ( new RawContextKey('stickyScrollFocused', false, ( localize(774, "Whether the sticky scroll is focused"))));
48
+ EditorContextKeys.stickyScrollVisible = ( new RawContextKey('stickyScrollVisible', false, ( localize(775, "Whether the sticky scroll is visible"))));
49
+ EditorContextKeys.standaloneColorPickerVisible = ( new RawContextKey('standaloneColorPickerVisible', false, ( localize(776, "Whether the standalone color picker is visible"))));
50
+ EditorContextKeys.standaloneColorPickerFocused = ( new RawContextKey('standaloneColorPickerFocused', false, ( localize(777, "Whether the standalone color picker is focused"))));
51
+ EditorContextKeys.inCompositeEditor = ( new RawContextKey('inCompositeEditor', undefined, ( localize(778, "Whether the editor is part of a larger editor (e.g. notebooks)"))));
52
52
  EditorContextKeys.notInCompositeEditor = ( EditorContextKeys.inCompositeEditor.toNegated());
53
- EditorContextKeys.languageId = ( new RawContextKey('editorLangId', '', ( localize(776, "The language identifier of the editor"))));
54
- EditorContextKeys.hasCompletionItemProvider = ( new RawContextKey('editorHasCompletionItemProvider', false, ( localize(777, "Whether the editor has a completion item provider"))));
55
- EditorContextKeys.hasCodeActionsProvider = ( new RawContextKey('editorHasCodeActionsProvider', false, ( localize(778, "Whether the editor has a code actions provider"))));
56
- EditorContextKeys.hasCodeLensProvider = ( new RawContextKey('editorHasCodeLensProvider', false, ( localize(779, "Whether the editor has a code lens provider"))));
57
- EditorContextKeys.hasDefinitionProvider = ( new RawContextKey('editorHasDefinitionProvider', false, ( localize(780, "Whether the editor has a definition provider"))));
58
- EditorContextKeys.hasDeclarationProvider = ( new RawContextKey('editorHasDeclarationProvider', false, ( localize(781, "Whether the editor has a declaration provider"))));
59
- EditorContextKeys.hasImplementationProvider = ( new RawContextKey('editorHasImplementationProvider', false, ( localize(782, "Whether the editor has an implementation provider"))));
60
- EditorContextKeys.hasTypeDefinitionProvider = ( new RawContextKey('editorHasTypeDefinitionProvider', false, ( localize(783, "Whether the editor has a type definition provider"))));
61
- EditorContextKeys.hasHoverProvider = ( new RawContextKey('editorHasHoverProvider', false, ( localize(784, "Whether the editor has a hover provider"))));
62
- EditorContextKeys.hasDocumentHighlightProvider = ( new RawContextKey('editorHasDocumentHighlightProvider', false, ( localize(785, "Whether the editor has a document highlight provider"))));
63
- EditorContextKeys.hasDocumentSymbolProvider = ( new RawContextKey('editorHasDocumentSymbolProvider', false, ( localize(786, "Whether the editor has a document symbol provider"))));
64
- EditorContextKeys.hasReferenceProvider = ( new RawContextKey('editorHasReferenceProvider', false, ( localize(787, "Whether the editor has a reference provider"))));
65
- EditorContextKeys.hasRenameProvider = ( new RawContextKey('editorHasRenameProvider', false, ( localize(788, "Whether the editor has a rename provider"))));
66
- EditorContextKeys.hasSignatureHelpProvider = ( new RawContextKey('editorHasSignatureHelpProvider', false, ( localize(789, "Whether the editor has a signature help provider"))));
67
- EditorContextKeys.hasInlayHintsProvider = ( new RawContextKey('editorHasInlayHintsProvider', false, ( localize(790, "Whether the editor has an inline hints provider"))));
68
- EditorContextKeys.hasDocumentFormattingProvider = ( new RawContextKey('editorHasDocumentFormattingProvider', false, ( localize(791, "Whether the editor has a document formatting provider"))));
69
- EditorContextKeys.hasDocumentSelectionFormattingProvider = ( new RawContextKey('editorHasDocumentSelectionFormattingProvider', false, ( localize(792, "Whether the editor has a document selection formatting provider"))));
70
- EditorContextKeys.hasMultipleDocumentFormattingProvider = ( new RawContextKey('editorHasMultipleDocumentFormattingProvider', false, ( localize(793, "Whether the editor has multiple document formatting providers"))));
53
+ EditorContextKeys.languageId = ( new RawContextKey('editorLangId', '', ( localize(779, "The language identifier of the editor"))));
54
+ EditorContextKeys.hasCompletionItemProvider = ( new RawContextKey('editorHasCompletionItemProvider', false, ( localize(780, "Whether the editor has a completion item provider"))));
55
+ EditorContextKeys.hasCodeActionsProvider = ( new RawContextKey('editorHasCodeActionsProvider', false, ( localize(781, "Whether the editor has a code actions provider"))));
56
+ EditorContextKeys.hasCodeLensProvider = ( new RawContextKey('editorHasCodeLensProvider', false, ( localize(782, "Whether the editor has a code lens provider"))));
57
+ EditorContextKeys.hasDefinitionProvider = ( new RawContextKey('editorHasDefinitionProvider', false, ( localize(783, "Whether the editor has a definition provider"))));
58
+ EditorContextKeys.hasDeclarationProvider = ( new RawContextKey('editorHasDeclarationProvider', false, ( localize(784, "Whether the editor has a declaration provider"))));
59
+ EditorContextKeys.hasImplementationProvider = ( new RawContextKey('editorHasImplementationProvider', false, ( localize(785, "Whether the editor has an implementation provider"))));
60
+ EditorContextKeys.hasTypeDefinitionProvider = ( new RawContextKey('editorHasTypeDefinitionProvider', false, ( localize(786, "Whether the editor has a type definition provider"))));
61
+ EditorContextKeys.hasHoverProvider = ( new RawContextKey('editorHasHoverProvider', false, ( localize(787, "Whether the editor has a hover provider"))));
62
+ EditorContextKeys.hasDocumentHighlightProvider = ( new RawContextKey('editorHasDocumentHighlightProvider', false, ( localize(788, "Whether the editor has a document highlight provider"))));
63
+ EditorContextKeys.hasDocumentSymbolProvider = ( new RawContextKey('editorHasDocumentSymbolProvider', false, ( localize(789, "Whether the editor has a document symbol provider"))));
64
+ EditorContextKeys.hasReferenceProvider = ( new RawContextKey('editorHasReferenceProvider', false, ( localize(790, "Whether the editor has a reference provider"))));
65
+ EditorContextKeys.hasRenameProvider = ( new RawContextKey('editorHasRenameProvider', false, ( localize(791, "Whether the editor has a rename provider"))));
66
+ EditorContextKeys.hasSignatureHelpProvider = ( new RawContextKey('editorHasSignatureHelpProvider', false, ( localize(792, "Whether the editor has a signature help provider"))));
67
+ EditorContextKeys.hasInlayHintsProvider = ( new RawContextKey('editorHasInlayHintsProvider', false, ( localize(793, "Whether the editor has an inline hints provider"))));
68
+ EditorContextKeys.hasDocumentFormattingProvider = ( new RawContextKey('editorHasDocumentFormattingProvider', false, ( localize(794, "Whether the editor has a document formatting provider"))));
69
+ EditorContextKeys.hasDocumentSelectionFormattingProvider = ( new RawContextKey('editorHasDocumentSelectionFormattingProvider', false, ( localize(795, "Whether the editor has a document selection formatting provider"))));
70
+ EditorContextKeys.hasMultipleDocumentFormattingProvider = ( new RawContextKey('editorHasMultipleDocumentFormattingProvider', false, ( localize(796, "Whether the editor has multiple document formatting providers"))));
71
71
  EditorContextKeys.hasMultipleDocumentSelectionFormattingProvider = ( new RawContextKey(
72
72
  'editorHasMultipleDocumentSelectionFormattingProvider',
73
73
  false,
74
74
  ( localize(
75
- 794,
75
+ 797,
76
76
  "Whether the editor has multiple document selection formatting providers"
77
77
  ))
78
78
  ));
@@ -87,7 +87,7 @@ function _findMatches(model, regex) {
87
87
  }
88
88
  function computeColors(model) {
89
89
  const result = [];
90
- const initialValidationRegex = /\b(rgb|rgba|hsl|hsla)(\([0-9\s,.\%]*\))|^(#)([A-Fa-f0-9]{3})\b|^(#)([A-Fa-f0-9]{4})\b|^(#)([A-Fa-f0-9]{6})\b|^(#)([A-Fa-f0-9]{8})\b|(?<=['"\s])(#)([A-Fa-f0-9]{3})\b|(?<=['"\s])(#)([A-Fa-f0-9]{4})\b|(?<=['"\s])(#)([A-Fa-f0-9]{6})\b|(?<=['"\s])(#)([A-Fa-f0-9]{8})\b/gm;
90
+ const initialValidationRegex = /\b(rgb|rgba|hsl|hsla)(\([0-9\s,.\%\/]*\))|^(#)([A-Fa-f0-9]{3})\b|^(#)([A-Fa-f0-9]{4})\b|^(#)([A-Fa-f0-9]{6})\b|^(#)([A-Fa-f0-9]{8})\b|(?<=['"\s])(#)([A-Fa-f0-9]{3})\b|(?<=['"\s])(#)([A-Fa-f0-9]{4})\b|(?<=['"\s])(#)([A-Fa-f0-9]{6})\b|(?<=['"\s])(#)([A-Fa-f0-9]{8})\b/gm;
91
91
  const initialValidationMatches = _findMatches(model, initialValidationRegex);
92
92
  if (initialValidationMatches.length > 0) {
93
93
  for (const initialMatch of initialValidationMatches) {
@@ -99,19 +99,19 @@ function computeColors(model) {
99
99
  }
100
100
  let colorInformation;
101
101
  if (colorScheme === 'rgb') {
102
- const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm;
102
+ const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*[\s,]\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*[\s,]\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm;
103
103
  colorInformation = _findRGBColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), false);
104
104
  }
105
105
  else if (colorScheme === 'rgba') {
106
- const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;
106
+ const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*[\s,]\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*[\s,]\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*(?:[\s,]|[\s]*\/)\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;
107
107
  colorInformation = _findRGBColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), true);
108
108
  }
109
109
  else if (colorScheme === 'hsl') {
110
- const regexParameters = /^\(\s*((?:360(?:\.0+)?|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])(?:\.\d+)?))\s*[\s,]\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*[\s,]\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm;
110
+ const regexParameters = /^\(\s*((?:360(?:\.0+)?|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])(?:\.\d+)?))\s*[\s,]\s*(100(?:\.0+)?|\d{1,2}[.]\d*|\d{1,2})%\s*[\s,]\s*(100(?:\.0+)?|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm;
111
111
  colorInformation = _findHSLColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), false);
112
112
  }
113
113
  else if (colorScheme === 'hsla') {
114
- const regexParameters = /^\(\s*((?:360(?:\.0+)?|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])(?:\.\d+)?))\s*[\s,]\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*[\s,]\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*[\s,]\s*(0[.][0-9]+|[.][0-9]+|[01][.]0*|[01])\s*\)$/gm;
114
+ const regexParameters = /^\(\s*((?:360(?:\.0+)?|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])(?:\.\d+)?))\s*[\s,]\s*(100(?:\.0+)?|\d{1,2}[.]\d*|\d{1,2})%\s*[\s,]\s*(100(?:\.0+)?|\d{1,2}[.]\d*|\d{1,2})%\s*(?:[\s,]|[\s]*\/)\s*(0[.][0-9]+|[.][0-9]+|[01][.]0*|[01])\s*\)$/gm;
115
115
  colorInformation = _findHSLColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), true);
116
116
  }
117
117
  else if (colorScheme === '#') {
@@ -41,7 +41,7 @@ const PLAINTEXT_EXTENSION = '.txt';
41
41
  ModesRegistry.registerLanguage({
42
42
  id: PLAINTEXT_LANGUAGE_ID,
43
43
  extensions: [PLAINTEXT_EXTENSION],
44
- aliases: [( localize(851, "Plain Text")), 'text'],
44
+ aliases: [( localize(854, "Plain Text")), 'text'],
45
45
  mimetypes: [Mimes.text]
46
46
  });
47
47
  ( Registry.as(Extensions$1.Configuration))
@@ -21,7 +21,7 @@ function nullTokenizeEncoded(languageId, state) {
21
21
  | (FontStyle.None << MetadataConsts.FONT_STYLE_OFFSET)
22
22
  | (ColorId.DefaultForeground << MetadataConsts.FOREGROUND_OFFSET)
23
23
  | (ColorId.DefaultBackground << MetadataConsts.BACKGROUND_OFFSET)) >>> 0;
24
- return ( new EncodedTokenizationResult(tokens, state === null ? NullState : state));
24
+ return ( new EncodedTokenizationResult(tokens, [], state === null ? NullState : state));
25
25
  }
26
26
 
27
27
  export { NullState, nullTokenize, nullTokenizeEncoded };
@@ -1,4 +1,5 @@
1
1
  import { Color } from "../../../../base/common/color.js";
2
+ import { IFontTokenOptions } from "../../../../platform/theme/common/themeService.js";
2
3
  import { LanguageId, FontStyle, ColorId, StandardTokenType } from "../../encodedTokenAttributes.js";
3
4
  export interface ITokenThemeRule {
4
5
  token: string;
@@ -77,3 +78,5 @@ export declare class ThemeTrieElement {
77
78
  insert(token: string, fontStyle: FontStyle, foreground: ColorId, background: ColorId): void;
78
79
  }
79
80
  export declare function generateTokensCSSForColorMap(colorMap: readonly Color[]): string;
81
+ export declare function generateTokensCSSForFontMap(fontMap: readonly IFontTokenOptions[]): string;
82
+ export declare function classNameForFontTokenDecorations(fontFamily: string, fontSize: string): string;