@codingame/monaco-vscode-api 22.1.9 → 23.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.
- package/extensions.d.ts +1 -1
- package/extensions.js +4 -3
- package/external/vscode-semver/semver.js +43 -43
- package/missing-services.js +170 -43
- package/package.json +10 -10
- package/services.d.ts +4 -4
- package/services.js +3 -4
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/browser.d.ts +7 -0
- package/vscode/src/vs/base/browser/browser.js +5 -2
- package/vscode/src/vs/base/browser/dom.d.ts +16 -9
- package/vscode/src/vs/base/browser/dom.js +37 -6
- package/vscode/src/vs/base/browser/domSanitize.d.ts +1 -1
- package/vscode/src/vs/base/browser/domSanitize.js +29 -21
- package/vscode/src/vs/base/browser/formattedTextRenderer.js +2 -2
- package/vscode/src/vs/base/browser/history.d.ts +2 -2
- package/vscode/src/vs/base/browser/keyboardEvent.d.ts +6 -0
- package/vscode/src/vs/base/browser/keyboardEvent.js +4 -1
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +5 -4
- package/vscode/src/vs/base/browser/markdownRenderer.js +49 -2
- package/vscode/src/vs/base/browser/trustedTypes.d.ts +3 -1
- package/vscode/src/vs/base/browser/trustedTypes.js +2 -1
- package/vscode/src/vs/base/browser/ui/button/button.js +2 -8
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +4 -5
- package/vscode/src/vs/base/browser/ui/findinput/findInputToggles.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/findinput/findInputToggles.js +3 -4
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +2 -2
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.d.ts +1 -6
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.js +6 -7
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +14 -0
- package/vscode/src/vs/base/browser/ui/hover/hover.js +6 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.d.ts +4 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +20 -13
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +7 -3
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +3 -2
- package/vscode/src/vs/base/browser/ui/list/listPaging.js +5 -1
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/list/listView.js +4 -3
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +5 -5
- package/vscode/src/vs/base/browser/ui/progressbar/progressAccessibilitySignal.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/progressbar/progressAccessibilitySignal.js +3 -3
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.js +2 -2
- package/vscode/src/vs/base/browser/ui/sash/sash.css +1 -1
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +4 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +1 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +6 -3
- package/vscode/src/vs/base/browser/ui/table/table.css +2 -2
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +7 -7
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +12 -9
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +7 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +10 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +91 -13
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +12 -12
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +11 -10
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +6 -4
- package/vscode/src/vs/base/browser/ui/tree/dataTree.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css +2 -2
- package/vscode/src/vs/base/browser/ui/tree/objectTree.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/tree/tree.d.ts +1 -1
- package/vscode/src/vs/base/browser/webWorkerFactory.js +2 -1
- package/vscode/src/vs/base/common/actions.d.ts +5 -0
- package/vscode/src/vs/base/common/arrays.d.ts +2 -0
- package/vscode/src/vs/base/common/arrays.js +11 -1
- package/vscode/src/vs/base/common/arraysFind.d.ts +6 -3
- package/vscode/src/vs/base/common/arraysFind.js +18 -2
- package/vscode/src/vs/base/common/async.d.ts +13 -3
- package/vscode/src/vs/base/common/async.js +15 -7
- package/vscode/src/vs/base/common/cache.d.ts +11 -0
- package/vscode/src/vs/base/common/codicons.d.ts +26 -4
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +26 -4
- package/vscode/src/vs/base/common/codiconsLibrary.js +26 -4
- package/vscode/src/vs/base/common/collections.d.ts +1 -1
- package/vscode/src/vs/base/common/decorators/cancelPreviousCalls.d.ts +1 -1
- package/vscode/src/vs/base/common/extpath.js +4 -4
- package/vscode/src/vs/base/common/glob.d.ts +7 -3
- package/vscode/src/vs/base/common/glob.js +40 -32
- package/vscode/src/vs/base/common/history.d.ts +2 -2
- package/vscode/src/vs/base/common/htmlContent.d.ts +4 -0
- package/vscode/src/vs/base/common/htmlContent.js +5 -1
- package/vscode/src/vs/base/common/jsonSchema.d.ts +45 -17
- package/vscode/src/vs/base/common/lifecycle.d.ts +18 -3
- package/vscode/src/vs/base/common/lifecycle.js +3 -1
- package/vscode/src/vs/base/common/network.d.ts +6 -2
- package/vscode/src/vs/base/common/network.js +2 -1
- package/vscode/src/vs/base/common/oauth.d.ts +128 -3
- package/vscode/src/vs/base/common/oauth.js +83 -18
- package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/observables/derived.js +3 -1
- package/vscode/src/vs/base/common/observableInternal/utils/promise.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/utils/promise.js +3 -0
- package/vscode/src/vs/base/common/platform.d.ts +1 -0
- package/vscode/src/vs/base/common/policy.d.ts +33 -2
- package/vscode/src/vs/base/common/policy.js +13 -0
- package/vscode/src/vs/base/common/product.d.ts +2 -0
- package/vscode/src/vs/base/common/strings.d.ts +2 -0
- package/vscode/src/vs/base/common/strings.js +9 -7
- package/vscode/src/vs/base/common/themables.d.ts +8 -0
- package/vscode/src/vs/base/common/themables.js +8 -0
- package/vscode/src/vs/base/common/types.d.ts +37 -0
- package/vscode/src/vs/base/common/types.js +14 -3
- package/vscode/src/vs/base/common/validation.d.ts +62 -0
- package/vscode/src/vs/base/common/validation.js +182 -0
- package/vscode/src/vs/base/common/worker/webWorker.d.ts +15 -14
- package/vscode/src/vs/base/common/worker/webWorker.js +28 -14
- package/vscode/src/vs/base/parts/storage/common/storage.js +1 -1
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +2 -2
- package/vscode/src/vs/editor/browser/config/migrateOptions.d.ts +5 -5
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +5 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +19 -12
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.d.ts +1 -1
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +2 -1
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +1 -1
- package/vscode/src/vs/editor/browser/coreCommands.js +4 -2
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +17 -9
- package/vscode/src/vs/editor/browser/editorExtensions.d.ts +17 -15
- package/vscode/src/vs/editor/browser/editorExtensions.js +5 -0
- package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.d.ts +7 -7
- package/vscode/src/vs/editor/browser/services/bulkEditService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/codeEditorService.service.d.ts +5 -5
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +12 -12
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +1 -1
- package/vscode/src/vs/editor/browser/triggerInlineEditCommandsRegistry.d.ts +8 -0
- package/vscode/src/vs/editor/browser/triggerInlineEditCommandsRegistry.js +13 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.js +1 -1
- package/vscode/src/vs/editor/browser/view.d.ts +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewZones/viewZones.d.ts +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewZones/viewZones.js +1 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorContributions.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +6 -7
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +6 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.d.ts +1 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +18 -18
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/copySelection.d.ts +18 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/copySelection.js +44 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +4 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.d.ts +4 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +24 -27
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +21 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +75 -10
- package/vscode/src/vs/editor/browser/widget/diffEditor/delegatingEditorImpl.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +2 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +13 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +8 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +11 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/editorMarkdownCodeBlockRenderer.d.ts +14 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/editorMarkdownCodeBlockRenderer.js +68 -0
- package/vscode/src/vs/editor/common/config/editorConfiguration.d.ts +2 -2
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +54 -54
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +15 -25
- package/vscode/src/vs/editor/common/config/editorOptions.js +530 -473
- package/vscode/src/vs/editor/common/config/editorZoom.d.ts +1 -1
- package/vscode/src/vs/editor/common/config/fontInfo.d.ts +31 -17
- package/vscode/src/vs/editor/common/config/fontInfo.js +16 -25
- package/vscode/src/vs/editor/common/config/fontInfoFromSettings.d.ts +11 -0
- package/vscode/src/vs/editor/common/config/fontInfoFromSettings.js +26 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/position.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/position.js +1 -1
- package/vscode/src/vs/editor/common/core/range.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/range.js +1 -1
- package/vscode/src/vs/editor/common/core/selection.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/selection.js +1 -1
- package/vscode/src/vs/editor/common/core/text/abstractText.d.ts +3 -2
- package/vscode/src/vs/editor/common/core/text/abstractText.js +4 -1
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +2 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.js +10 -1
- package/vscode/src/vs/editor/common/cursor/cursorWordOperations.js +8 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +5 -5
- package/vscode/src/vs/editor/common/editorCommon.js +1 -1
- package/vscode/src/vs/editor/common/editorContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +47 -46
- package/vscode/src/vs/editor/common/languages/language.service.d.ts +3 -3
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages/textToHtmlTokenizer.js +22 -11
- package/vscode/src/vs/editor/common/languages.d.ts +38 -33
- package/vscode/src/vs/editor/common/languages.js +74 -64
- package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/textModel.js +4 -3
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.js +1 -1
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterSyntaxTokenBackend.js +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -2
- package/vscode/src/vs/editor/common/model.js +1 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +3 -3
- package/vscode/src/vs/editor/common/services/editorWebWorker.js +1 -0
- package/vscode/src/vs/editor/common/services/editorWorkerHost.d.ts +2 -2
- package/vscode/src/vs/editor/common/services/markerDecorations.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/modelService.d.ts +5 -5
- package/vscode/src/vs/editor/common/services/modelService.js +16 -23
- package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.d.ts +38 -7
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +4 -4
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +6 -6
- package/vscode/src/vs/editor/common/standaloneStrings.js +48 -48
- package/vscode/src/vs/editor/common/textModelBracketPairs.d.ts +1 -1
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +3 -1
- package/vscode/src/vs/editor/common/textModelEditSource.js +3 -2
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.js +6 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +24 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +39 -3
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +25 -13
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +2 -1
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +8 -7
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.d.ts +42 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +4 -4
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +4 -3
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerContribution.js +3 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +17 -13
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +13 -13
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +7 -5
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +2 -8
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +69 -76
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.js +4 -5
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +5 -5
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +41 -38
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css +4 -4
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/format.js +7 -0
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +2 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +34 -11
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +7 -3
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverWidget.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverWidget.js +26 -12
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +37 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.d.ts +15 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +40 -0
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +4 -6
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +27 -33
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +29 -27
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +29 -16
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.d.ts +2 -3
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +18 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +5 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +64 -53
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +17 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.d.ts +3 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +11 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +2 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +36 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +5 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +18 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +43 -28
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +5 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +17 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.d.ts +0 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +2 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +12 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +5 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +3 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +40 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +9 -6
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.d.ts +5 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +8 -2
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +104 -69
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +2 -2
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.d.ts +12 -4
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.d.ts +3 -4
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +12 -13
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +13 -12
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +8 -10
- package/vscode/src/vs/editor/contrib/semanticTokens/browser/viewportSemanticTokens.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/semanticTokens/browser/viewportSemanticTokens.js +33 -1
- package/vscode/src/vs/editor/contrib/semanticTokens/common/getSemanticTokens.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +7 -6
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +11 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestAlternatives.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestCommitCharacters.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestInlineCompletions.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestInlineCompletions.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +18 -24
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.d.ts +5 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +16 -19
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +2 -0
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +7 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +3 -5
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +29 -32
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +11 -11
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +4 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.js +10 -5
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +5 -4
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.d.ts +3 -11
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.js +8 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibilityService.js +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -3
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/action.d.ts +1 -1
- package/vscode/src/vs/platform/action/common/action.js +1 -1
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +1 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/actionViewItemService.service.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +4 -2
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +29 -18
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +29 -9
- package/vscode/src/vs/platform/actions/common/actions.js +7 -3
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/commands/common/commands.d.ts +8 -10
- package/vscode/src/vs/platform/commands/common/commands.service.d.ts +3 -3
- package/vscode/src/vs/platform/configuration/common/configuration.service.d.ts +2 -1
- package/vscode/src/vs/platform/configuration/common/configurationModels.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +1 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +8 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +28 -14
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.d.ts +2 -3
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +12 -15
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkey.service.d.ts +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dataChannel/browser/forwardingTelemetryService.js +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +3 -3
- package/vscode/src/vs/platform/dnd/browser/dnd.js +2 -2
- package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +31 -23
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +27 -7
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +31 -11
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/browser/webFileSystemAccess.d.ts +8 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/hover.css +33 -31
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/hoverService.d.ts +10 -10
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/hoverService.js +47 -40
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/hoverWidget.d.ts +10 -12
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/hoverWidget.js +44 -37
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/updatableHoverWidget.d.ts +3 -3
- package/vscode/src/vs/{editor/browser/services/hoverService → platform/hover/browser}/updatableHoverWidget.js +8 -8
- package/vscode/src/vs/platform/instantiation/common/descriptors.d.ts +2 -2
- package/vscode/src/vs/platform/instantiation/common/instantiation.d.ts +8 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/keybinding/common/keybinding.service.d.ts +1 -1
- package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +3 -3
- package/vscode/src/vs/platform/label/common/label.service.d.ts +1 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.js +29 -29
- package/vscode/src/vs/platform/log/common/log.d.ts +42 -42
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/log/common/logService.d.ts +5 -5
- package/vscode/src/vs/platform/markdown/browser/markdownRenderer.d.ts +32 -0
- package/vscode/src/vs/platform/markdown/browser/markdownRenderer.js +61 -0
- package/vscode/src/vs/platform/markdown/browser/markdownRenderer.service.d.ts +17 -0
- package/vscode/src/vs/platform/markdown/browser/markdownRenderer.service.js +6 -0
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.d.ts +4 -3
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.js +3 -2
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +7 -6
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +7 -4
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +34 -19
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +6 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +15 -8
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +4 -4
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.d.ts +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.js +9 -9
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +5 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +14 -25
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeSorter.d.ts +9 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeSorter.js +43 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +7 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +14 -3
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +40 -11
- package/vscode/src/vs/platform/quickinput/common/quickInput.js +1 -0
- package/vscode/src/vs/platform/request/common/request.js +34 -19
- package/vscode/src/vs/platform/secrets/common/secrets.service.d.ts +1 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +33 -17
- package/vscode/src/vs/platform/terminal/common/terminal.js +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +2 -1
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +1 -0
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +3 -2
- package/vscode/src/vs/platform/tunnel/common/tunnel.js +5 -1
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +18 -1
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.d.ts +2 -1
- package/vscode/src/vs/platform/window/common/window.d.ts +1 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspace/common/workspaceTrust.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +37 -15
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +127 -62
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +25 -6
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +6 -6
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +29 -6
- package/vscode/src/vs/workbench/api/common/extHostChatContext.d.ts +22 -0
- package/vscode/src/vs/workbench/api/common/extHostChatContext.js +99 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +26 -10
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +120 -47
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDebugService.d.ts +6 -6
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +4 -3
- package/vscode/src/vs/workbench/api/common/extHostExtensionActivator.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +21 -13
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +7 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +45 -5
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +9 -4
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +136 -79
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +3 -3
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostProfileContentHandler.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostQuickOpen.js +50 -60
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +3 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +52 -3
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTask.d.ts +6 -6
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +12 -8
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +12 -5
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +26 -13
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +31 -11
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +153 -36
- package/vscode/src/vs/workbench/api/common/extHostTypes/diagnostic.d.ts +8 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes/location.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.d.ts +3 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.js +10 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/notebooks.d.ts +13 -13
- package/vscode/src/vs/workbench/api/common/extHostTypes/position.d.ts +5 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.d.ts +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetTextEdit.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/symbolInformation.d.ts +6 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.d.ts +6 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes/workspaceEdit.d.ts +4 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +54 -38
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +32 -21
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +11 -2
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +35 -35
- package/vscode/src/vs/workbench/browser/actions/media/actions.css +4 -4
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/codeeditor.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/web.api.d.ts +5 -5
- package/vscode/src/vs/workbench/common/configuration.d.ts +3 -2
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -73
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +2 -2
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.js +7 -7
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.d.ts +7 -8
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +165 -161
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +5 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextService.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +9 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatActions.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatActions.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +70 -50
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +30 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +4 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +7 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +112 -40
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +143 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +27 -28
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +50 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +43 -12
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatUri.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatUri.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +29 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +19 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +14 -8
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +33 -9
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsConfirmationService.d.ts +49 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsConfirmationService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsConfirmationService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +26 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +39 -10
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +10 -6
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +45 -9
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +37 -16
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +43 -7
- package/vscode/src/vs/workbench/contrib/chat/common/tools/confirmationTool.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +34 -30
- package/vscode/src/vs/workbench/contrib/chat/common/tools/runSubagentTool.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/runSubagentTool.js +203 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolHelpers.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolHelpers.js +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +3 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +37 -33
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.js +16 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/randomService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/randomService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.d.ts +38 -4
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +8 -9
- package/vscode/src/vs/workbench/contrib/interactive/browser/interactiveDocumentService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +42 -8
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +18 -7
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +7 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +5 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSourceFactory.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +8 -8
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookKernelService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookLoggingService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/scm/common/artifact.d.ts +37 -0
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/scm.d.ts +171 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.js +35 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +13 -3
- package/vscode/src/vs/workbench/contrib/search/common/searchHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +7 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +43 -44
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +69 -6
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.js +2 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalExtensionPoints.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/constants.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +13 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/testingDecorations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/timeline/common/timeline.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/timeline/common/timeline.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +3 -8
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +6 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +137 -34
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.d.ts +36 -0
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/chat/common/chatContext.d.ts +19 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +2 -1
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +35 -19
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +2 -2
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +5 -4
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.js +5 -4
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +5 -5
- package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +6 -6
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +87 -87
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/inlineCompletions/common/inlineCompletionsUnification.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/languageStatus/common/languageStatusService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +3 -2
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +7 -7
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.d.ts +9 -0
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +4 -4
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +1 -1
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyHistory.service.d.ts +6 -6
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceIdentityService.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +88 -18
- package/vscode-dts/vscode.proposed.chatContextProvider.d.ts +58 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +27 -4
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +24 -2
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +103 -21
- package/vscode-dts/{vscode.proposed.idToken.d.ts → vscode.proposed.contribSourceControlArtifactGroupMenu.d.ts} +2 -11
- package/vscode-dts/{vscode.proposed.contribSecondarySidebar.d.ts → vscode.proposed.contribSourceControlArtifactMenu.d.ts} +2 -1
- package/vscode-dts/vscode.proposed.d.ts +10 -3
- package/vscode-dts/vscode.proposed.dataChannels.d.ts +1 -1
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +32 -21
- package/vscode-dts/vscode.proposed.languageModelProxy.d.ts +31 -0
- package/vscode-dts/vscode.proposed.languageModelThinkingPart.d.ts +62 -0
- package/vscode-dts/vscode.proposed.markdownAlertSyntax.d.ts +29 -0
- package/vscode-dts/vscode.proposed.mcpToolDefinitions.d.ts +89 -0
- package/vscode-dts/vscode.proposed.notebookKernelSource.d.ts +1 -1
- package/vscode-dts/vscode.proposed.notebookVariableProvider.d.ts +1 -1
- package/vscode-dts/vscode.proposed.quickInputButtonLocation.d.ts +14 -1
- package/vscode-dts/vscode.proposed.quickPickItemResource.d.ts +21 -0
- package/vscode-dts/vscode.proposed.quickPickPrompt.d.ts +25 -0
- package/vscode-dts/vscode.proposed.resolvers.d.ts +4 -4
- package/vscode-dts/vscode.proposed.scmArtifactProvider.d.ts +32 -0
- package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +3 -2
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +142 -63
- package/vscode-dts/vscode.proposed.textSearchProvider2.d.ts +3 -3
- package/vscode-dts/vscode.proposed.timeline.d.ts +1 -1
- package/vscode-dts/vscode.proposed.treeItemMarkdownLabel.d.ts +23 -0
- package/vscode-dts/vscode.proposed.tunnels.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +0 -29
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +0 -97
- package/vscode/src/vs/workbench/contrib/contextmenu/browser/contextmenu.contribution.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/contextmenu/browser/contextmenu.contribution.js +0 -23
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +0 -23
- package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +0 -102
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +0 -164
|
@@ -37,7 +37,7 @@ import { IsWebContext } from '../../../../platform/contextkey/common/contextkeys
|
|
|
37
37
|
|
|
38
38
|
MenuRegistry.appendMenuItem(MenuId.EditorContext, {
|
|
39
39
|
submenu: MenuId.EditorContextPeek,
|
|
40
|
-
title: ( localize(
|
|
40
|
+
title: ( localize(1128, "Peek")),
|
|
41
41
|
group: 'navigation',
|
|
42
42
|
order: 100
|
|
43
43
|
});
|
|
@@ -198,13 +198,13 @@ class DefinitionAction extends SymbolNavigationAction {
|
|
|
198
198
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
199
199
|
return (new ReferencesModel(
|
|
200
200
|
await getDefinitionsAtPosition(languageFeaturesService.definitionProvider, model, position, false, token),
|
|
201
|
-
localize(
|
|
201
|
+
localize(1129, 'Definitions')
|
|
202
202
|
));
|
|
203
203
|
}
|
|
204
204
|
_getNoResultFoundMessage(info) {
|
|
205
205
|
return info && info.word
|
|
206
|
-
? ( localize(
|
|
207
|
-
: ( localize(
|
|
206
|
+
? ( localize(1130, "No definition found for '{0}'", info.word))
|
|
207
|
+
: ( localize(1131, "No definition found"));
|
|
208
208
|
}
|
|
209
209
|
_getAlternativeCommand(editor) {
|
|
210
210
|
return editor.getOption(EditorOption.gotoLocation).alternativeDefinitionCommand;
|
|
@@ -223,8 +223,8 @@ registerAction2(class GoToDefinitionAction extends DefinitionAction {
|
|
|
223
223
|
}, {
|
|
224
224
|
id: GoToDefinitionAction.id,
|
|
225
225
|
title: {
|
|
226
|
-
...( localize2(
|
|
227
|
-
mnemonicTitle: ( localize(
|
|
226
|
+
...( localize2(1132, "Go to Definition")),
|
|
227
|
+
mnemonicTitle: ( localize(1133, "Go to &&Definition")),
|
|
228
228
|
},
|
|
229
229
|
precondition: EditorContextKeys.hasDefinitionProvider,
|
|
230
230
|
keybinding: [{
|
|
@@ -259,7 +259,7 @@ registerAction2(class OpenDefinitionToSideAction extends DefinitionAction {
|
|
|
259
259
|
muteMessage: false
|
|
260
260
|
}, {
|
|
261
261
|
id: OpenDefinitionToSideAction.id,
|
|
262
|
-
title: ( localize2(
|
|
262
|
+
title: ( localize2(1134, "Open Definition to the Side")),
|
|
263
263
|
precondition: ( ContextKeyExpr.and(EditorContextKeys.hasDefinitionProvider, ( EditorContextKeys.isInEmbeddedEditor.toNegated()))),
|
|
264
264
|
keybinding: [{
|
|
265
265
|
when: EditorContextKeys.editorTextFocus,
|
|
@@ -283,7 +283,7 @@ registerAction2(class PeekDefinitionAction extends DefinitionAction {
|
|
|
283
283
|
muteMessage: false
|
|
284
284
|
}, {
|
|
285
285
|
id: PeekDefinitionAction.id,
|
|
286
|
-
title: ( localize2(
|
|
286
|
+
title: ( localize2(1135, "Peek Definition")),
|
|
287
287
|
precondition: ( ContextKeyExpr.and(
|
|
288
288
|
EditorContextKeys.hasDefinitionProvider,
|
|
289
289
|
PeekContext.notInPeekEditor,
|
|
@@ -308,13 +308,13 @@ class DeclarationAction extends SymbolNavigationAction {
|
|
|
308
308
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
309
309
|
return (new ReferencesModel(
|
|
310
310
|
await getDeclarationsAtPosition(languageFeaturesService.declarationProvider, model, position, false, token),
|
|
311
|
-
localize(
|
|
311
|
+
localize(1136, 'Declarations')
|
|
312
312
|
));
|
|
313
313
|
}
|
|
314
314
|
_getNoResultFoundMessage(info) {
|
|
315
315
|
return info && info.word
|
|
316
|
-
? ( localize(
|
|
317
|
-
: ( localize(
|
|
316
|
+
? ( localize(1137, "No declaration found for '{0}'", info.word))
|
|
317
|
+
: ( localize(1138, "No declaration found"));
|
|
318
318
|
}
|
|
319
319
|
_getAlternativeCommand(editor) {
|
|
320
320
|
return editor.getOption(EditorOption.gotoLocation).alternativeDeclarationCommand;
|
|
@@ -333,8 +333,8 @@ registerAction2(class GoToDeclarationAction extends DeclarationAction {
|
|
|
333
333
|
}, {
|
|
334
334
|
id: GoToDeclarationAction.id,
|
|
335
335
|
title: {
|
|
336
|
-
...( localize2(
|
|
337
|
-
mnemonicTitle: ( localize(
|
|
336
|
+
...( localize2(1139, "Go to Declaration")),
|
|
337
|
+
mnemonicTitle: ( localize(1140, "Go to &&Declaration")),
|
|
338
338
|
},
|
|
339
339
|
precondition: ( ContextKeyExpr.and(EditorContextKeys.hasDeclarationProvider, ( EditorContextKeys.isInEmbeddedEditor.toNegated()))),
|
|
340
340
|
menu: [{
|
|
@@ -351,8 +351,8 @@ registerAction2(class GoToDeclarationAction extends DeclarationAction {
|
|
|
351
351
|
}
|
|
352
352
|
_getNoResultFoundMessage(info) {
|
|
353
353
|
return info && info.word
|
|
354
|
-
? ( localize(
|
|
355
|
-
: ( localize(
|
|
354
|
+
? ( localize(1137, "No declaration found for '{0}'", info.word))
|
|
355
|
+
: ( localize(1138, "No declaration found"));
|
|
356
356
|
}
|
|
357
357
|
});
|
|
358
358
|
registerAction2(class PeekDeclarationAction extends DeclarationAction {
|
|
@@ -363,7 +363,7 @@ registerAction2(class PeekDeclarationAction extends DeclarationAction {
|
|
|
363
363
|
muteMessage: false
|
|
364
364
|
}, {
|
|
365
365
|
id: 'editor.action.peekDeclaration',
|
|
366
|
-
title: ( localize2(
|
|
366
|
+
title: ( localize2(1141, "Peek Declaration")),
|
|
367
367
|
precondition: ( ContextKeyExpr.and(
|
|
368
368
|
EditorContextKeys.hasDeclarationProvider,
|
|
369
369
|
PeekContext.notInPeekEditor,
|
|
@@ -381,13 +381,13 @@ class TypeDefinitionAction extends SymbolNavigationAction {
|
|
|
381
381
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
382
382
|
return (new ReferencesModel(
|
|
383
383
|
await getTypeDefinitionsAtPosition(languageFeaturesService.typeDefinitionProvider, model, position, false, token),
|
|
384
|
-
localize(
|
|
384
|
+
localize(1142, 'Type Definitions')
|
|
385
385
|
));
|
|
386
386
|
}
|
|
387
387
|
_getNoResultFoundMessage(info) {
|
|
388
388
|
return info && info.word
|
|
389
|
-
? ( localize(
|
|
390
|
-
: ( localize(
|
|
389
|
+
? ( localize(1143, "No type definition found for '{0}'", info.word))
|
|
390
|
+
: ( localize(1144, "No type definition found"));
|
|
391
391
|
}
|
|
392
392
|
_getAlternativeCommand(editor) {
|
|
393
393
|
return editor.getOption(EditorOption.gotoLocation).alternativeTypeDefinitionCommand;
|
|
@@ -406,8 +406,8 @@ registerAction2(class GoToTypeDefinitionAction extends TypeDefinitionAction {
|
|
|
406
406
|
}, {
|
|
407
407
|
id: GoToTypeDefinitionAction.ID,
|
|
408
408
|
title: {
|
|
409
|
-
...( localize2(
|
|
410
|
-
mnemonicTitle: ( localize(
|
|
409
|
+
...( localize2(1145, "Go to Type Definition")),
|
|
410
|
+
mnemonicTitle: ( localize(1146, "Go to &&Type Definition")),
|
|
411
411
|
},
|
|
412
412
|
precondition: EditorContextKeys.hasTypeDefinitionProvider,
|
|
413
413
|
keybinding: {
|
|
@@ -437,7 +437,7 @@ registerAction2(class PeekTypeDefinitionAction extends TypeDefinitionAction {
|
|
|
437
437
|
muteMessage: false
|
|
438
438
|
}, {
|
|
439
439
|
id: PeekTypeDefinitionAction.ID,
|
|
440
|
-
title: ( localize2(
|
|
440
|
+
title: ( localize2(1147, "Peek Type Definition")),
|
|
441
441
|
precondition: ( ContextKeyExpr.and(
|
|
442
442
|
EditorContextKeys.hasTypeDefinitionProvider,
|
|
443
443
|
PeekContext.notInPeekEditor,
|
|
@@ -455,13 +455,13 @@ class ImplementationAction extends SymbolNavigationAction {
|
|
|
455
455
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
456
456
|
return (new ReferencesModel(
|
|
457
457
|
await getImplementationsAtPosition(languageFeaturesService.implementationProvider, model, position, false, token),
|
|
458
|
-
localize(
|
|
458
|
+
localize(1148, 'Implementations')
|
|
459
459
|
));
|
|
460
460
|
}
|
|
461
461
|
_getNoResultFoundMessage(info) {
|
|
462
462
|
return info && info.word
|
|
463
|
-
? ( localize(
|
|
464
|
-
: ( localize(
|
|
463
|
+
? ( localize(1149, "No implementation found for '{0}'", info.word))
|
|
464
|
+
: ( localize(1150, "No implementation found"));
|
|
465
465
|
}
|
|
466
466
|
_getAlternativeCommand(editor) {
|
|
467
467
|
return editor.getOption(EditorOption.gotoLocation).alternativeImplementationCommand;
|
|
@@ -480,8 +480,8 @@ registerAction2(class GoToImplementationAction extends ImplementationAction {
|
|
|
480
480
|
}, {
|
|
481
481
|
id: GoToImplementationAction.ID,
|
|
482
482
|
title: {
|
|
483
|
-
...( localize2(
|
|
484
|
-
mnemonicTitle: ( localize(
|
|
483
|
+
...( localize2(1151, "Go to Implementations")),
|
|
484
|
+
mnemonicTitle: ( localize(1152, "Go to &&Implementations")),
|
|
485
485
|
},
|
|
486
486
|
precondition: EditorContextKeys.hasImplementationProvider,
|
|
487
487
|
keybinding: {
|
|
@@ -511,7 +511,7 @@ registerAction2(class PeekImplementationAction extends ImplementationAction {
|
|
|
511
511
|
muteMessage: false
|
|
512
512
|
}, {
|
|
513
513
|
id: PeekImplementationAction.ID,
|
|
514
|
-
title: ( localize2(
|
|
514
|
+
title: ( localize2(1153, "Peek Implementations")),
|
|
515
515
|
precondition: ( ContextKeyExpr.and(
|
|
516
516
|
EditorContextKeys.hasImplementationProvider,
|
|
517
517
|
PeekContext.notInPeekEditor,
|
|
@@ -533,8 +533,8 @@ registerAction2(class PeekImplementationAction extends ImplementationAction {
|
|
|
533
533
|
class ReferencesAction extends SymbolNavigationAction {
|
|
534
534
|
_getNoResultFoundMessage(info) {
|
|
535
535
|
return info
|
|
536
|
-
? ( localize(
|
|
537
|
-
: ( localize(
|
|
536
|
+
? ( localize(1154, "No references found for '{0}'", info.word))
|
|
537
|
+
: ( localize(1155, "No references found"));
|
|
538
538
|
}
|
|
539
539
|
_getAlternativeCommand(editor) {
|
|
540
540
|
return editor.getOption(EditorOption.gotoLocation).alternativeReferenceCommand;
|
|
@@ -552,8 +552,8 @@ registerAction2(class GoToReferencesAction extends ReferencesAction {
|
|
|
552
552
|
}, {
|
|
553
553
|
id: 'editor.action.goToReferences',
|
|
554
554
|
title: {
|
|
555
|
-
...( localize2(
|
|
556
|
-
mnemonicTitle: ( localize(
|
|
555
|
+
...( localize2(1156, "Go to References")),
|
|
556
|
+
mnemonicTitle: ( localize(1157, "Go to &&References")),
|
|
557
557
|
},
|
|
558
558
|
precondition: ( ContextKeyExpr.and(
|
|
559
559
|
EditorContextKeys.hasReferenceProvider,
|
|
@@ -580,7 +580,7 @@ registerAction2(class GoToReferencesAction extends ReferencesAction {
|
|
|
580
580
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
581
581
|
return (new ReferencesModel(
|
|
582
582
|
await getReferencesAtPosition(languageFeaturesService.referenceProvider, model, position, true, false, token),
|
|
583
|
-
localize(
|
|
583
|
+
localize(1158, 'References')
|
|
584
584
|
));
|
|
585
585
|
}
|
|
586
586
|
});
|
|
@@ -592,7 +592,7 @@ registerAction2(class PeekReferencesAction extends ReferencesAction {
|
|
|
592
592
|
muteMessage: false
|
|
593
593
|
}, {
|
|
594
594
|
id: 'editor.action.referenceSearch.trigger',
|
|
595
|
-
title: ( localize2(
|
|
595
|
+
title: ( localize2(1159, "Peek References")),
|
|
596
596
|
precondition: ( ContextKeyExpr.and(
|
|
597
597
|
EditorContextKeys.hasReferenceProvider,
|
|
598
598
|
PeekContext.notInPeekEditor,
|
|
@@ -608,7 +608,7 @@ registerAction2(class PeekReferencesAction extends ReferencesAction {
|
|
|
608
608
|
async _getLocationModel(languageFeaturesService, model, position, token) {
|
|
609
609
|
return (new ReferencesModel(
|
|
610
610
|
await getReferencesAtPosition(languageFeaturesService.referenceProvider, model, position, false, false, token),
|
|
611
|
-
localize(
|
|
611
|
+
localize(1158, 'References')
|
|
612
612
|
));
|
|
613
613
|
}
|
|
614
614
|
});
|
|
@@ -616,17 +616,17 @@ class GenericGoToLocationAction extends SymbolNavigationAction {
|
|
|
616
616
|
constructor(config, _references, _gotoMultipleBehaviour) {
|
|
617
617
|
super(config, {
|
|
618
618
|
id: 'editor.action.goToLocation',
|
|
619
|
-
title: ( localize2(
|
|
619
|
+
title: ( localize2(1160, "Go to Any Symbol")),
|
|
620
620
|
precondition: ( ContextKeyExpr.and(PeekContext.notInPeekEditor, ( EditorContextKeys.isInEmbeddedEditor.toNegated()))),
|
|
621
621
|
});
|
|
622
622
|
this._references = _references;
|
|
623
623
|
this._gotoMultipleBehaviour = _gotoMultipleBehaviour;
|
|
624
624
|
}
|
|
625
625
|
async _getLocationModel(languageFeaturesService, _model, _position, _token) {
|
|
626
|
-
return (new ReferencesModel(this._references, localize(
|
|
626
|
+
return (new ReferencesModel(this._references, localize(1161, 'Locations')));
|
|
627
627
|
}
|
|
628
628
|
_getNoResultFoundMessage(info) {
|
|
629
|
-
return info && ( localize(
|
|
629
|
+
return info && ( localize(1162, "No results for '{0}'", info.word)) || '';
|
|
630
630
|
}
|
|
631
631
|
_getGoToPreference(editor) {
|
|
632
632
|
return this._gotoMultipleBehaviour ?? editor.getOption(EditorOption.gotoLocation).multipleReferences;
|
|
@@ -703,7 +703,7 @@ CommandsRegistry.registerCommand({
|
|
|
703
703
|
if (!controller) {
|
|
704
704
|
return undefined;
|
|
705
705
|
}
|
|
706
|
-
const references = createCancelablePromise(token => getReferencesAtPosition(languageFeaturesService.referenceProvider, control.getModel(), Position.lift(position), false, false, token).then(references => ( new ReferencesModel(references, ( localize(
|
|
706
|
+
const references = createCancelablePromise(token => getReferencesAtPosition(languageFeaturesService.referenceProvider, control.getModel(), Position.lift(position), false, false, token).then(references => ( new ReferencesModel(references, ( localize(1158, 'References'))))));
|
|
707
707
|
const range = ( new Range(position.lineNumber, position.column, position.lineNumber, position.column));
|
|
708
708
|
return Promise.resolve(controller.toggleWidget(range, references, false));
|
|
709
709
|
});
|
|
@@ -132,7 +132,7 @@ let GotoDefinitionAtPositionEditorContribution = class GotoDefinitionAtPositionE
|
|
|
132
132
|
combinedRange = Range.plusRange(combinedRange, originSelectionRange);
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
|
-
this.addDecoration(combinedRange, ( new MarkdownString()).appendText(( localize(
|
|
135
|
+
this.addDecoration(combinedRange, ( new MarkdownString()).appendText(( localize(1163, "Click to show {0} definitions.", results.length))));
|
|
136
136
|
}
|
|
137
137
|
else {
|
|
138
138
|
const result = results[0];
|
|
@@ -219,7 +219,7 @@ let GotoDefinitionAtPositionEditorContribution = class GotoDefinitionAtPositionE
|
|
|
219
219
|
}
|
|
220
220
|
return getDefinitionsAtPosition(this.languageFeaturesService.definitionProvider, model, position, false, token);
|
|
221
221
|
}
|
|
222
|
-
gotoDefinition(position, openToSide) {
|
|
222
|
+
async gotoDefinition(position, openToSide) {
|
|
223
223
|
this.editor.setPosition(position);
|
|
224
224
|
return this.editor.invokeWithinContext((accessor) => {
|
|
225
225
|
const canPeek = !openToSide && this.editor.getOption(EditorOption.definitionLinkOpensInPeek) && !this.isInPeekEditor(accessor);
|
|
@@ -30,7 +30,7 @@ import { InputFocusedContext } from '../../../../../platform/contextkey/common/c
|
|
|
30
30
|
|
|
31
31
|
var ReferencesController_1;
|
|
32
32
|
const ctxReferenceSearchVisible = ( new RawContextKey('referenceSearchVisible', false, ( localize(
|
|
33
|
-
|
|
33
|
+
1164,
|
|
34
34
|
"Whether reference peek is visible, like 'Peek References' or 'Peek Definition'"
|
|
35
35
|
))));
|
|
36
36
|
let ReferencesController = class ReferencesController {
|
|
@@ -80,7 +80,7 @@ let ReferencesController = class ReferencesController {
|
|
|
80
80
|
const storageKey = 'peekViewLayout';
|
|
81
81
|
const data = LayoutData.fromJSON(this._storageService.get(storageKey, StorageScope.PROFILE, '{}'));
|
|
82
82
|
this._widget = this._instantiationService.createInstance(ReferenceWidget, this._editor, this._defaultTreeKeyboardSupport, data);
|
|
83
|
-
this._widget.setTitle(( localize(
|
|
83
|
+
this._widget.setTitle(( localize(1165, "Loading...")));
|
|
84
84
|
this._widget.show(range);
|
|
85
85
|
this._disposables.add(this._widget.onDidClose(() => {
|
|
86
86
|
modelPromise.cancel();
|
|
@@ -130,7 +130,7 @@ let ReferencesController = class ReferencesController {
|
|
|
130
130
|
return this._widget.setModel(this._model).then(() => {
|
|
131
131
|
if (this._widget && this._model && this._editor.hasModel()) {
|
|
132
132
|
if (!this._model.isEmpty) {
|
|
133
|
-
this._widget.setMetaTitle(( localize(
|
|
133
|
+
this._widget.setMetaTitle(( localize(1166, "{0} ({1})", this._model.title, this._model.references.length)));
|
|
134
134
|
}
|
|
135
135
|
else {
|
|
136
136
|
this._widget.setMetaTitle('');
|
|
@@ -98,10 +98,10 @@ let FileReferencesTemplate = class FileReferencesTemplate extends Disposable {
|
|
|
98
98
|
const len = element.children.length;
|
|
99
99
|
this.badge.setCount(len);
|
|
100
100
|
if (len > 1) {
|
|
101
|
-
this.badge.setTitleFormat(( localize(
|
|
101
|
+
this.badge.setTitleFormat(( localize(1167, "{0} references", len)));
|
|
102
102
|
}
|
|
103
103
|
else {
|
|
104
|
-
this.badge.setTitleFormat(( localize(
|
|
104
|
+
this.badge.setTitleFormat(( localize(1168, "{0} reference", len)));
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
};
|
|
@@ -168,7 +168,7 @@ class OneReferenceRenderer {
|
|
|
168
168
|
}
|
|
169
169
|
class AccessibilityProvider {
|
|
170
170
|
getWidgetAriaLabel() {
|
|
171
|
-
return localize(
|
|
171
|
+
return localize(1169, "References");
|
|
172
172
|
}
|
|
173
173
|
getAriaLabel(element) {
|
|
174
174
|
return element.ariaMessage;
|
|
@@ -54,7 +54,8 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
|
|
57
|
-
|
|
57
|
+
color: var(--vscode-peekViewResult-fileForeground) !important;
|
|
58
|
+
background-color: var(--vscode-peekViewResult-matchHighlightBackground) !important;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.monaco-editor .reference-zone-widget .preview .reference-decoration {
|
|
@@ -60,8 +60,8 @@ export declare class ReferenceWidget extends PeekViewWidget {
|
|
|
60
60
|
protected _fillBody(containerElement: HTMLElement): void;
|
|
61
61
|
protected _onWidth(width: number): void;
|
|
62
62
|
protected _doLayoutBody(heightInPixel: number, widthInPixel: number): void;
|
|
63
|
-
setSelection(selection: OneReference): Promise<
|
|
64
|
-
setModel(newModel: ReferencesModel | undefined): Promise<
|
|
63
|
+
setSelection(selection: OneReference): Promise<unknown>;
|
|
64
|
+
setModel(newModel: ReferencesModel | undefined): Promise<unknown>;
|
|
65
65
|
private _onNewModel;
|
|
66
66
|
private _getFocusedReference;
|
|
67
67
|
revealReference(reference: OneReference): Promise<void>;
|
|
@@ -290,7 +290,7 @@ let ReferenceWidget = class ReferenceWidget extends PeekViewWidget {
|
|
|
290
290
|
};
|
|
291
291
|
this._preview = this._instantiationService.createInstance(EmbeddedCodeEditorWidget, this._previewContainer, options, {}, this.editor);
|
|
292
292
|
hide(this._previewContainer);
|
|
293
|
-
this._previewNotAvailableMessage = this._instantiationService.createInstance(TextModel, ( localize(
|
|
293
|
+
this._previewNotAvailableMessage = this._instantiationService.createInstance(TextModel, ( localize(1170, "no preview available")), PLAINTEXT_LANGUAGE_ID, TextModel.DEFAULT_CREATION_OPTIONS, null);
|
|
294
294
|
this._treeContainer = append(containerElement, $('div.ref-tree.inline'));
|
|
295
295
|
const treeOptions = {
|
|
296
296
|
keyboardSupport: this._defaultTreeKeyboardSupport,
|
|
@@ -397,7 +397,7 @@ let ReferenceWidget = class ReferenceWidget extends PeekViewWidget {
|
|
|
397
397
|
}
|
|
398
398
|
if (this._model.isEmpty) {
|
|
399
399
|
this.setTitle('');
|
|
400
|
-
this._messageContainer.innerText = ( localize(
|
|
400
|
+
this._messageContainer.innerText = ( localize(1171, "No results"));
|
|
401
401
|
show(this._messageContainer);
|
|
402
402
|
return Promise.resolve(undefined);
|
|
403
403
|
}
|
|
@@ -452,7 +452,7 @@ let ReferenceWidget = class ReferenceWidget extends PeekViewWidget {
|
|
|
452
452
|
this.setTitle(basenameOrAuthority(reference.uri), this._uriLabel.getUriLabel(dirname(reference.uri)));
|
|
453
453
|
}
|
|
454
454
|
else {
|
|
455
|
-
this.setTitle(( localize(
|
|
455
|
+
this.setTitle(( localize(1172, "References")));
|
|
456
456
|
}
|
|
457
457
|
const promise = this._textModelResolverService.createModelReference(reference.uri);
|
|
458
458
|
if (this._tree.getInput() === reference.parent) {
|
|
@@ -32,7 +32,7 @@ class OneReference {
|
|
|
32
32
|
const preview = this.parent.getPreview(this)?.preview(this.range);
|
|
33
33
|
if (!preview) {
|
|
34
34
|
return localize(
|
|
35
|
-
|
|
35
|
+
1173,
|
|
36
36
|
"in {0} on line {1} at column {2}",
|
|
37
37
|
basename(this.uri),
|
|
38
38
|
this.range.startLineNumber,
|
|
@@ -41,7 +41,7 @@ class OneReference {
|
|
|
41
41
|
}
|
|
42
42
|
else {
|
|
43
43
|
return localize(
|
|
44
|
-
|
|
44
|
+
1174,
|
|
45
45
|
"{0} in {1} on line {2} at column {3}",
|
|
46
46
|
preview.value,
|
|
47
47
|
basename(this.uri),
|
|
@@ -94,7 +94,7 @@ class FileReferences {
|
|
|
94
94
|
const len = this.children.length;
|
|
95
95
|
if (len === 1) {
|
|
96
96
|
return localize(
|
|
97
|
-
|
|
97
|
+
1175,
|
|
98
98
|
"1 symbol in {0}, full path {1}",
|
|
99
99
|
basename(this.uri),
|
|
100
100
|
this.uri.fsPath
|
|
@@ -102,7 +102,7 @@ class FileReferences {
|
|
|
102
102
|
}
|
|
103
103
|
else {
|
|
104
104
|
return localize(
|
|
105
|
-
|
|
105
|
+
1176,
|
|
106
106
|
"{0} symbols in {1}, full path {2}",
|
|
107
107
|
len,
|
|
108
108
|
basename(this.uri),
|
|
@@ -173,14 +173,14 @@ class ReferencesModel {
|
|
|
173
173
|
}
|
|
174
174
|
get ariaMessage() {
|
|
175
175
|
if (this.isEmpty) {
|
|
176
|
-
return localize(
|
|
176
|
+
return localize(1177, "No results found");
|
|
177
177
|
}
|
|
178
178
|
else if (this.references.length === 1) {
|
|
179
|
-
return localize(
|
|
179
|
+
return localize(1178, "Found 1 symbol in {0}", this.references[0].uri.fsPath);
|
|
180
180
|
}
|
|
181
181
|
else if (this.groups.length === 1) {
|
|
182
182
|
return localize(
|
|
183
|
-
|
|
183
|
+
1179,
|
|
184
184
|
"Found {0} symbols in {1}",
|
|
185
185
|
this.references.length,
|
|
186
186
|
this.groups[0].uri.fsPath
|
|
@@ -188,7 +188,7 @@ class ReferencesModel {
|
|
|
188
188
|
}
|
|
189
189
|
else {
|
|
190
190
|
return localize(
|
|
191
|
-
|
|
191
|
+
1180,
|
|
192
192
|
"Found {0} symbols in {1} files",
|
|
193
193
|
this.references.length,
|
|
194
194
|
this.groups.length
|
|
@@ -18,7 +18,7 @@ import { INotificationService } from '../../../../platform/notification/common/n
|
|
|
18
18
|
import { ISymbolNavigationService } from './symbolNavigation.service.js';
|
|
19
19
|
|
|
20
20
|
const ctxHasSymbols = ( new RawContextKey('hasSymbols', false, ( localize(
|
|
21
|
-
|
|
21
|
+
1181,
|
|
22
22
|
"Whether there are symbol locations that can be navigated via keyboard-only."
|
|
23
23
|
))));
|
|
24
24
|
let SymbolNavigationService = class SymbolNavigationService {
|
|
@@ -103,14 +103,14 @@ let SymbolNavigationService = class SymbolNavigationService {
|
|
|
103
103
|
const kb = this._keybindingService.lookupKeybinding('editor.gotoNextSymbolFromResult');
|
|
104
104
|
const message = kb
|
|
105
105
|
? ( localize(
|
|
106
|
-
|
|
106
|
+
1182,
|
|
107
107
|
"Symbol {0} of {1}, {2} for next",
|
|
108
108
|
this._currentIdx + 1,
|
|
109
109
|
this._currentModel.references.length,
|
|
110
110
|
kb.getLabel()
|
|
111
111
|
))
|
|
112
112
|
: ( localize(
|
|
113
|
-
|
|
113
|
+
1183,
|
|
114
114
|
"Symbol {0} of {1}",
|
|
115
115
|
this._currentIdx + 1,
|
|
116
116
|
this._currentModel.references.length
|
|
@@ -19,7 +19,7 @@ class DebugEditorGpuRendererAction extends EditorAction {
|
|
|
19
19
|
constructor() {
|
|
20
20
|
super({
|
|
21
21
|
id: 'editor.action.debugEditorGpuRenderer',
|
|
22
|
-
label: ( localize2(
|
|
22
|
+
label: ( localize2(1184, "Developer: Debug Editor GPU Renderer")),
|
|
23
23
|
precondition: ContextKeyExpr.true(),
|
|
24
24
|
});
|
|
25
25
|
}
|
|
@@ -28,15 +28,15 @@ class DebugEditorGpuRendererAction extends EditorAction {
|
|
|
28
28
|
const quickInputService = accessor.get(IQuickInputService);
|
|
29
29
|
const choice = await quickInputService.pick([
|
|
30
30
|
{
|
|
31
|
-
label: ( localize(
|
|
31
|
+
label: ( localize(1185, "Log Texture Atlas Stats")),
|
|
32
32
|
id: 'logTextureAtlasStats',
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
label: ( localize(
|
|
35
|
+
label: ( localize(1186, "Save Texture Atlas")),
|
|
36
36
|
id: 'saveTextureAtlas',
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
label: ( localize(
|
|
39
|
+
label: ( localize(1187, "Draw Glyph")),
|
|
40
40
|
id: 'drawGlyph',
|
|
41
41
|
},
|
|
42
42
|
], { canPickMany: false });
|
|
@@ -8,6 +8,7 @@ import { Range } from "../../../common/core/range.js";
|
|
|
8
8
|
import { ContentHoverResult } from "./contentHoverTypes.js";
|
|
9
9
|
import { HoverVerbosityAction } from "../../../common/languages.js";
|
|
10
10
|
import { IHoverService } from "../../../../platform/hover/browser/hover.service.js";
|
|
11
|
+
import { IClipboardService } from "../../../../platform/clipboard/common/clipboardService.service.js";
|
|
11
12
|
export declare class RenderedContentHover extends Disposable {
|
|
12
13
|
closestMouseDistance: number | undefined;
|
|
13
14
|
initialMousePosX: number | undefined;
|
|
@@ -18,7 +19,7 @@ export declare class RenderedContentHover extends Disposable {
|
|
|
18
19
|
readonly source: HoverStartSource;
|
|
19
20
|
readonly shouldAppearBeforeContent: boolean;
|
|
20
21
|
private readonly _renderedHoverParts;
|
|
21
|
-
constructor(editor: ICodeEditor, hoverResult: ContentHoverResult, participants: IEditorHoverParticipant<IHoverPart>[], context: IEditorHoverContext, keybindingService: IKeybindingService, hoverService: IHoverService);
|
|
22
|
+
constructor(editor: ICodeEditor, hoverResult: ContentHoverResult, participants: IEditorHoverParticipant<IHoverPart>[], context: IEditorHoverContext, keybindingService: IKeybindingService, hoverService: IHoverService, clipboardService: IClipboardService);
|
|
22
23
|
get domNode(): DocumentFragment;
|
|
23
24
|
get domNodeHasChildren(): boolean;
|
|
24
25
|
get focusedHoverPartIndex(): number;
|
|
@@ -3,24 +3,35 @@ import { __decorate, __param } from '../../../../../../../external/tslib/tslib.e
|
|
|
3
3
|
import { RenderedHoverParts } from './hoverTypes.js';
|
|
4
4
|
import { Disposable, toDisposable, DisposableStore } from '../../../../base/common/lifecycle.js';
|
|
5
5
|
import { EditorHoverStatusBar } from './contentHoverStatusBar.js';
|
|
6
|
+
import { HoverCopyButton } from './hoverCopyButton.js';
|
|
6
7
|
import { IKeybindingService } from '../../../../platform/keybinding/common/keybinding.service.js';
|
|
7
8
|
import { ModelDecorationOptions } from '../../../common/model/textModel.js';
|
|
8
9
|
import { Position } from '../../../common/core/position.js';
|
|
9
10
|
import { Range } from '../../../common/core/range.js';
|
|
10
|
-
import { addDisposableListener, EventType } from '../../../../base/browser/dom.js';
|
|
11
|
+
import { createDocumentFragment, addDisposableListener, EventType } from '../../../../base/browser/dom.js';
|
|
11
12
|
import { MarkdownHoverParticipant } from './markdownHoverParticipant.js';
|
|
12
13
|
import { HoverColorPickerParticipant } from '../../colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js';
|
|
13
14
|
import { localize } from '../../../../nls.js';
|
|
14
15
|
import { InlayHintsHover } from '../../inlayHints/browser/inlayHintsHover.js';
|
|
15
16
|
import { BugIndicatingError } from '../../../../base/common/errors.js';
|
|
16
17
|
import { IHoverService } from '../../../../platform/hover/browser/hover.service.js';
|
|
18
|
+
import { IClipboardService } from '../../../../platform/clipboard/common/clipboardService.service.js';
|
|
19
|
+
import { MarkerHover } from './markerHoverParticipant.js';
|
|
17
20
|
|
|
18
21
|
var RenderedContentHover_1, RenderedContentHoverParts_1;
|
|
19
22
|
let RenderedContentHover = RenderedContentHover_1 = class RenderedContentHover extends Disposable {
|
|
20
|
-
constructor(editor, hoverResult, participants, context, keybindingService, hoverService) {
|
|
23
|
+
constructor(editor, hoverResult, participants, context, keybindingService, hoverService, clipboardService) {
|
|
21
24
|
super();
|
|
22
25
|
const parts = hoverResult.hoverParts;
|
|
23
|
-
this._renderedHoverParts = this._register(( new RenderedContentHoverParts(
|
|
26
|
+
this._renderedHoverParts = this._register(( new RenderedContentHoverParts(
|
|
27
|
+
editor,
|
|
28
|
+
participants,
|
|
29
|
+
parts,
|
|
30
|
+
context,
|
|
31
|
+
keybindingService,
|
|
32
|
+
hoverService,
|
|
33
|
+
clipboardService
|
|
34
|
+
)));
|
|
24
35
|
const contentHoverComputerOptions = hoverResult.options;
|
|
25
36
|
const anchor = contentHoverComputerOptions.anchor;
|
|
26
37
|
const { showAtPosition, showAtSecondaryPosition } = RenderedContentHover_1.computeHoverPositions(editor, anchor.range, parts);
|
|
@@ -108,7 +119,8 @@ let RenderedContentHover = RenderedContentHover_1 = class RenderedContentHover e
|
|
|
108
119
|
};
|
|
109
120
|
RenderedContentHover = RenderedContentHover_1 = ( __decorate([
|
|
110
121
|
( __param(4, IKeybindingService)),
|
|
111
|
-
( __param(5, IHoverService))
|
|
122
|
+
( __param(5, IHoverService)),
|
|
123
|
+
( __param(6, IClipboardService))
|
|
112
124
|
], RenderedContentHover));
|
|
113
125
|
class RenderedStatusBar {
|
|
114
126
|
constructor(fragment, _statusBar) {
|
|
@@ -131,13 +143,15 @@ let RenderedContentHoverParts = class RenderedContentHoverParts extends Disposab
|
|
|
131
143
|
description: 'content-hover-highlight',
|
|
132
144
|
className: 'hoverHighlight'
|
|
133
145
|
}); }
|
|
134
|
-
constructor(editor, participants, hoverParts, context, keybindingService,
|
|
146
|
+
constructor(editor, participants, hoverParts, context, keybindingService, _hoverService, _clipboardService) {
|
|
135
147
|
super();
|
|
148
|
+
this._hoverService = _hoverService;
|
|
149
|
+
this._clipboardService = _clipboardService;
|
|
136
150
|
this._renderedParts = [];
|
|
137
151
|
this._focusedHoverPartIndex = -1;
|
|
138
152
|
this._context = context;
|
|
139
|
-
this._fragment =
|
|
140
|
-
this._register(this._renderParts(participants, hoverParts, context, keybindingService,
|
|
153
|
+
this._fragment = createDocumentFragment();
|
|
154
|
+
this._register(this._renderParts(participants, hoverParts, context, keybindingService, this._hoverService));
|
|
141
155
|
this._register(this._registerListenersOnRenderedParts());
|
|
142
156
|
this._register(this._createEditorDecorations(editor, hoverParts));
|
|
143
157
|
this._updateMarkdownAndColorParticipantInfo(participants);
|
|
@@ -219,6 +233,14 @@ let RenderedContentHoverParts = class RenderedContentHoverParts extends Disposab
|
|
|
219
233
|
event.stopPropagation();
|
|
220
234
|
this._focusedHoverPartIndex = -1;
|
|
221
235
|
}));
|
|
236
|
+
if (renderedPart.type === 'hoverPart' && renderedPart.hoverPart instanceof MarkerHover) {
|
|
237
|
+
disposables.add(( new HoverCopyButton(
|
|
238
|
+
element,
|
|
239
|
+
() => renderedPart.participant.getAccessibleContent(renderedPart.hoverPart),
|
|
240
|
+
this._clipboardService,
|
|
241
|
+
this._hoverService
|
|
242
|
+
)));
|
|
243
|
+
}
|
|
222
244
|
});
|
|
223
245
|
return disposables;
|
|
224
246
|
}
|
|
@@ -250,19 +272,19 @@ let RenderedContentHoverParts = class RenderedContentHoverParts extends Disposab
|
|
|
250
272
|
return '';
|
|
251
273
|
}
|
|
252
274
|
if (renderedPart.type === 'statusBar') {
|
|
253
|
-
const statusBarDescription = [( localize(
|
|
275
|
+
const statusBarDescription = [( localize(1188, "This is a hover status bar."))];
|
|
254
276
|
for (const action of renderedPart.actions) {
|
|
255
277
|
const keybinding = action.actionKeybindingLabel;
|
|
256
278
|
if (keybinding) {
|
|
257
279
|
statusBarDescription.push(( localize(
|
|
258
|
-
|
|
280
|
+
1189,
|
|
259
281
|
"It has an action with label {0} and keybinding {1}.",
|
|
260
282
|
action.actionLabel,
|
|
261
283
|
keybinding
|
|
262
284
|
)));
|
|
263
285
|
}
|
|
264
286
|
else {
|
|
265
|
-
statusBarDescription.push(( localize(
|
|
287
|
+
statusBarDescription.push(( localize(1190, "It has an action with label {0}.", action.actionLabel)));
|
|
266
288
|
}
|
|
267
289
|
}
|
|
268
290
|
return statusBarDescription.join('\n');
|
|
@@ -357,7 +379,8 @@ let RenderedContentHoverParts = class RenderedContentHoverParts extends Disposab
|
|
|
357
379
|
};
|
|
358
380
|
RenderedContentHoverParts = RenderedContentHoverParts_1 = ( __decorate([
|
|
359
381
|
( __param(4, IKeybindingService)),
|
|
360
|
-
( __param(5, IHoverService))
|
|
382
|
+
( __param(5, IHoverService)),
|
|
383
|
+
( __param(6, IClipboardService))
|
|
361
384
|
], RenderedContentHoverParts));
|
|
362
385
|
|
|
363
386
|
export { RenderedContentHover };
|
|
@@ -8,11 +8,13 @@ import { IKeybindingService } from "../../../../platform/keybinding/common/keybi
|
|
|
8
8
|
import { HoverVerbosityAction } from "../../../common/standalone/standaloneEnums.js";
|
|
9
9
|
import { ContentHoverWidget } from "./contentHoverWidget.js";
|
|
10
10
|
import { IHoverService } from "../../../../platform/hover/browser/hover.service.js";
|
|
11
|
+
import { IClipboardService } from "../../../../platform/clipboard/common/clipboardService.service.js";
|
|
11
12
|
export declare class ContentHoverWidgetWrapper extends Disposable implements IHoverWidget {
|
|
12
13
|
private readonly _editor;
|
|
13
14
|
private readonly _instantiationService;
|
|
14
15
|
private readonly _keybindingService;
|
|
15
16
|
private readonly _hoverService;
|
|
17
|
+
private readonly _clipboardService;
|
|
16
18
|
private _currentResult;
|
|
17
19
|
private readonly _renderedContentHover;
|
|
18
20
|
private readonly _contentHoverWidget;
|
|
@@ -20,7 +22,7 @@ export declare class ContentHoverWidgetWrapper extends Disposable implements IHo
|
|
|
20
22
|
private readonly _hoverOperation;
|
|
21
23
|
private readonly _onContentsChanged;
|
|
22
24
|
readonly onContentsChanged: import("../../../../base/common/event.js").Event<void>;
|
|
23
|
-
constructor(_editor: ICodeEditor, _instantiationService: IInstantiationService, _keybindingService: IKeybindingService, _hoverService: IHoverService);
|
|
25
|
+
constructor(_editor: ICodeEditor, _instantiationService: IInstantiationService, _keybindingService: IKeybindingService, _hoverService: IHoverService, _clipboardService: IClipboardService);
|
|
24
26
|
private _initializeHoverParticipants;
|
|
25
27
|
private _registerListeners;
|
|
26
28
|
/**
|