@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IKeyboardEvent } from "../../keybinding/common/keybinding.js";
|
|
2
|
-
import { IPickerQuickAccessItem } from "@codingame/monaco-vscode-
|
|
2
|
+
import { IPickerQuickAccessItem } from "@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
|
|
3
3
|
import { Event } from "../../../base/common/event.js";
|
|
4
4
|
import { IAction } from "../../../base/common/actions.js";
|
|
5
5
|
import { IQuickPickItem } from "../../quickinput/common/quickInput.js";
|
|
@@ -84,7 +84,7 @@ export interface IAccessibleViewContentProvider extends IBasicContentProvider, I
|
|
|
84
84
|
/**
|
|
85
85
|
* Note that this will only take effect if the provider has an ID.
|
|
86
86
|
*/
|
|
87
|
-
onDidRequestClearLastProvider?: Event<AccessibleViewProviderId>;
|
|
87
|
+
readonly onDidRequestClearLastProvider?: Event<AccessibleViewProviderId>;
|
|
88
88
|
}
|
|
89
89
|
export interface IAccessibleViewSymbol extends IPickerQuickAccessItem {
|
|
90
90
|
markdownToParse?: string;
|
|
@@ -141,5 +141,5 @@ export interface IBasicContentProvider extends IDisposable {
|
|
|
141
141
|
actions?: IAction[];
|
|
142
142
|
providePreviousContent?(): void;
|
|
143
143
|
provideNextContent?(): void;
|
|
144
|
-
onDidChangeContent?: Event<void>;
|
|
144
|
+
readonly onDidChangeContent?: Event<void>;
|
|
145
145
|
}
|
|
@@ -282,176 +282,176 @@ class AccessibilitySignal {
|
|
|
282
282
|
return [...this._signals];
|
|
283
283
|
}
|
|
284
284
|
static { this.errorAtPosition = AccessibilitySignal.register({
|
|
285
|
-
name: ( localize(
|
|
285
|
+
name: ( localize(1659, 'Error at Position')),
|
|
286
286
|
sound: Sound.error,
|
|
287
|
-
announcementMessage: ( localize(
|
|
287
|
+
announcementMessage: ( localize(1660, 'Error')),
|
|
288
288
|
settingsKey: 'accessibility.signals.positionHasError',
|
|
289
289
|
delaySettingsKey: 'accessibility.signalOptions.delays.errorAtPosition'
|
|
290
290
|
}); }
|
|
291
291
|
static { this.warningAtPosition = AccessibilitySignal.register({
|
|
292
|
-
name: ( localize(
|
|
292
|
+
name: ( localize(1661, 'Warning at Position')),
|
|
293
293
|
sound: Sound.warning,
|
|
294
|
-
announcementMessage: ( localize(
|
|
294
|
+
announcementMessage: ( localize(1662, 'Warning')),
|
|
295
295
|
settingsKey: 'accessibility.signals.positionHasWarning',
|
|
296
296
|
delaySettingsKey: 'accessibility.signalOptions.delays.warningAtPosition'
|
|
297
297
|
}); }
|
|
298
298
|
static { this.errorOnLine = AccessibilitySignal.register({
|
|
299
|
-
name: ( localize(
|
|
299
|
+
name: ( localize(1663, 'Error on Line')),
|
|
300
300
|
sound: Sound.error,
|
|
301
301
|
legacySoundSettingsKey: 'audioCues.lineHasError',
|
|
302
302
|
legacyAnnouncementSettingsKey: 'accessibility.alert.error',
|
|
303
|
-
announcementMessage: ( localize(
|
|
303
|
+
announcementMessage: ( localize(1664, 'Error on Line')),
|
|
304
304
|
settingsKey: 'accessibility.signals.lineHasError',
|
|
305
305
|
}); }
|
|
306
306
|
static { this.warningOnLine = AccessibilitySignal.register({
|
|
307
|
-
name: ( localize(
|
|
307
|
+
name: ( localize(1665, 'Warning on Line')),
|
|
308
308
|
sound: Sound.warning,
|
|
309
309
|
legacySoundSettingsKey: 'audioCues.lineHasWarning',
|
|
310
310
|
legacyAnnouncementSettingsKey: 'accessibility.alert.warning',
|
|
311
|
-
announcementMessage: ( localize(
|
|
311
|
+
announcementMessage: ( localize(1666, 'Warning on Line')),
|
|
312
312
|
settingsKey: 'accessibility.signals.lineHasWarning',
|
|
313
313
|
}); }
|
|
314
314
|
static { this.foldedArea = AccessibilitySignal.register({
|
|
315
|
-
name: ( localize(
|
|
315
|
+
name: ( localize(1667, 'Folded Area on Line')),
|
|
316
316
|
sound: Sound.foldedArea,
|
|
317
317
|
legacySoundSettingsKey: 'audioCues.lineHasFoldedArea',
|
|
318
318
|
legacyAnnouncementSettingsKey: 'accessibility.alert.foldedArea',
|
|
319
|
-
announcementMessage: ( localize(
|
|
319
|
+
announcementMessage: ( localize(1668, 'Folded')),
|
|
320
320
|
settingsKey: 'accessibility.signals.lineHasFoldedArea',
|
|
321
321
|
}); }
|
|
322
322
|
static { this.break = AccessibilitySignal.register({
|
|
323
|
-
name: ( localize(
|
|
323
|
+
name: ( localize(1669, 'Breakpoint on Line')),
|
|
324
324
|
sound: Sound.break,
|
|
325
325
|
legacySoundSettingsKey: 'audioCues.lineHasBreakpoint',
|
|
326
326
|
legacyAnnouncementSettingsKey: 'accessibility.alert.breakpoint',
|
|
327
|
-
announcementMessage: ( localize(
|
|
327
|
+
announcementMessage: ( localize(1670, 'Breakpoint')),
|
|
328
328
|
settingsKey: 'accessibility.signals.lineHasBreakpoint',
|
|
329
329
|
}); }
|
|
330
330
|
static { this.inlineSuggestion = AccessibilitySignal.register({
|
|
331
|
-
name: ( localize(
|
|
331
|
+
name: ( localize(1671, 'Inline Suggestion on Line')),
|
|
332
332
|
sound: Sound.quickFixes,
|
|
333
333
|
legacySoundSettingsKey: 'audioCues.lineHasInlineSuggestion',
|
|
334
334
|
settingsKey: 'accessibility.signals.lineHasInlineSuggestion',
|
|
335
335
|
}); }
|
|
336
336
|
static { this.nextEditSuggestion = AccessibilitySignal.register({
|
|
337
|
-
name: ( localize(
|
|
337
|
+
name: ( localize(1672, 'Next Edit Suggestion on Line')),
|
|
338
338
|
sound: Sound.nextEditSuggestion,
|
|
339
339
|
legacySoundSettingsKey: 'audioCues.nextEditSuggestion',
|
|
340
340
|
settingsKey: 'accessibility.signals.nextEditSuggestion',
|
|
341
|
-
announcementMessage: ( localize(
|
|
341
|
+
announcementMessage: ( localize(1673, 'Next Edit Suggestion')),
|
|
342
342
|
}); }
|
|
343
343
|
static { this.terminalQuickFix = AccessibilitySignal.register({
|
|
344
|
-
name: ( localize(
|
|
344
|
+
name: ( localize(1674, 'Terminal Quick Fix')),
|
|
345
345
|
sound: Sound.quickFixes,
|
|
346
346
|
legacySoundSettingsKey: 'audioCues.terminalQuickFix',
|
|
347
347
|
legacyAnnouncementSettingsKey: 'accessibility.alert.terminalQuickFix',
|
|
348
|
-
announcementMessage: ( localize(
|
|
348
|
+
announcementMessage: ( localize(1675, 'Quick Fix')),
|
|
349
349
|
settingsKey: 'accessibility.signals.terminalQuickFix',
|
|
350
350
|
}); }
|
|
351
351
|
static { this.onDebugBreak = AccessibilitySignal.register({
|
|
352
|
-
name: ( localize(
|
|
352
|
+
name: ( localize(1676, 'Debugger Stopped on Breakpoint')),
|
|
353
353
|
sound: Sound.break,
|
|
354
354
|
legacySoundSettingsKey: 'audioCues.onDebugBreak',
|
|
355
355
|
legacyAnnouncementSettingsKey: 'accessibility.alert.onDebugBreak',
|
|
356
|
-
announcementMessage: ( localize(
|
|
356
|
+
announcementMessage: ( localize(1677, 'Breakpoint')),
|
|
357
357
|
settingsKey: 'accessibility.signals.onDebugBreak',
|
|
358
358
|
}); }
|
|
359
359
|
static { this.noInlayHints = AccessibilitySignal.register({
|
|
360
|
-
name: ( localize(
|
|
360
|
+
name: ( localize(1678, 'No Inlay Hints on Line')),
|
|
361
361
|
sound: Sound.error,
|
|
362
362
|
legacySoundSettingsKey: 'audioCues.noInlayHints',
|
|
363
363
|
legacyAnnouncementSettingsKey: 'accessibility.alert.noInlayHints',
|
|
364
|
-
announcementMessage: ( localize(
|
|
364
|
+
announcementMessage: ( localize(1679, 'No Inlay Hints')),
|
|
365
365
|
settingsKey: 'accessibility.signals.noInlayHints',
|
|
366
366
|
}); }
|
|
367
367
|
static { this.taskCompleted = AccessibilitySignal.register({
|
|
368
|
-
name: ( localize(
|
|
368
|
+
name: ( localize(1680, 'Task Completed')),
|
|
369
369
|
sound: Sound.taskCompleted,
|
|
370
370
|
legacySoundSettingsKey: 'audioCues.taskCompleted',
|
|
371
371
|
legacyAnnouncementSettingsKey: 'accessibility.alert.taskCompleted',
|
|
372
|
-
announcementMessage: ( localize(
|
|
372
|
+
announcementMessage: ( localize(1681, 'Task Completed')),
|
|
373
373
|
settingsKey: 'accessibility.signals.taskCompleted',
|
|
374
374
|
}); }
|
|
375
375
|
static { this.taskFailed = AccessibilitySignal.register({
|
|
376
|
-
name: ( localize(
|
|
376
|
+
name: ( localize(1682, 'Task Failed')),
|
|
377
377
|
sound: Sound.taskFailed,
|
|
378
378
|
legacySoundSettingsKey: 'audioCues.taskFailed',
|
|
379
379
|
legacyAnnouncementSettingsKey: 'accessibility.alert.taskFailed',
|
|
380
|
-
announcementMessage: ( localize(
|
|
380
|
+
announcementMessage: ( localize(1683, 'Task Failed')),
|
|
381
381
|
settingsKey: 'accessibility.signals.taskFailed',
|
|
382
382
|
}); }
|
|
383
383
|
static { this.terminalCommandFailed = AccessibilitySignal.register({
|
|
384
|
-
name: ( localize(
|
|
384
|
+
name: ( localize(1684, 'Terminal Command Failed')),
|
|
385
385
|
sound: Sound.error,
|
|
386
386
|
legacySoundSettingsKey: 'audioCues.terminalCommandFailed',
|
|
387
387
|
legacyAnnouncementSettingsKey: 'accessibility.alert.terminalCommandFailed',
|
|
388
|
-
announcementMessage: ( localize(
|
|
388
|
+
announcementMessage: ( localize(1685, 'Command Failed')),
|
|
389
389
|
settingsKey: 'accessibility.signals.terminalCommandFailed',
|
|
390
390
|
}); }
|
|
391
391
|
static { this.terminalCommandSucceeded = AccessibilitySignal.register({
|
|
392
|
-
name: ( localize(
|
|
392
|
+
name: ( localize(1686, 'Terminal Command Succeeded')),
|
|
393
393
|
sound: Sound.terminalCommandSucceeded,
|
|
394
|
-
announcementMessage: ( localize(
|
|
394
|
+
announcementMessage: ( localize(1687, 'Command Succeeded')),
|
|
395
395
|
settingsKey: 'accessibility.signals.terminalCommandSucceeded',
|
|
396
396
|
}); }
|
|
397
397
|
static { this.terminalBell = AccessibilitySignal.register({
|
|
398
|
-
name: ( localize(
|
|
398
|
+
name: ( localize(1688, 'Terminal Bell')),
|
|
399
399
|
sound: Sound.terminalBell,
|
|
400
400
|
legacySoundSettingsKey: 'audioCues.terminalBell',
|
|
401
401
|
legacyAnnouncementSettingsKey: 'accessibility.alert.terminalBell',
|
|
402
|
-
announcementMessage: ( localize(
|
|
402
|
+
announcementMessage: ( localize(1689, 'Terminal Bell')),
|
|
403
403
|
settingsKey: 'accessibility.signals.terminalBell',
|
|
404
404
|
}); }
|
|
405
405
|
static { this.notebookCellCompleted = AccessibilitySignal.register({
|
|
406
|
-
name: ( localize(
|
|
406
|
+
name: ( localize(1690, 'Notebook Cell Completed')),
|
|
407
407
|
sound: Sound.taskCompleted,
|
|
408
408
|
legacySoundSettingsKey: 'audioCues.notebookCellCompleted',
|
|
409
409
|
legacyAnnouncementSettingsKey: 'accessibility.alert.notebookCellCompleted',
|
|
410
|
-
announcementMessage: ( localize(
|
|
410
|
+
announcementMessage: ( localize(1691, 'Notebook Cell Completed')),
|
|
411
411
|
settingsKey: 'accessibility.signals.notebookCellCompleted',
|
|
412
412
|
}); }
|
|
413
413
|
static { this.notebookCellFailed = AccessibilitySignal.register({
|
|
414
|
-
name: ( localize(
|
|
414
|
+
name: ( localize(1692, 'Notebook Cell Failed')),
|
|
415
415
|
sound: Sound.taskFailed,
|
|
416
416
|
legacySoundSettingsKey: 'audioCues.notebookCellFailed',
|
|
417
417
|
legacyAnnouncementSettingsKey: 'accessibility.alert.notebookCellFailed',
|
|
418
|
-
announcementMessage: ( localize(
|
|
418
|
+
announcementMessage: ( localize(1693, 'Notebook Cell Failed')),
|
|
419
419
|
settingsKey: 'accessibility.signals.notebookCellFailed',
|
|
420
420
|
}); }
|
|
421
421
|
static { this.diffLineInserted = AccessibilitySignal.register({
|
|
422
|
-
name: ( localize(
|
|
422
|
+
name: ( localize(1694, 'Diff Line Inserted')),
|
|
423
423
|
sound: Sound.diffLineInserted,
|
|
424
424
|
legacySoundSettingsKey: 'audioCues.diffLineInserted',
|
|
425
425
|
settingsKey: 'accessibility.signals.diffLineInserted',
|
|
426
426
|
}); }
|
|
427
427
|
static { this.diffLineDeleted = AccessibilitySignal.register({
|
|
428
|
-
name: ( localize(
|
|
428
|
+
name: ( localize(1695, 'Diff Line Deleted')),
|
|
429
429
|
sound: Sound.diffLineDeleted,
|
|
430
430
|
legacySoundSettingsKey: 'audioCues.diffLineDeleted',
|
|
431
431
|
settingsKey: 'accessibility.signals.diffLineDeleted',
|
|
432
432
|
}); }
|
|
433
433
|
static { this.diffLineModified = AccessibilitySignal.register({
|
|
434
|
-
name: ( localize(
|
|
434
|
+
name: ( localize(1696, 'Diff Line Modified')),
|
|
435
435
|
sound: Sound.diffLineModified,
|
|
436
436
|
legacySoundSettingsKey: 'audioCues.diffLineModified',
|
|
437
437
|
settingsKey: 'accessibility.signals.diffLineModified',
|
|
438
438
|
}); }
|
|
439
439
|
static { this.chatEditModifiedFile = AccessibilitySignal.register({
|
|
440
|
-
name: ( localize(
|
|
440
|
+
name: ( localize(1697, 'Chat Edit Modified File')),
|
|
441
441
|
sound: Sound.chatEditModifiedFile,
|
|
442
|
-
announcementMessage: ( localize(
|
|
442
|
+
announcementMessage: ( localize(1698, 'File Modified from Chat Edits')),
|
|
443
443
|
settingsKey: 'accessibility.signals.chatEditModifiedFile',
|
|
444
444
|
}); }
|
|
445
445
|
static { this.chatRequestSent = AccessibilitySignal.register({
|
|
446
|
-
name: ( localize(
|
|
446
|
+
name: ( localize(1699, 'Chat Request Sent')),
|
|
447
447
|
sound: Sound.requestSent,
|
|
448
448
|
legacySoundSettingsKey: 'audioCues.chatRequestSent',
|
|
449
449
|
legacyAnnouncementSettingsKey: 'accessibility.alert.chatRequestSent',
|
|
450
|
-
announcementMessage: ( localize(
|
|
450
|
+
announcementMessage: ( localize(1700, 'Chat Request Sent')),
|
|
451
451
|
settingsKey: 'accessibility.signals.chatRequestSent',
|
|
452
452
|
}); }
|
|
453
453
|
static { this.chatResponseReceived = AccessibilitySignal.register({
|
|
454
|
-
name: ( localize(
|
|
454
|
+
name: ( localize(1701, 'Chat Response Received')),
|
|
455
455
|
legacySoundSettingsKey: 'audioCues.chatResponseReceived',
|
|
456
456
|
sound: {
|
|
457
457
|
randomOneOf: [
|
|
@@ -464,79 +464,79 @@ class AccessibilitySignal {
|
|
|
464
464
|
settingsKey: 'accessibility.signals.chatResponseReceived'
|
|
465
465
|
}); }
|
|
466
466
|
static { this.codeActionTriggered = AccessibilitySignal.register({
|
|
467
|
-
name: ( localize(
|
|
467
|
+
name: ( localize(1702, 'Code Action Request Triggered')),
|
|
468
468
|
sound: Sound.codeActionTriggered,
|
|
469
469
|
legacySoundSettingsKey: 'audioCues.codeActionRequestTriggered',
|
|
470
470
|
legacyAnnouncementSettingsKey: 'accessibility.alert.codeActionRequestTriggered',
|
|
471
|
-
announcementMessage: ( localize(
|
|
471
|
+
announcementMessage: ( localize(1703, 'Code Action Request Triggered')),
|
|
472
472
|
settingsKey: 'accessibility.signals.codeActionTriggered',
|
|
473
473
|
}); }
|
|
474
474
|
static { this.codeActionApplied = AccessibilitySignal.register({
|
|
475
|
-
name: ( localize(
|
|
475
|
+
name: ( localize(1704, 'Code Action Applied')),
|
|
476
476
|
legacySoundSettingsKey: 'audioCues.codeActionApplied',
|
|
477
477
|
sound: Sound.codeActionApplied,
|
|
478
478
|
settingsKey: 'accessibility.signals.codeActionApplied'
|
|
479
479
|
}); }
|
|
480
480
|
static { this.progress = AccessibilitySignal.register({
|
|
481
|
-
name: ( localize(
|
|
481
|
+
name: ( localize(1705, 'Progress')),
|
|
482
482
|
sound: Sound.progress,
|
|
483
483
|
legacySoundSettingsKey: 'audioCues.chatResponsePending',
|
|
484
484
|
legacyAnnouncementSettingsKey: 'accessibility.alert.progress',
|
|
485
|
-
announcementMessage: ( localize(
|
|
485
|
+
announcementMessage: ( localize(1706, 'Progress')),
|
|
486
486
|
settingsKey: 'accessibility.signals.progress'
|
|
487
487
|
}); }
|
|
488
488
|
static { this.clear = AccessibilitySignal.register({
|
|
489
|
-
name: ( localize(
|
|
489
|
+
name: ( localize(1707, 'Clear')),
|
|
490
490
|
sound: Sound.clear,
|
|
491
491
|
legacySoundSettingsKey: 'audioCues.clear',
|
|
492
492
|
legacyAnnouncementSettingsKey: 'accessibility.alert.clear',
|
|
493
|
-
announcementMessage: ( localize(
|
|
493
|
+
announcementMessage: ( localize(1708, 'Clear')),
|
|
494
494
|
settingsKey: 'accessibility.signals.clear'
|
|
495
495
|
}); }
|
|
496
496
|
static { this.save = AccessibilitySignal.register({
|
|
497
|
-
name: ( localize(
|
|
497
|
+
name: ( localize(1709, 'Save')),
|
|
498
498
|
sound: Sound.save,
|
|
499
499
|
legacySoundSettingsKey: 'audioCues.save',
|
|
500
500
|
legacyAnnouncementSettingsKey: 'accessibility.alert.save',
|
|
501
|
-
announcementMessage: ( localize(
|
|
501
|
+
announcementMessage: ( localize(1710, 'Save')),
|
|
502
502
|
settingsKey: 'accessibility.signals.save'
|
|
503
503
|
}); }
|
|
504
504
|
static { this.format = AccessibilitySignal.register({
|
|
505
|
-
name: ( localize(
|
|
505
|
+
name: ( localize(1711, 'Format')),
|
|
506
506
|
sound: Sound.format,
|
|
507
507
|
legacySoundSettingsKey: 'audioCues.format',
|
|
508
508
|
legacyAnnouncementSettingsKey: 'accessibility.alert.format',
|
|
509
|
-
announcementMessage: ( localize(
|
|
509
|
+
announcementMessage: ( localize(1712, 'Format')),
|
|
510
510
|
settingsKey: 'accessibility.signals.format'
|
|
511
511
|
}); }
|
|
512
512
|
static { this.voiceRecordingStarted = AccessibilitySignal.register({
|
|
513
|
-
name: ( localize(
|
|
513
|
+
name: ( localize(1713, 'Voice Recording Started')),
|
|
514
514
|
sound: Sound.voiceRecordingStarted,
|
|
515
515
|
legacySoundSettingsKey: 'audioCues.voiceRecordingStarted',
|
|
516
516
|
settingsKey: 'accessibility.signals.voiceRecordingStarted'
|
|
517
517
|
}); }
|
|
518
518
|
static { this.voiceRecordingStopped = AccessibilitySignal.register({
|
|
519
|
-
name: ( localize(
|
|
519
|
+
name: ( localize(1714, 'Voice Recording Stopped')),
|
|
520
520
|
sound: Sound.voiceRecordingStopped,
|
|
521
521
|
legacySoundSettingsKey: 'audioCues.voiceRecordingStopped',
|
|
522
522
|
settingsKey: 'accessibility.signals.voiceRecordingStopped'
|
|
523
523
|
}); }
|
|
524
524
|
static { this.editsKept = AccessibilitySignal.register({
|
|
525
|
-
name: ( localize(
|
|
525
|
+
name: ( localize(1715, 'Edits Kept')),
|
|
526
526
|
sound: Sound.editsKept,
|
|
527
|
-
announcementMessage: ( localize(
|
|
527
|
+
announcementMessage: ( localize(1716, 'Edits Kept')),
|
|
528
528
|
settingsKey: 'accessibility.signals.editsKept',
|
|
529
529
|
}); }
|
|
530
530
|
static { this.editsUndone = AccessibilitySignal.register({
|
|
531
|
-
name: ( localize(
|
|
531
|
+
name: ( localize(1717, 'Undo Edits')),
|
|
532
532
|
sound: Sound.editsUndone,
|
|
533
|
-
announcementMessage: ( localize(
|
|
533
|
+
announcementMessage: ( localize(1718, 'Edits Undone')),
|
|
534
534
|
settingsKey: 'accessibility.signals.editsUndone',
|
|
535
535
|
}); }
|
|
536
536
|
static { this.chatUserActionRequired = AccessibilitySignal.register({
|
|
537
|
-
name: ( localize(
|
|
537
|
+
name: ( localize(1719, 'Chat User Action Required')),
|
|
538
538
|
sound: Sound.chatUserActionRequired,
|
|
539
|
-
announcementMessage: ( localize(
|
|
539
|
+
announcementMessage: ( localize(1720, 'Chat User Action Required')),
|
|
540
540
|
settingsKey: 'accessibility.signals.chatUserActionRequired',
|
|
541
541
|
managesOwnEnablement: true
|
|
542
542
|
}); }
|
|
@@ -13,7 +13,7 @@ export interface ILocalizedString {
|
|
|
13
13
|
*/
|
|
14
14
|
original: string;
|
|
15
15
|
}
|
|
16
|
-
export declare function isLocalizedString(thing:
|
|
16
|
+
export declare function isLocalizedString(thing: unknown): thing is ILocalizedString;
|
|
17
17
|
export interface ICommandActionTitle extends ILocalizedString {
|
|
18
18
|
/**
|
|
19
19
|
* The title with a mnemonic designation. && precedes the mnemonic.
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
import { localize2 } from '../../../nls.js';
|
|
3
3
|
|
|
4
4
|
const Categories = ( Object.freeze({
|
|
5
|
-
View: ( localize2(
|
|
6
|
-
Help: ( localize2(
|
|
7
|
-
Test: ( localize2(
|
|
8
|
-
File: ( localize2(
|
|
9
|
-
Preferences: ( localize2(
|
|
10
|
-
Developer: ( localize2(
|
|
5
|
+
View: ( localize2(1721, 'View')),
|
|
6
|
+
Help: ( localize2(1722, 'Help')),
|
|
7
|
+
Test: ( localize2(1723, 'Test')),
|
|
8
|
+
File: ( localize2(1724, 'File')),
|
|
9
|
+
Preferences: ( localize2(1725, 'Preferences')),
|
|
10
|
+
Developer: ( localize2(1726, "Developer")),
|
|
11
11
|
}));
|
|
12
12
|
|
|
13
13
|
export { Categories };
|
|
@@ -124,10 +124,10 @@ let ActionItemRenderer = class ActionItemRenderer {
|
|
|
124
124
|
}
|
|
125
125
|
else if (actionTitle && previewTitle) {
|
|
126
126
|
if (this._supportsPreview && element.canPreview) {
|
|
127
|
-
data.container.title = ( localize(
|
|
127
|
+
data.container.title = ( localize(1727, "{0} to Apply, {1} to Preview", actionTitle, previewTitle));
|
|
128
128
|
}
|
|
129
129
|
else {
|
|
130
|
-
data.container.title = ( localize(
|
|
130
|
+
data.container.title = ( localize(1728, "{0} to Apply", actionTitle));
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
else {
|
|
@@ -195,13 +195,13 @@ let ActionList = class ActionList extends Disposable {
|
|
|
195
195
|
label = label + ', ' + stripNewlines(element.description);
|
|
196
196
|
}
|
|
197
197
|
if (element.disabled) {
|
|
198
|
-
label = ( localize(
|
|
198
|
+
label = ( localize(1729, "{0}, Disabled Reason: {1}", label, element.disabled));
|
|
199
199
|
}
|
|
200
200
|
return label;
|
|
201
201
|
}
|
|
202
202
|
return null;
|
|
203
203
|
},
|
|
204
|
-
getWidgetAriaLabel: () => ( localize(
|
|
204
|
+
getWidgetAriaLabel: () => ( localize(1730, "Action Widget")),
|
|
205
205
|
getRole: (e) => {
|
|
206
206
|
switch (e.kind) {
|
|
207
207
|
case ActionListItemKind.Action:
|
|
@@ -29,9 +29,9 @@ import '../../theme/common/colors/searchColors.js';
|
|
|
29
29
|
import { IActionWidgetService } from './actionWidget.service.js';
|
|
30
30
|
|
|
31
31
|
registerCss(actionWidget);
|
|
32
|
-
registerColor('actionBar.toggledBackground', inputActiveOptionBackground, ( localize(
|
|
32
|
+
registerColor('actionBar.toggledBackground', inputActiveOptionBackground, ( localize(1731, 'Background color for toggled action items in action bar.')));
|
|
33
33
|
const ActionWidgetContextKeys = {
|
|
34
|
-
Visible: ( new RawContextKey('codeActionMenuVisible', false, ( localize(
|
|
34
|
+
Visible: ( new RawContextKey('codeActionMenuVisible', false, ( localize(1732, "Whether the action widget list is visible"))))
|
|
35
35
|
};
|
|
36
36
|
let ActionWidgetService = class ActionWidgetService extends Disposable {
|
|
37
37
|
get isVisible() {
|
|
@@ -134,7 +134,7 @@ registerAction2(class extends Action2 {
|
|
|
134
134
|
constructor() {
|
|
135
135
|
super({
|
|
136
136
|
id: 'hideCodeActionWidget',
|
|
137
|
-
title: ( localize2(
|
|
137
|
+
title: ( localize2(1733, "Hide action widget")),
|
|
138
138
|
precondition: ActionWidgetContextKeys.Visible,
|
|
139
139
|
keybinding: {
|
|
140
140
|
weight,
|
|
@@ -151,7 +151,7 @@ registerAction2(class extends Action2 {
|
|
|
151
151
|
constructor() {
|
|
152
152
|
super({
|
|
153
153
|
id: 'selectPrevCodeAction',
|
|
154
|
-
title: ( localize2(
|
|
154
|
+
title: ( localize2(1734, "Select previous action")),
|
|
155
155
|
precondition: ActionWidgetContextKeys.Visible,
|
|
156
156
|
keybinding: {
|
|
157
157
|
weight,
|
|
@@ -172,7 +172,7 @@ registerAction2(class extends Action2 {
|
|
|
172
172
|
constructor() {
|
|
173
173
|
super({
|
|
174
174
|
id: 'selectNextCodeAction',
|
|
175
|
-
title: ( localize2(
|
|
175
|
+
title: ( localize2(1735, "Select next action")),
|
|
176
176
|
precondition: ActionWidgetContextKeys.Visible,
|
|
177
177
|
keybinding: {
|
|
178
178
|
weight,
|
|
@@ -193,7 +193,7 @@ registerAction2(class extends Action2 {
|
|
|
193
193
|
constructor() {
|
|
194
194
|
super({
|
|
195
195
|
id: acceptSelectedActionCommand,
|
|
196
|
-
title: ( localize2(
|
|
196
|
+
title: ( localize2(1736, "Accept selected action")),
|
|
197
197
|
precondition: ActionWidgetContextKeys.Visible,
|
|
198
198
|
keybinding: {
|
|
199
199
|
weight,
|
|
@@ -213,7 +213,7 @@ registerAction2(class extends Action2 {
|
|
|
213
213
|
constructor() {
|
|
214
214
|
super({
|
|
215
215
|
id: previewSelectedActionCommand,
|
|
216
|
-
title: ( localize2(
|
|
216
|
+
title: ( localize2(1737, "Preview selected action")),
|
|
217
217
|
precondition: ActionWidgetContextKeys.Visible,
|
|
218
218
|
keybinding: {
|
|
219
219
|
weight,
|
|
@@ -5,7 +5,7 @@ import { IActionViewItemFactory } from "@codingame/monaco-vscode-view-common-ser
|
|
|
5
5
|
export declare const IActionViewItemService: import("../../instantiation/common/instantiation.js").ServiceIdentifier<IActionViewItemService>;
|
|
6
6
|
export interface IActionViewItemService {
|
|
7
7
|
_serviceBrand: undefined;
|
|
8
|
-
onDidChange: Event<MenuId>;
|
|
8
|
+
readonly onDidChange: Event<MenuId>;
|
|
9
9
|
register(menu: MenuId, submenu: MenuId, provider: IActionViewItemFactory, event?: Event<unknown>): IDisposable;
|
|
10
10
|
register(menu: MenuId, commandId: string, provider: IActionViewItemFactory, event?: Event<unknown>): IDisposable;
|
|
11
11
|
lookUp(menu: MenuId, submenu: MenuId): IActionViewItemFactory | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActionViewItem, BaseActionViewItem } from "../../../base/browser/ui/actionbar/actionViewItems.js";
|
|
2
2
|
import { DropdownMenuActionViewItem, IDropdownMenuActionViewItemOptions } from "../../../base/browser/ui/dropdown/dropdownActionViewItem.js";
|
|
3
3
|
import { IHoverDelegate } from "../../../base/browser/ui/hover/hoverDelegate.js";
|
|
4
|
-
import { IAction, SubmenuAction } from "../../../base/common/actions.js";
|
|
4
|
+
import { IAction, IActionRunner, SubmenuAction } from "../../../base/common/actions.js";
|
|
5
5
|
import { Event } from "../../../base/common/event.js";
|
|
6
6
|
import { IAccessibilityService } from "../../accessibility/common/accessibility.service.js";
|
|
7
7
|
import { IContextKeyService } from "../../contextkey/common/contextkey.service.js";
|
|
@@ -82,7 +82,7 @@ export declare class SubmenuEntryActionViewItem extends DropdownMenuActionViewIt
|
|
|
82
82
|
}
|
|
83
83
|
export interface IDropdownWithDefaultActionViewItemOptions extends IDropdownMenuActionViewItemOptions {
|
|
84
84
|
renderKeybindingWithDefaultActionLabel?: boolean;
|
|
85
|
-
|
|
85
|
+
togglePrimaryAction?: boolean;
|
|
86
86
|
}
|
|
87
87
|
export declare class DropdownWithDefaultActionViewItem extends BaseActionViewItem {
|
|
88
88
|
protected readonly _keybindingService: IKeybindingService;
|
|
@@ -102,6 +102,8 @@ export declare class DropdownWithDefaultActionViewItem extends BaseActionViewIte
|
|
|
102
102
|
private update;
|
|
103
103
|
private _getDefaultActionKeybindingLabel;
|
|
104
104
|
setActionContext(newContext: unknown): void;
|
|
105
|
+
set actionRunner(actionRunner: IActionRunner);
|
|
106
|
+
get actionRunner(): IActionRunner;
|
|
105
107
|
render(container: HTMLElement): void;
|
|
106
108
|
focus(fromRight?: boolean): void;
|
|
107
109
|
blur(): void;
|
|
@@ -188,17 +188,17 @@ let MenuEntryActionViewItem = class MenuEntryActionViewItem extends ActionViewIt
|
|
|
188
188
|
const keybindingLabel = keybinding && keybinding.getLabel();
|
|
189
189
|
const tooltip = this._commandAction.tooltip || this._commandAction.label;
|
|
190
190
|
let title = keybindingLabel
|
|
191
|
-
? ( localize(
|
|
191
|
+
? ( localize(1740, "{0} ({1})", tooltip, keybindingLabel))
|
|
192
192
|
: tooltip;
|
|
193
193
|
if (!this._wantsAltCommand && this._menuItemAction.alt?.enabled) {
|
|
194
194
|
const altTooltip = this._menuItemAction.alt.tooltip || this._menuItemAction.alt.label;
|
|
195
195
|
const altKeybinding = this._keybindingService.lookupKeybinding(this._menuItemAction.alt.id, this._contextKeyService);
|
|
196
196
|
const altKeybindingLabel = altKeybinding && altKeybinding.getLabel();
|
|
197
197
|
const altTitleSection = altKeybindingLabel
|
|
198
|
-
? ( localize(
|
|
198
|
+
? ( localize(1740, "{0} ({1})", altTooltip, altKeybindingLabel))
|
|
199
199
|
: altTooltip;
|
|
200
200
|
title = ( localize(
|
|
201
|
-
|
|
201
|
+
1741,
|
|
202
202
|
"{0}\n[{1}] {2}",
|
|
203
203
|
title,
|
|
204
204
|
UILabelProvider.modifierLabels[OS].altKey,
|
|
@@ -274,10 +274,10 @@ class TextOnlyMenuEntryActionViewItem extends MenuEntryActionViewItem {
|
|
|
274
274
|
if (this.label) {
|
|
275
275
|
const kb2 = TextOnlyMenuEntryActionViewItem._symbolPrintEnter(kb);
|
|
276
276
|
if (this._options?.conversational) {
|
|
277
|
-
this.label.textContent = ( localize(
|
|
277
|
+
this.label.textContent = ( localize(1742, '{1} to {0}', this._action.label, kb2));
|
|
278
278
|
}
|
|
279
279
|
else {
|
|
280
|
-
this.label.textContent = ( localize(
|
|
280
|
+
this.label.textContent = ( localize(1743, '{0} ({1})', this._action.label, kb2));
|
|
281
281
|
}
|
|
282
282
|
}
|
|
283
283
|
}
|
|
@@ -344,7 +344,7 @@ let DropdownWithDefaultActionViewItem = class DropdownWithDefaultActionViewItem
|
|
|
344
344
|
this._options = options;
|
|
345
345
|
this._storageKey = `${submenuAction.item.submenu.id}_lastActionId`;
|
|
346
346
|
let defaultAction;
|
|
347
|
-
const defaultActionId = options?.
|
|
347
|
+
const defaultActionId = options?.togglePrimaryAction ? _storageService.get(this._storageKey, StorageScope.WORKSPACE) : undefined;
|
|
348
348
|
if (defaultActionId) {
|
|
349
349
|
defaultAction = submenuAction.actions.find(a => defaultActionId === a.id);
|
|
350
350
|
}
|
|
@@ -365,14 +365,16 @@ let DropdownWithDefaultActionViewItem = class DropdownWithDefaultActionViewItem
|
|
|
365
365
|
this._contextMenuService,
|
|
366
366
|
dropdownOptions
|
|
367
367
|
)));
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
368
|
+
if (options?.togglePrimaryAction) {
|
|
369
|
+
this._register(this._dropdown.actionRunner.onDidRun((e) => {
|
|
370
|
+
if (e.action instanceof MenuItemAction) {
|
|
371
|
+
this.update(e.action);
|
|
372
|
+
}
|
|
373
|
+
}));
|
|
374
|
+
}
|
|
373
375
|
}
|
|
374
376
|
update(lastAction) {
|
|
375
|
-
if (this._options?.
|
|
377
|
+
if (this._options?.togglePrimaryAction) {
|
|
376
378
|
this._storageService.store(this._storageKey, lastAction.id, StorageScope.WORKSPACE, StorageTarget.MACHINE);
|
|
377
379
|
}
|
|
378
380
|
this._defaultActionDisposables.clear();
|
|
@@ -401,6 +403,14 @@ let DropdownWithDefaultActionViewItem = class DropdownWithDefaultActionViewItem
|
|
|
401
403
|
this._defaultAction.setActionContext(newContext);
|
|
402
404
|
this._dropdown.setActionContext(newContext);
|
|
403
405
|
}
|
|
406
|
+
set actionRunner(actionRunner) {
|
|
407
|
+
super.actionRunner = actionRunner;
|
|
408
|
+
this._defaultAction.actionRunner = actionRunner;
|
|
409
|
+
this._dropdown.actionRunner = actionRunner;
|
|
410
|
+
}
|
|
411
|
+
get actionRunner() {
|
|
412
|
+
return super.actionRunner;
|
|
413
|
+
}
|
|
404
414
|
render(container) {
|
|
405
415
|
this._container = container;
|
|
406
416
|
super.render(this._container);
|
|
@@ -490,13 +500,14 @@ function createActionViewItem(instaService, action, options) {
|
|
|
490
500
|
if (action.item.isSelection) {
|
|
491
501
|
return instaService.createInstance(SubmenuEntrySelectActionViewItem, action);
|
|
492
502
|
}
|
|
503
|
+
else if (action.item.isSplitButton) {
|
|
504
|
+
return instaService.createInstance(DropdownWithDefaultActionViewItem, action, {
|
|
505
|
+
...options,
|
|
506
|
+
togglePrimaryAction: typeof action.item.isSplitButton !== 'boolean' ? action.item.isSplitButton.togglePrimaryAction : false,
|
|
507
|
+
});
|
|
508
|
+
}
|
|
493
509
|
else {
|
|
494
|
-
|
|
495
|
-
return instaService.createInstance(DropdownWithDefaultActionViewItem, action, { ...options, persistLastActionId: true });
|
|
496
|
-
}
|
|
497
|
-
else {
|
|
498
|
-
return instaService.createInstance(SubmenuEntryActionViewItem, action, options);
|
|
499
|
-
}
|
|
510
|
+
return instaService.createInstance(SubmenuEntryActionViewItem, action, options);
|
|
500
511
|
}
|
|
501
512
|
}
|
|
502
513
|
else {
|
|
@@ -144,7 +144,7 @@ let WorkbenchToolBar = class WorkbenchToolBar extends ToolBar {
|
|
|
144
144
|
else {
|
|
145
145
|
primaryActions.push(toAction({
|
|
146
146
|
id: 'label',
|
|
147
|
-
label: ( localize(
|
|
147
|
+
label: ( localize(1744, "Hide")),
|
|
148
148
|
enabled: false,
|
|
149
149
|
run() { }
|
|
150
150
|
}));
|
|
@@ -158,7 +158,7 @@ let WorkbenchToolBar = class WorkbenchToolBar extends ToolBar {
|
|
|
158
158
|
actions.push(( new Separator()));
|
|
159
159
|
actions.push(toAction({
|
|
160
160
|
id: 'resetThisMenu',
|
|
161
|
-
label: ( localize(
|
|
161
|
+
label: ( localize(1745, "Reset Menu")),
|
|
162
162
|
run: () => this._menuService.resetHiddenStates(menuIds)
|
|
163
163
|
}));
|
|
164
164
|
}
|