@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
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
|
|
2
|
+
import { Disposable } from '../../../../base/common/lifecycle.js';
|
|
3
|
+
|
|
4
|
+
class QuickInputTreeSorter extends Disposable {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this._sortByLabel = true;
|
|
8
|
+
}
|
|
9
|
+
get sortByLabel() {
|
|
10
|
+
return this._sortByLabel;
|
|
11
|
+
}
|
|
12
|
+
set sortByLabel(value) {
|
|
13
|
+
this._sortByLabel = value;
|
|
14
|
+
}
|
|
15
|
+
compare(a, b) {
|
|
16
|
+
if (!this._sortByLabel) {
|
|
17
|
+
return 0;
|
|
18
|
+
}
|
|
19
|
+
if (a.label < b.label) {
|
|
20
|
+
return -1;
|
|
21
|
+
}
|
|
22
|
+
else if (a.label > b.label) {
|
|
23
|
+
return 1;
|
|
24
|
+
}
|
|
25
|
+
if (a.description && b.description) {
|
|
26
|
+
if (a.description < b.description) {
|
|
27
|
+
return -1;
|
|
28
|
+
}
|
|
29
|
+
else if (a.description > b.description) {
|
|
30
|
+
return 1;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
else if (a.description) {
|
|
34
|
+
return -1;
|
|
35
|
+
}
|
|
36
|
+
else if (b.description) {
|
|
37
|
+
return 1;
|
|
38
|
+
}
|
|
39
|
+
return 0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { QuickInputTreeSorter };
|
|
@@ -10,12 +10,15 @@ export declare class QuickTree<T extends IQuickTreeItem> extends QuickInput impl
|
|
|
10
10
|
private readonly _placeholder;
|
|
11
11
|
private readonly _matchOnDescription;
|
|
12
12
|
private readonly _matchOnLabel;
|
|
13
|
+
private readonly _sortByLabel;
|
|
13
14
|
private readonly _activeItems;
|
|
14
15
|
private readonly _itemTree;
|
|
15
16
|
readonly onDidChangeValue: Event<string>;
|
|
16
17
|
readonly onDidChangeActive: Event<readonly T[]>;
|
|
17
18
|
private readonly _onDidChangeCheckedLeafItems;
|
|
18
|
-
onDidChangeCheckedLeafItems: Event<T[]>;
|
|
19
|
+
readonly onDidChangeCheckedLeafItems: Event<T[]>;
|
|
20
|
+
private readonly _onDidChangeCheckboxState;
|
|
21
|
+
readonly onDidChangeCheckboxState: Event<T>;
|
|
19
22
|
readonly onDidAccept: Event<void>;
|
|
20
23
|
constructor(ui: QuickInputUI);
|
|
21
24
|
get value(): string;
|
|
@@ -28,6 +31,8 @@ export declare class QuickTree<T extends IQuickTreeItem> extends QuickInput impl
|
|
|
28
31
|
set matchOnDescription(matchOnDescription: boolean);
|
|
29
32
|
get matchOnLabel(): boolean;
|
|
30
33
|
set matchOnLabel(matchOnLabel: boolean);
|
|
34
|
+
get sortByLabel(): boolean;
|
|
35
|
+
set sortByLabel(sortByLabel: boolean);
|
|
31
36
|
get activeItems(): readonly T[];
|
|
32
37
|
set activeItems(activeItems: readonly T[]);
|
|
33
38
|
get itemTree(): ReadonlyArray<Readonly<T>>;
|
|
@@ -35,7 +40,7 @@ export declare class QuickTree<T extends IQuickTreeItem> extends QuickInput impl
|
|
|
35
40
|
get checkedLeafItems(): readonly T[];
|
|
36
41
|
setItemTree(itemTree: T[]): void;
|
|
37
42
|
getParent(element: T): T | undefined;
|
|
38
|
-
setCheckboxState(element: T, checked: boolean | "
|
|
43
|
+
setCheckboxState(element: T, checked: boolean | "mixed"): void;
|
|
39
44
|
expand(element: T): void;
|
|
40
45
|
collapse(element: T): void;
|
|
41
46
|
isCollapsed(element: T): boolean;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { Event, Emitter } from '../../../../base/common/event.js';
|
|
3
3
|
import '../../../../base/common/observableInternal/index.js';
|
|
4
|
+
import { setTimeout0 } from '../../../../base/common/platform.js';
|
|
4
5
|
import { localize } from '../../../../nls.js';
|
|
5
6
|
import { QuickInputType } from '../../common/quickInput.js';
|
|
6
7
|
import { QuickInput } from '../quickInput.js';
|
|
@@ -9,7 +10,7 @@ import { observableValue } from '../../../../base/common/observableInternal/obse
|
|
|
9
10
|
import { autorun } from '../../../../base/common/observableInternal/reactions/autorun.js';
|
|
10
11
|
|
|
11
12
|
class QuickTree extends QuickInput {
|
|
12
|
-
static { this.DEFAULT_ARIA_LABEL = ( localize(
|
|
13
|
+
static { this.DEFAULT_ARIA_LABEL = ( localize(2023, "Type to narrow down results.")); }
|
|
13
14
|
constructor(ui) {
|
|
14
15
|
super(ui);
|
|
15
16
|
this.type = QuickInputType.QuickTree;
|
|
@@ -18,15 +19,19 @@ class QuickTree extends QuickInput {
|
|
|
18
19
|
this._placeholder = observableValue('placeholder', undefined);
|
|
19
20
|
this._matchOnDescription = observableValue('matchOnDescription', false);
|
|
20
21
|
this._matchOnLabel = observableValue('matchOnLabel', true);
|
|
22
|
+
this._sortByLabel = observableValue('sortByLabel', true);
|
|
21
23
|
this._activeItems = observableValue('activeItems', []);
|
|
22
24
|
this._itemTree = observableValue('itemTree', []);
|
|
23
25
|
this.onDidChangeValue = Event.fromObservable(this._value, this._store);
|
|
24
26
|
this.onDidChangeActive = Event.fromObservable(this._activeItems, this._store);
|
|
25
|
-
this._onDidChangeCheckedLeafItems = ( new Emitter());
|
|
27
|
+
this._onDidChangeCheckedLeafItems = this._register(( new Emitter()));
|
|
26
28
|
this.onDidChangeCheckedLeafItems = this._onDidChangeCheckedLeafItems.event;
|
|
29
|
+
this._onDidChangeCheckboxState = this._register(( new Emitter()));
|
|
30
|
+
this.onDidChangeCheckboxState = this._onDidChangeCheckboxState.event;
|
|
27
31
|
this.onDidAccept = ui.onDidAccept;
|
|
28
32
|
this._registerAutoruns();
|
|
29
33
|
this._register(ui.tree.onDidChangeCheckedLeafItems(e => this._onDidChangeCheckedLeafItems.fire(e)));
|
|
34
|
+
this._register(ui.tree.onDidChangeCheckboxState(e => this._onDidChangeCheckboxState.fire(e.item)));
|
|
30
35
|
this._register(ui.tree.tree.onDidChangeFocus(e => {
|
|
31
36
|
this._activeItems.set(ui.tree.getActiveItems(), undefined);
|
|
32
37
|
}));
|
|
@@ -41,6 +46,8 @@ class QuickTree extends QuickInput {
|
|
|
41
46
|
set matchOnDescription(matchOnDescription) { this._matchOnDescription.set(matchOnDescription, undefined); }
|
|
42
47
|
get matchOnLabel() { return this._matchOnLabel.get(); }
|
|
43
48
|
set matchOnLabel(matchOnLabel) { this._matchOnLabel.set(matchOnLabel, undefined); }
|
|
49
|
+
get sortByLabel() { return this._sortByLabel.get(); }
|
|
50
|
+
set sortByLabel(sortByLabel) { this._sortByLabel.set(sortByLabel, undefined); }
|
|
44
51
|
get activeItems() { return this._activeItems.get(); }
|
|
45
52
|
set activeItems(activeItems) { this._activeItems.set(activeItems, undefined); }
|
|
46
53
|
get itemTree() { return this._itemTree.get(); }
|
|
@@ -105,7 +112,7 @@ class QuickTree extends QuickInput {
|
|
|
105
112
|
}));
|
|
106
113
|
}
|
|
107
114
|
super.show();
|
|
108
|
-
this.ui.count.setCount(this.ui.tree.getCheckedLeafItems().length);
|
|
115
|
+
setTimeout0(() => this.ui.count.setCount(this.ui.tree.getCheckedLeafItems().length));
|
|
109
116
|
const checkAllState = getParentNodeState([...this.ui.tree.tree.getNode().children]);
|
|
110
117
|
if (this.ui.checkAll.checked !== checkAllState) {
|
|
111
118
|
this.ui.checkAll.checked = checkAllState;
|
|
@@ -165,6 +172,10 @@ class QuickTree extends QuickInput {
|
|
|
165
172
|
const matchOnDescription = this._matchOnDescription.read(reader);
|
|
166
173
|
this.ui.tree.updateFilterOptions({ matchOnLabel, matchOnDescription });
|
|
167
174
|
});
|
|
175
|
+
this.registerVisibleAutorun((reader) => {
|
|
176
|
+
const sortByLabel = this._sortByLabel.read(reader);
|
|
177
|
+
this.ui.tree.sortByLabel = sortByLabel;
|
|
178
|
+
});
|
|
168
179
|
this.registerVisibleAutorun((reader) => {
|
|
169
180
|
const itemTree = this._itemTree.read(reader);
|
|
170
181
|
this.ui.tree.setTreeData(itemTree);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Event } from "../../../base/common/event.js";
|
|
2
2
|
import { IMatch } from "../../../base/common/filters.js";
|
|
3
|
-
import { IItemAccessor } from "@codingame/monaco-vscode-
|
|
3
|
+
import { IItemAccessor } from "@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/base/common/fuzzyScorer";
|
|
4
4
|
import { ResolvedKeybinding } from "../../../base/common/keybindings.js";
|
|
5
5
|
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
6
6
|
import Severity from "../../../base/common/severity.js";
|
|
@@ -30,11 +30,19 @@ export interface IQuickItem {
|
|
|
30
30
|
* Whether the item is displayed with a strikethrough.
|
|
31
31
|
*/
|
|
32
32
|
strikethrough?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Icon classes to be passed on as `IIconLabelValueOptions`
|
|
35
|
+
* to the underlying `IconLabel` widget.
|
|
36
|
+
*/
|
|
33
37
|
iconClasses?: readonly string[];
|
|
34
38
|
iconPath?: {
|
|
35
39
|
dark: URI;
|
|
36
40
|
light?: URI;
|
|
37
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Icon class to be assigned to the quick item container
|
|
44
|
+
* directly.
|
|
45
|
+
*/
|
|
38
46
|
iconClass?: string;
|
|
39
47
|
highlights?: IQuickItemHighlights;
|
|
40
48
|
buttons?: readonly IQuickInputButton[];
|
|
@@ -112,6 +120,10 @@ export interface IPickOptions<T extends IQuickPickItem> {
|
|
|
112
120
|
* an optional string to show as placeholder in the input box to guide the user what she picks on
|
|
113
121
|
*/
|
|
114
122
|
placeHolder?: string;
|
|
123
|
+
/**
|
|
124
|
+
* the text to display underneath the input box
|
|
125
|
+
*/
|
|
126
|
+
prompt?: string;
|
|
115
127
|
/**
|
|
116
128
|
* an optional flag to include the description when filtering the picks
|
|
117
129
|
*/
|
|
@@ -290,6 +302,10 @@ export interface IQuickInput extends IDisposable {
|
|
|
290
302
|
* Indicates whether the quick input should be hidden when it loses focus.
|
|
291
303
|
*/
|
|
292
304
|
ignoreFocusOut: boolean;
|
|
305
|
+
/**
|
|
306
|
+
* The toggle buttons to be added to the input box.
|
|
307
|
+
*/
|
|
308
|
+
toggles: IQuickInputToggle[] | undefined;
|
|
293
309
|
/**
|
|
294
310
|
* Shows the quick input.
|
|
295
311
|
*/
|
|
@@ -428,6 +444,10 @@ export interface IQuickPick<T extends IQuickPickItem, O extends {
|
|
|
428
444
|
* The placeholder text for the quick pick input.
|
|
429
445
|
*/
|
|
430
446
|
placeholder: string | undefined;
|
|
447
|
+
/**
|
|
448
|
+
* Text shown below the quick pick input.
|
|
449
|
+
*/
|
|
450
|
+
prompt: string | undefined;
|
|
431
451
|
/**
|
|
432
452
|
* An event that is fired when the value of the quick pick input changes.
|
|
433
453
|
*/
|
|
@@ -575,10 +595,6 @@ export interface IQuickPick<T extends IQuickPickItem, O extends {
|
|
|
575
595
|
* Whether to hide the "Check All" checkbox.
|
|
576
596
|
*/
|
|
577
597
|
hideCheckAll: boolean;
|
|
578
|
-
/**
|
|
579
|
-
* The toggle buttons to be added to the input box.
|
|
580
|
-
*/
|
|
581
|
-
toggles: IQuickInputToggle[] | undefined;
|
|
582
598
|
/**
|
|
583
599
|
* Focus a particular item in the list. Used internally for keyboard navigation.
|
|
584
600
|
* @param focus The focus behavior.
|
|
@@ -598,7 +614,7 @@ export interface IQuickInputToggle {
|
|
|
598
614
|
* Event that is fired when the toggle value changes.
|
|
599
615
|
* The boolean value indicates whether the change was triggered via keyboard.
|
|
600
616
|
*/
|
|
601
|
-
onChange: Event<boolean>;
|
|
617
|
+
readonly onChange: Event<boolean>;
|
|
602
618
|
}
|
|
603
619
|
/**
|
|
604
620
|
* Represents an input box in a quick input dialog.
|
|
@@ -661,7 +677,12 @@ export declare enum QuickInputButtonLocation {
|
|
|
661
677
|
/**
|
|
662
678
|
* To the right of the input box.
|
|
663
679
|
*/
|
|
664
|
-
Inline = 2
|
|
680
|
+
Inline = 2,
|
|
681
|
+
/**
|
|
682
|
+
* At the far end inside the input box.
|
|
683
|
+
* Used by the public API to create toggles.
|
|
684
|
+
*/
|
|
685
|
+
Input = 3
|
|
665
686
|
}
|
|
666
687
|
/**
|
|
667
688
|
* Represents a button in the quick input UI.
|
|
@@ -784,6 +805,10 @@ export interface IQuickTree<T extends IQuickTreeItem> extends IQuickInput {
|
|
|
784
805
|
* Whether to match on the label of the items.
|
|
785
806
|
*/
|
|
786
807
|
matchOnLabel: boolean;
|
|
808
|
+
/**
|
|
809
|
+
* Whether to sort the items by label. Defaults to true.
|
|
810
|
+
*/
|
|
811
|
+
sortByLabel: boolean;
|
|
787
812
|
/**
|
|
788
813
|
* The currently active items.
|
|
789
814
|
*/
|
|
@@ -818,6 +843,10 @@ export interface IQuickTree<T extends IQuickTreeItem> extends IQuickInput {
|
|
|
818
843
|
* An event that is fired when the selected items change.
|
|
819
844
|
*/
|
|
820
845
|
readonly onDidChangeCheckedLeafItems: Event<ReadonlyArray<T>>;
|
|
846
|
+
/**
|
|
847
|
+
* An event that is fired when the checkbox state of an item changes.
|
|
848
|
+
*/
|
|
849
|
+
readonly onDidChangeCheckboxState: Event<T>;
|
|
821
850
|
/**
|
|
822
851
|
* An event that is fired when an item button is triggered.
|
|
823
852
|
*/
|
|
@@ -832,7 +861,7 @@ export interface IQuickTree<T extends IQuickTreeItem> extends IQuickInput {
|
|
|
832
861
|
* @param element The item to update.
|
|
833
862
|
* @param checked The new checkbox state.
|
|
834
863
|
*/
|
|
835
|
-
setCheckboxState(element: T, checked: boolean | "
|
|
864
|
+
setCheckboxState(element: T, checked: boolean | "mixed"): void;
|
|
836
865
|
/**
|
|
837
866
|
* Expands an item.
|
|
838
867
|
* @param element The item to expand.
|
|
@@ -869,12 +898,12 @@ export interface IQuickTree<T extends IQuickTreeItem> extends IQuickInput {
|
|
|
869
898
|
*/
|
|
870
899
|
export interface IQuickTreeItem extends IQuickItem {
|
|
871
900
|
/**
|
|
872
|
-
* The checked state of the item. Can be true, false, or '
|
|
901
|
+
* The checked state of the item. Can be true, false, or 'mixed' for tri-state.
|
|
873
902
|
* When canSelectMany is false, this is ignored and the item is treated as a single selection.
|
|
874
903
|
* When canSelectMany is true, this indicates the checkbox state of the item.
|
|
875
904
|
* If undefined, the item is unchecked by default.
|
|
876
905
|
*/
|
|
877
|
-
checked?: boolean | "
|
|
906
|
+
checked?: boolean | "mixed";
|
|
878
907
|
/**
|
|
879
908
|
* The collapsible state of the tree item. Defaults to 'Expanded' if children are present.
|
|
880
909
|
*/
|
|
@@ -901,7 +930,7 @@ export interface IQuickTreeCheckboxEvent<T extends IQuickTreeItem> {
|
|
|
901
930
|
/**
|
|
902
931
|
* The new checked state.
|
|
903
932
|
*/
|
|
904
|
-
checked: boolean | "
|
|
933
|
+
checked: boolean | "mixed";
|
|
905
934
|
}
|
|
906
935
|
/**
|
|
907
936
|
* Represents an event that occurs when a button associated with a quick tree item is clicked.
|
|
@@ -38,6 +38,7 @@ var QuickInputButtonLocation;
|
|
|
38
38
|
(function (QuickInputButtonLocation) {
|
|
39
39
|
QuickInputButtonLocation[QuickInputButtonLocation["Title"] = 1] = "Title";
|
|
40
40
|
QuickInputButtonLocation[QuickInputButtonLocation["Inline"] = 2] = "Inline";
|
|
41
|
+
QuickInputButtonLocation[QuickInputButtonLocation["Input"] = 3] = "Input";
|
|
41
42
|
})(QuickInputButtonLocation || (QuickInputButtonLocation = {}));
|
|
42
43
|
class QuickPickItemScorerAccessor {
|
|
43
44
|
constructor(options) {
|
|
@@ -96,6 +96,7 @@ const USER_LOCAL_AND_REMOTE_SETTINGS = [
|
|
|
96
96
|
'http.proxyAuthorization',
|
|
97
97
|
'http.proxySupport',
|
|
98
98
|
'http.systemCertificates',
|
|
99
|
+
'http.systemCertificatesNode',
|
|
99
100
|
'http.experimental.systemCertificatesV2',
|
|
100
101
|
'http.fetchAdditionalSupport',
|
|
101
102
|
'http.experimental.networkInterfaceCheckInterval',
|
|
@@ -115,7 +116,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
115
116
|
{
|
|
116
117
|
id: 'http',
|
|
117
118
|
order: 15,
|
|
118
|
-
title: ( localize(
|
|
119
|
+
title: ( localize(2024, "HTTP")),
|
|
119
120
|
type: 'object',
|
|
120
121
|
scope: ConfigurationScope.MACHINE,
|
|
121
122
|
properties: {
|
|
@@ -123,7 +124,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
123
124
|
type: 'boolean',
|
|
124
125
|
default: useHostProxyDefault,
|
|
125
126
|
markdownDescription: ( localize(
|
|
126
|
-
|
|
127
|
+
2025,
|
|
127
128
|
"Controls whether in the remote extension host the local proxy configuration should be used. This setting only applies as a remote setting during [remote development](https://aka.ms/vscode-remote)."
|
|
128
129
|
)),
|
|
129
130
|
restricted: true
|
|
@@ -133,7 +134,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
133
134
|
{
|
|
134
135
|
id: 'http',
|
|
135
136
|
order: 15,
|
|
136
|
-
title: ( localize(
|
|
137
|
+
title: ( localize(2024, "HTTP")),
|
|
137
138
|
type: 'object',
|
|
138
139
|
scope: ConfigurationScope.APPLICATION,
|
|
139
140
|
properties: {
|
|
@@ -141,7 +142,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
141
142
|
type: 'boolean',
|
|
142
143
|
default: false,
|
|
143
144
|
description: ( localize(
|
|
144
|
-
|
|
145
|
+
2026,
|
|
145
146
|
"Controls whether use of Electron's fetch implementation instead of Node.js' should be enabled. All local extensions will get Electron's fetch implementation for the global fetch API."
|
|
146
147
|
)),
|
|
147
148
|
restricted: true
|
|
@@ -151,7 +152,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
151
152
|
{
|
|
152
153
|
id: 'http',
|
|
153
154
|
order: 15,
|
|
154
|
-
title: ( localize(
|
|
155
|
+
title: ( localize(2024, "HTTP")),
|
|
155
156
|
type: 'object',
|
|
156
157
|
scope: useHostProxy ? ConfigurationScope.APPLICATION : ConfigurationScope.MACHINE,
|
|
157
158
|
properties: {
|
|
@@ -159,7 +160,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
159
160
|
type: 'string',
|
|
160
161
|
pattern: '^(https?|socks|socks4a?|socks5h?)://([^:]*(:[^@]*)?@)?([^:]+|\\[[:0-9a-fA-F]+\\])(:\\d+)?/?$|^$',
|
|
161
162
|
markdownDescription: ( localize(
|
|
162
|
-
|
|
163
|
+
2027,
|
|
163
164
|
"The proxy setting to use. If not set, will be inherited from the `http_proxy` and `https_proxy` environment variables. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
164
165
|
'`#http.useLocalProxyConfiguration#`'
|
|
165
166
|
)),
|
|
@@ -169,7 +170,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
169
170
|
type: 'boolean',
|
|
170
171
|
default: true,
|
|
171
172
|
markdownDescription: ( localize(
|
|
172
|
-
|
|
173
|
+
2028,
|
|
173
174
|
"Controls whether the proxy server certificate should be verified against the list of supplied CAs. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
174
175
|
'`#http.useLocalProxyConfiguration#`'
|
|
175
176
|
)),
|
|
@@ -178,7 +179,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
178
179
|
'http.proxyKerberosServicePrincipal': {
|
|
179
180
|
type: 'string',
|
|
180
181
|
markdownDescription: ( localize(
|
|
181
|
-
|
|
182
|
+
2029,
|
|
182
183
|
"Overrides the principal service name for Kerberos authentication with the HTTP proxy. A default based on the proxy hostname is used when this is not set. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
183
184
|
'`#http.useLocalProxyConfiguration#`'
|
|
184
185
|
)),
|
|
@@ -188,7 +189,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
188
189
|
type: 'array',
|
|
189
190
|
items: { type: 'string' },
|
|
190
191
|
markdownDescription: ( localize(
|
|
191
|
-
|
|
192
|
+
2030,
|
|
192
193
|
"Specifies domain names for which proxy settings should be ignored for HTTP/HTTPS requests. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
193
194
|
'`#http.useLocalProxyConfiguration#`'
|
|
194
195
|
)),
|
|
@@ -198,7 +199,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
198
199
|
type: ['null', 'string'],
|
|
199
200
|
default: null,
|
|
200
201
|
markdownDescription: ( localize(
|
|
201
|
-
|
|
202
|
+
2031,
|
|
202
203
|
"The value to send as the `Proxy-Authorization` header for every network request. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
203
204
|
'`#http.useLocalProxyConfiguration#`'
|
|
204
205
|
)),
|
|
@@ -208,17 +209,17 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
208
209
|
type: 'string',
|
|
209
210
|
enum: ['off', 'on', 'fallback', 'override'],
|
|
210
211
|
enumDescriptions: [
|
|
211
|
-
( localize(
|
|
212
|
-
( localize(
|
|
212
|
+
( localize(2032, "Disable proxy support for extensions.")),
|
|
213
|
+
( localize(2033, "Enable proxy support for extensions.")),
|
|
213
214
|
( localize(
|
|
214
|
-
|
|
215
|
+
2034,
|
|
215
216
|
"Enable proxy support for extensions, fall back to request options, when no proxy found."
|
|
216
217
|
)),
|
|
217
|
-
( localize(
|
|
218
|
+
( localize(2035, "Enable proxy support for extensions, override request options.")),
|
|
218
219
|
],
|
|
219
220
|
default: 'override',
|
|
220
221
|
markdownDescription: ( localize(
|
|
221
|
-
|
|
222
|
+
2036,
|
|
222
223
|
"Use the proxy support for extensions. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
223
224
|
'`#http.useLocalProxyConfiguration#`'
|
|
224
225
|
)),
|
|
@@ -228,18 +229,32 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
228
229
|
type: 'boolean',
|
|
229
230
|
default: true,
|
|
230
231
|
markdownDescription: ( localize(
|
|
231
|
-
|
|
232
|
+
2037,
|
|
232
233
|
"Controls whether CA certificates should be loaded from the OS. On Windows and macOS, a reload of the window is required after turning this off. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
233
234
|
'`#http.useLocalProxyConfiguration#`'
|
|
234
235
|
)),
|
|
235
236
|
restricted: true
|
|
236
237
|
},
|
|
238
|
+
'http.systemCertificatesNode': {
|
|
239
|
+
type: 'boolean',
|
|
240
|
+
tags: ['experimental'],
|
|
241
|
+
default: true,
|
|
242
|
+
markdownDescription: ( localize(
|
|
243
|
+
2038,
|
|
244
|
+
"Controls whether system certificates should be loaded using Node.js built-in support. Reload the window after changing this setting. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
245
|
+
'`#http.useLocalProxyConfiguration#`'
|
|
246
|
+
)),
|
|
247
|
+
restricted: true,
|
|
248
|
+
experiment: {
|
|
249
|
+
mode: 'auto'
|
|
250
|
+
}
|
|
251
|
+
},
|
|
237
252
|
'http.experimental.systemCertificatesV2': {
|
|
238
253
|
type: 'boolean',
|
|
239
254
|
tags: ['experimental'],
|
|
240
255
|
default: false,
|
|
241
256
|
markdownDescription: ( localize(
|
|
242
|
-
|
|
257
|
+
2039,
|
|
243
258
|
"Controls whether experimental loading of CA certificates from the OS should be enabled. This uses a more general approach than the default implementation. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
244
259
|
'`#http.useLocalProxyConfiguration#`'
|
|
245
260
|
)),
|
|
@@ -249,7 +264,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
249
264
|
type: 'boolean',
|
|
250
265
|
default: true,
|
|
251
266
|
markdownDescription: ( localize(
|
|
252
|
-
|
|
267
|
+
2040,
|
|
253
268
|
"Controls whether Node.js' fetch implementation should be extended with additional support. Currently proxy support ({1}) and system certificates ({2}) are added when the corresponding settings are enabled. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
254
269
|
'`#http.useLocalProxyConfiguration#`',
|
|
255
270
|
'`#http.proxySupport#`',
|
|
@@ -263,7 +278,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
263
278
|
minimum: -1,
|
|
264
279
|
tags: ['experimental'],
|
|
265
280
|
markdownDescription: ( localize(
|
|
266
|
-
|
|
281
|
+
2041,
|
|
267
282
|
"Controls the interval in seconds for checking network interface changes to invalidate the proxy cache. Set to -1 to disable. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
268
283
|
'`#http.useLocalProxyConfiguration#`'
|
|
269
284
|
)),
|
|
@@ -3,5 +3,5 @@ import { ISecretStorageProvider } from "@codingame/monaco-vscode-secret-storage-
|
|
|
3
3
|
export declare const ISecretStorageService: import("../../instantiation/common/instantiation.js").ServiceIdentifier<ISecretStorageService>;
|
|
4
4
|
export interface ISecretStorageService extends ISecretStorageProvider {
|
|
5
5
|
readonly _serviceBrand: undefined;
|
|
6
|
-
onDidChangeSecret: Event<string>;
|
|
6
|
+
readonly onDidChangeSecret: Event<string>;
|
|
7
7
|
}
|
|
@@ -36,7 +36,7 @@ class NullEndpointTelemetryService {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
const telemetryLogId = 'telemetry';
|
|
39
|
-
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(
|
|
39
|
+
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(2062, "Telemetry")) };
|
|
40
40
|
function supportsTelemetry(productService, environmentService) {
|
|
41
41
|
if (!environmentService.isBuilt && !environmentService.disableTelemetry) {
|
|
42
42
|
return true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Event } from "../../../base/common/event.js";
|
|
2
2
|
import { IProcessEnvironment, OperatingSystem } from "../../../base/common/platform.js";
|
|
3
3
|
import { URI, UriComponents } from "../../../base/common/uri.js";
|
|
4
|
-
import { IPtyHostProcessReplayEvent, ISerializedCommandDetectionCapability, ITerminalCapabilityStore, type ITerminalCommand } from "@codingame/monaco-vscode-
|
|
4
|
+
import { IPtyHostProcessReplayEvent, ISerializedCommandDetectionCapability, ITerminalCapabilityStore, type ITerminalCommand } from "@codingame/monaco-vscode-10af0e5d-64cb-56de-b584-29ab4a355d15-common/vscode/vs/platform/terminal/common/capabilities/capabilities";
|
|
5
5
|
import { IProcessDetails } from "./terminalProcess.js";
|
|
6
6
|
import { ThemeIcon } from "../../../base/common/themables.js";
|
|
7
7
|
import { ISerializableEnvironmentVariableCollections } from "@codingame/monaco-vscode-07eaa805-9dea-5ec6-a422-a4f04872424d-common/vscode/vs/platform/terminal/common/environmentVariable";
|
|
@@ -9,6 +9,7 @@ import { IWorkspaceFolder } from "../../workspace/common/workspace.js";
|
|
|
9
9
|
import type * as performance from "../../../base/common/performance.js";
|
|
10
10
|
import type { IAction } from "../../../base/common/actions.js";
|
|
11
11
|
import type { IDisposable } from "../../../base/common/lifecycle.js";
|
|
12
|
+
import type { SingleOrMany } from "../../../base/common/types.js";
|
|
12
13
|
import { IPtyService } from "./terminal.service.js";
|
|
13
14
|
export declare enum TerminalSettingPrefix {
|
|
14
15
|
AutomationProfile = "terminal.integrated.automationProfile.",
|
|
@@ -78,7 +79,6 @@ export declare enum TerminalSettingId {
|
|
|
78
79
|
EnvMacOs = "terminal.integrated.env.osx",
|
|
79
80
|
EnvLinux = "terminal.integrated.env.linux",
|
|
80
81
|
EnvWindows = "terminal.integrated.env.windows",
|
|
81
|
-
EnvironmentChangesIndicator = "terminal.integrated.environmentChangesIndicator",
|
|
82
82
|
EnvironmentChangesRelaunch = "terminal.integrated.environmentChangesRelaunch",
|
|
83
83
|
ShowExitAlert = "terminal.integrated.showExitAlert",
|
|
84
84
|
SplitCwd = "terminal.integrated.splitCwd",
|
|
@@ -101,6 +101,8 @@ export declare enum TerminalSettingId {
|
|
|
101
101
|
ShellIntegrationEnabled = "terminal.integrated.shellIntegration.enabled",
|
|
102
102
|
ShellIntegrationShowWelcome = "terminal.integrated.shellIntegration.showWelcome",
|
|
103
103
|
ShellIntegrationDecorationsEnabled = "terminal.integrated.shellIntegration.decorationsEnabled",
|
|
104
|
+
ShellIntegrationTimeout = "terminal.integrated.shellIntegration.timeout",
|
|
105
|
+
ShellIntegrationQuickFixEnabled = "terminal.integrated.shellIntegration.quickFixEnabled",
|
|
104
106
|
ShellIntegrationEnvironmentReporting = "terminal.integrated.shellIntegration.environmentReporting",
|
|
105
107
|
EnableImages = "terminal.integrated.enableImages",
|
|
106
108
|
SmoothScrolling = "terminal.integrated.smoothScrolling",
|
|
@@ -151,6 +153,7 @@ export interface IRawTerminalTabLayoutInfo<T> {
|
|
|
151
153
|
export type ITerminalTabLayoutInfoById = IRawTerminalTabLayoutInfo<number>;
|
|
152
154
|
export interface IRawTerminalsLayoutInfo<T> {
|
|
153
155
|
tabs: IRawTerminalTabLayoutInfo<T>[];
|
|
156
|
+
background: T[] | null;
|
|
154
157
|
}
|
|
155
158
|
export interface IPtyHostAttachTarget {
|
|
156
159
|
id: number;
|
|
@@ -444,6 +447,11 @@ export interface IShellLaunchConfig {
|
|
|
444
447
|
* as normal. The hidden terminals will not be restored when the workspace is next opened.
|
|
445
448
|
*/
|
|
446
449
|
hideFromUser?: boolean;
|
|
450
|
+
/**
|
|
451
|
+
* Whether to force the terminal to persist across sessions regardless of the other
|
|
452
|
+
* launch config, like `hideFromUser`.
|
|
453
|
+
*/
|
|
454
|
+
forcePersist?: boolean;
|
|
447
455
|
/**
|
|
448
456
|
* Whether this terminal is not a terminal that the user directly created and uses, but rather
|
|
449
457
|
* a terminal used to drive some VS Code feature.
|
|
@@ -598,12 +606,12 @@ export interface ITerminalChildProcess {
|
|
|
598
606
|
* Whether the process should be persisted across reloads.
|
|
599
607
|
*/
|
|
600
608
|
shouldPersist: boolean;
|
|
601
|
-
onProcessData: Event<IProcessDataEvent | string>;
|
|
602
|
-
onProcessReady: Event<IProcessReadyEvent>;
|
|
603
|
-
onProcessReplayComplete?: Event<void>;
|
|
604
|
-
onDidChangeProperty: Event<IProcessProperty<any>>;
|
|
605
|
-
onProcessExit: Event<number | undefined>;
|
|
606
|
-
onRestoreCommands?: Event<ISerializedCommandDetectionCapability>;
|
|
609
|
+
readonly onProcessData: Event<IProcessDataEvent | string>;
|
|
610
|
+
readonly onProcessReady: Event<IProcessReadyEvent>;
|
|
611
|
+
readonly onProcessReplayComplete?: Event<void>;
|
|
612
|
+
readonly onDidChangeProperty: Event<IProcessProperty<any>>;
|
|
613
|
+
readonly onProcessExit: Event<number | undefined>;
|
|
614
|
+
readonly onRestoreCommands?: Event<ISerializedCommandDetectionCapability>;
|
|
607
615
|
/**
|
|
608
616
|
* Starts the process.
|
|
609
617
|
*
|
|
@@ -642,6 +650,11 @@ export interface ITerminalChildProcess {
|
|
|
642
650
|
* @param charCount The number of characters being acknowledged.
|
|
643
651
|
*/
|
|
644
652
|
acknowledgeDataEvent(charCount: number): void;
|
|
653
|
+
/**
|
|
654
|
+
* Pre-assigns the command identifier that should be associated with the next command detected by
|
|
655
|
+
* shell integration. This keeps the pty host and renderer command stores aligned.
|
|
656
|
+
*/
|
|
657
|
+
setNextCommandId(commandLine: string, commandId: string): Promise<void>;
|
|
645
658
|
/**
|
|
646
659
|
* Sets the unicode version for the process, this drives the size of some characters in the
|
|
647
660
|
* xterm-headless instance.
|
|
@@ -728,7 +741,7 @@ export interface ITerminalProfile {
|
|
|
728
741
|
* cleaner to display this profile in the UI using only `basename(path)`.
|
|
729
742
|
*/
|
|
730
743
|
isFromPath?: boolean;
|
|
731
|
-
args?: string |
|
|
744
|
+
args?: SingleOrMany<string> | undefined;
|
|
732
745
|
env?: ITerminalEnvironment;
|
|
733
746
|
overrideName?: boolean;
|
|
734
747
|
color?: string;
|
|
@@ -748,7 +761,7 @@ export declare enum ProfileSource {
|
|
|
748
761
|
Pwsh = "PowerShell"
|
|
749
762
|
}
|
|
750
763
|
export interface IBaseUnresolvedTerminalProfile {
|
|
751
|
-
args?: string |
|
|
764
|
+
args?: SingleOrMany<string> | undefined;
|
|
752
765
|
isAutoDetected?: boolean;
|
|
753
766
|
overrideName?: boolean;
|
|
754
767
|
icon?: string | ThemeIcon | URI | {
|
|
@@ -759,13 +772,12 @@ export interface IBaseUnresolvedTerminalProfile {
|
|
|
759
772
|
env?: ITerminalEnvironment;
|
|
760
773
|
requiresPath?: string | ITerminalUnsafePath;
|
|
761
774
|
}
|
|
762
|
-
type OneOrN<T> = T | T[];
|
|
763
775
|
export interface ITerminalUnsafePath {
|
|
764
776
|
path: string;
|
|
765
777
|
isUnsafe: true;
|
|
766
778
|
}
|
|
767
779
|
export interface ITerminalExecutable extends IBaseUnresolvedTerminalProfile {
|
|
768
|
-
path:
|
|
780
|
+
path: SingleOrMany<string | ITerminalUnsafePath>;
|
|
769
781
|
}
|
|
770
782
|
export interface ITerminalProfileSource extends IBaseUnresolvedTerminalProfile {
|
|
771
783
|
source: ProfileSource;
|
|
@@ -790,12 +802,17 @@ export interface IShellIntegration {
|
|
|
790
802
|
readonly onDidChangeStatus: Event<ShellIntegrationStatus>;
|
|
791
803
|
readonly onDidChangeSeenSequences: Event<ReadonlySet<string>>;
|
|
792
804
|
deserialize(serialized: ISerializedCommandDetectionCapability): void;
|
|
805
|
+
setNextCommandId(command: string, commandId: string): void;
|
|
793
806
|
}
|
|
794
807
|
export interface IDecorationAddon {
|
|
795
808
|
registerMenuItems(command: ITerminalCommand, items: IAction[]): IDisposable;
|
|
796
809
|
}
|
|
810
|
+
export interface ITerminalCompletionProviderContribution {
|
|
811
|
+
description?: string;
|
|
812
|
+
}
|
|
797
813
|
export interface ITerminalContributions {
|
|
798
814
|
profiles?: ITerminalProfileContribution[];
|
|
815
|
+
completionProviders?: ITerminalCompletionProviderContribution[];
|
|
799
816
|
}
|
|
800
817
|
export declare enum ShellIntegrationStatus {
|
|
801
818
|
/** No shell integration sequences have been encountered. */
|
|
@@ -908,18 +925,18 @@ export interface ITerminalBackend extends ITerminalBackendPtyServiceContribution
|
|
|
908
925
|
* Fired when the ptyHost process becomes non-responsive, this should disable stdin for all
|
|
909
926
|
* terminals using this pty host connection and mark them as disconnected.
|
|
910
927
|
*/
|
|
911
|
-
onPtyHostUnresponsive: Event<void>;
|
|
928
|
+
readonly onPtyHostUnresponsive: Event<void>;
|
|
912
929
|
/**
|
|
913
930
|
* Fired when the ptyHost process becomes responsive after being non-responsive. Allowing
|
|
914
931
|
* previously disconnected terminals to reconnect.
|
|
915
932
|
*/
|
|
916
|
-
onPtyHostResponsive: Event<void>;
|
|
933
|
+
readonly onPtyHostResponsive: Event<void>;
|
|
917
934
|
/**
|
|
918
935
|
* Fired when the ptyHost has been restarted, this is used as a signal for listening terminals
|
|
919
936
|
* that its pty has been lost and will remain disconnected.
|
|
920
937
|
*/
|
|
921
|
-
onPtyHostRestart: Event<void>;
|
|
922
|
-
onDidRequestDetach: Event<{
|
|
938
|
+
readonly onPtyHostRestart: Event<void>;
|
|
939
|
+
readonly onDidRequestDetach: Event<{
|
|
923
940
|
requestId: number;
|
|
924
941
|
workspaceId: string;
|
|
925
942
|
instanceId: number;
|
|
@@ -972,4 +989,3 @@ export interface ITerminalBackendRegistry {
|
|
|
972
989
|
*/
|
|
973
990
|
getTerminalBackend(remoteAuthority?: string): ITerminalBackend | undefined;
|
|
974
991
|
}
|
|
975
|
-
export {};
|