@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
|
@@ -66,7 +66,7 @@ const baseVerbosityProperty = {
|
|
|
66
66
|
};
|
|
67
67
|
const accessibilityConfigurationNodeBase = ( Object.freeze({
|
|
68
68
|
id: 'accessibility',
|
|
69
|
-
title: ( localize(
|
|
69
|
+
title: ( localize(4154, "Accessibility")),
|
|
70
70
|
type: 'object'
|
|
71
71
|
}));
|
|
72
72
|
const soundFeatureBase = {
|
|
@@ -74,9 +74,9 @@ const soundFeatureBase = {
|
|
|
74
74
|
'enum': ['auto', 'on', 'off'],
|
|
75
75
|
'default': 'auto',
|
|
76
76
|
'enumDescriptions': [
|
|
77
|
-
( localize(
|
|
78
|
-
( localize(
|
|
79
|
-
( localize(
|
|
77
|
+
( localize(4155, "Enable sound when a screen reader is attached.")),
|
|
78
|
+
( localize(4156, "Enable sound.")),
|
|
79
|
+
( localize(4157, "Disable sound."))
|
|
80
80
|
],
|
|
81
81
|
tags: ['accessibility'],
|
|
82
82
|
};
|
|
@@ -95,10 +95,10 @@ const announcementFeatureBase = {
|
|
|
95
95
|
'default': 'auto',
|
|
96
96
|
'enumDescriptions': [
|
|
97
97
|
( localize(
|
|
98
|
-
|
|
98
|
+
4158,
|
|
99
99
|
"Enable announcement, will only play when in screen reader optimized mode."
|
|
100
100
|
)),
|
|
101
|
-
( localize(
|
|
101
|
+
( localize(4159, "Disable announcement."))
|
|
102
102
|
],
|
|
103
103
|
tags: ['accessibility'],
|
|
104
104
|
};
|
|
@@ -116,109 +116,109 @@ const configuration = {
|
|
|
116
116
|
properties: {
|
|
117
117
|
[AccessibilityVerbositySettingId.Terminal]: {
|
|
118
118
|
description: ( localize(
|
|
119
|
-
|
|
119
|
+
4160,
|
|
120
120
|
'Provide information about how to access the terminal accessibility help menu when the terminal is focused.'
|
|
121
121
|
)),
|
|
122
122
|
...baseVerbosityProperty
|
|
123
123
|
},
|
|
124
124
|
[AccessibilityVerbositySettingId.DiffEditor]: {
|
|
125
125
|
description: ( localize(
|
|
126
|
-
|
|
126
|
+
4161,
|
|
127
127
|
'Provide information about how to navigate changes in the diff editor when it is focused.'
|
|
128
128
|
)),
|
|
129
129
|
...baseVerbosityProperty
|
|
130
130
|
},
|
|
131
131
|
[AccessibilityVerbositySettingId.Chat]: {
|
|
132
132
|
description: ( localize(
|
|
133
|
-
|
|
133
|
+
4162,
|
|
134
134
|
'Provide information about how to access the chat help menu when the chat input is focused.'
|
|
135
135
|
)),
|
|
136
136
|
...baseVerbosityProperty
|
|
137
137
|
},
|
|
138
138
|
[AccessibilityVerbositySettingId.InlineChat]: {
|
|
139
139
|
description: ( localize(
|
|
140
|
-
|
|
140
|
+
4163,
|
|
141
141
|
'Provide information about how to access the inline editor chat accessibility help menu and alert with hints that describe how to use the feature when the input is focused.'
|
|
142
142
|
)),
|
|
143
143
|
...baseVerbosityProperty
|
|
144
144
|
},
|
|
145
145
|
[AccessibilityVerbositySettingId.InlineCompletions]: {
|
|
146
146
|
description: ( localize(
|
|
147
|
-
|
|
147
|
+
4164,
|
|
148
148
|
'Provide information about how to access the inline completions hover and Accessible View.'
|
|
149
149
|
)),
|
|
150
150
|
...baseVerbosityProperty
|
|
151
151
|
},
|
|
152
152
|
[AccessibilityVerbositySettingId.KeybindingsEditor]: {
|
|
153
153
|
description: ( localize(
|
|
154
|
-
|
|
154
|
+
4165,
|
|
155
155
|
'Provide information about how to change a keybinding in the keybindings editor when a row is focused.'
|
|
156
156
|
)),
|
|
157
157
|
...baseVerbosityProperty
|
|
158
158
|
},
|
|
159
159
|
[AccessibilityVerbositySettingId.Notebook]: {
|
|
160
160
|
description: ( localize(
|
|
161
|
-
|
|
161
|
+
4166,
|
|
162
162
|
'Provide information about how to focus the cell container or inner editor when a notebook cell is focused.'
|
|
163
163
|
)),
|
|
164
164
|
...baseVerbosityProperty
|
|
165
165
|
},
|
|
166
166
|
[AccessibilityVerbositySettingId.Hover]: {
|
|
167
167
|
description: ( localize(
|
|
168
|
-
|
|
168
|
+
4167,
|
|
169
169
|
'Provide information about how to open the hover in an Accessible View.'
|
|
170
170
|
)),
|
|
171
171
|
...baseVerbosityProperty
|
|
172
172
|
},
|
|
173
173
|
[AccessibilityVerbositySettingId.Notification]: {
|
|
174
174
|
description: ( localize(
|
|
175
|
-
|
|
175
|
+
4168,
|
|
176
176
|
'Provide information about how to open the notification in an Accessible View.'
|
|
177
177
|
)),
|
|
178
178
|
...baseVerbosityProperty
|
|
179
179
|
},
|
|
180
180
|
[AccessibilityVerbositySettingId.EmptyEditorHint]: {
|
|
181
181
|
description: ( localize(
|
|
182
|
-
|
|
182
|
+
4169,
|
|
183
183
|
'Provide information about relevant actions in an empty text editor.'
|
|
184
184
|
)),
|
|
185
185
|
...baseVerbosityProperty
|
|
186
186
|
},
|
|
187
187
|
[AccessibilityVerbositySettingId.ReplEditor]: {
|
|
188
188
|
description: ( localize(
|
|
189
|
-
|
|
189
|
+
4170,
|
|
190
190
|
'Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused.'
|
|
191
191
|
)),
|
|
192
192
|
...baseVerbosityProperty
|
|
193
193
|
},
|
|
194
194
|
[AccessibilityVerbositySettingId.Comments]: {
|
|
195
195
|
description: ( localize(
|
|
196
|
-
|
|
196
|
+
4171,
|
|
197
197
|
'Provide information about actions that can be taken in the comment widget or in a file which contains comments.'
|
|
198
198
|
)),
|
|
199
199
|
...baseVerbosityProperty
|
|
200
200
|
},
|
|
201
201
|
[AccessibilityVerbositySettingId.DiffEditorActive]: {
|
|
202
|
-
description: ( localize(
|
|
202
|
+
description: ( localize(4172, 'Indicate when a diff editor becomes the active editor.')),
|
|
203
203
|
...baseVerbosityProperty
|
|
204
204
|
},
|
|
205
205
|
[AccessibilityVerbositySettingId.Debug]: {
|
|
206
206
|
description: ( localize(
|
|
207
|
-
|
|
207
|
+
4173,
|
|
208
208
|
'Provide information about how to access the debug console accessibility help dialog when the debug console or run and debug viewlet is focused. Note that a reload of the window is required for this to take effect.'
|
|
209
209
|
)),
|
|
210
210
|
...baseVerbosityProperty
|
|
211
211
|
},
|
|
212
212
|
[AccessibilityVerbositySettingId.Walkthrough]: {
|
|
213
213
|
description: ( localize(
|
|
214
|
-
|
|
214
|
+
4174,
|
|
215
215
|
'Provide information about how to open the walkthrough in an Accessible View.'
|
|
216
216
|
)),
|
|
217
217
|
...baseVerbosityProperty
|
|
218
218
|
},
|
|
219
219
|
[AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
|
|
220
220
|
markdownDescription: ( localize(
|
|
221
|
-
|
|
221
|
+
4175,
|
|
222
222
|
"On keypress, close the Accessible View and focus the element from which it was invoked."
|
|
223
223
|
)),
|
|
224
224
|
type: 'boolean',
|
|
@@ -226,13 +226,13 @@ const configuration = {
|
|
|
226
226
|
},
|
|
227
227
|
[AccessibilityVerbositySettingId.SourceControl]: {
|
|
228
228
|
description: ( localize(
|
|
229
|
-
|
|
229
|
+
4176,
|
|
230
230
|
'Provide information about how to access the source control accessibility help menu when the input is focused.'
|
|
231
231
|
)),
|
|
232
232
|
...baseVerbosityProperty
|
|
233
233
|
},
|
|
234
234
|
'accessibility.signalOptions.volume': {
|
|
235
|
-
'description': ( localize(
|
|
235
|
+
'description': ( localize(4177, "The volume of the sounds in percent (0-100).")),
|
|
236
236
|
'type': 'number',
|
|
237
237
|
'minimum': 0,
|
|
238
238
|
'maximum': 100,
|
|
@@ -240,7 +240,7 @@ const configuration = {
|
|
|
240
240
|
'tags': ['accessibility']
|
|
241
241
|
},
|
|
242
242
|
'accessibility.signalOptions.debouncePositionChanges': {
|
|
243
|
-
'description': ( localize(
|
|
243
|
+
'description': ( localize(4178, "Whether or not position changes should be debounced")),
|
|
244
244
|
'type': 'boolean',
|
|
245
245
|
'default': false,
|
|
246
246
|
'tags': ['accessibility']
|
|
@@ -251,13 +251,13 @@ const configuration = {
|
|
|
251
251
|
'additionalProperties': false,
|
|
252
252
|
'properties': {
|
|
253
253
|
'announcement': {
|
|
254
|
-
'description': ( localize(
|
|
254
|
+
'description': ( localize(4179, "The delay in milliseconds before an announcement is made.")),
|
|
255
255
|
'type': 'number',
|
|
256
256
|
'minimum': 0,
|
|
257
257
|
'default': 3000
|
|
258
258
|
},
|
|
259
259
|
'sound': {
|
|
260
|
-
'description': ( localize(
|
|
260
|
+
'description': ( localize(4180, "The delay in milliseconds before a sound is played.")),
|
|
261
261
|
'type': 'number',
|
|
262
262
|
'minimum': 0,
|
|
263
263
|
'default': 400
|
|
@@ -271,7 +271,7 @@ const configuration = {
|
|
|
271
271
|
'properties': {
|
|
272
272
|
'announcement': {
|
|
273
273
|
'description': ( localize(
|
|
274
|
-
|
|
274
|
+
4181,
|
|
275
275
|
"The delay in milliseconds before an announcement is made when there's a warning at the position."
|
|
276
276
|
)),
|
|
277
277
|
'type': 'number',
|
|
@@ -280,7 +280,7 @@ const configuration = {
|
|
|
280
280
|
},
|
|
281
281
|
'sound': {
|
|
282
282
|
'description': ( localize(
|
|
283
|
-
|
|
283
|
+
4182,
|
|
284
284
|
"The delay in milliseconds before a sound is played when there's a warning at the position."
|
|
285
285
|
)),
|
|
286
286
|
'type': 'number',
|
|
@@ -296,7 +296,7 @@ const configuration = {
|
|
|
296
296
|
'properties': {
|
|
297
297
|
'announcement': {
|
|
298
298
|
'description': ( localize(
|
|
299
|
-
|
|
299
|
+
4183,
|
|
300
300
|
"The delay in milliseconds before an announcement is made when there's an error at the position."
|
|
301
301
|
)),
|
|
302
302
|
'type': 'number',
|
|
@@ -305,7 +305,7 @@ const configuration = {
|
|
|
305
305
|
},
|
|
306
306
|
'sound': {
|
|
307
307
|
'description': ( localize(
|
|
308
|
-
|
|
308
|
+
4184,
|
|
309
309
|
"The delay in milliseconds before a sound is played when there's an error at the position."
|
|
310
310
|
)),
|
|
311
311
|
'type': 'number',
|
|
@@ -318,16 +318,16 @@ const configuration = {
|
|
|
318
318
|
'accessibility.signals.lineHasBreakpoint': {
|
|
319
319
|
...signalFeatureBase,
|
|
320
320
|
'description': ( localize(
|
|
321
|
-
|
|
321
|
+
4185,
|
|
322
322
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
|
|
323
323
|
)),
|
|
324
324
|
'properties': {
|
|
325
325
|
'sound': {
|
|
326
|
-
'description': ( localize(
|
|
326
|
+
'description': ( localize(4186, "Plays a sound when the active line has a breakpoint.")),
|
|
327
327
|
...soundFeatureBase
|
|
328
328
|
},
|
|
329
329
|
'announcement': {
|
|
330
|
-
'description': ( localize(
|
|
330
|
+
'description': ( localize(4187, "Announces when the active line has a breakpoint.")),
|
|
331
331
|
...announcementFeatureBase
|
|
332
332
|
},
|
|
333
333
|
},
|
|
@@ -335,12 +335,12 @@ const configuration = {
|
|
|
335
335
|
'accessibility.signals.lineHasInlineSuggestion': {
|
|
336
336
|
...defaultNoAnnouncement,
|
|
337
337
|
'description': ( localize(
|
|
338
|
-
|
|
338
|
+
4188,
|
|
339
339
|
"Plays a sound / audio cue when the active line has an inline suggestion."
|
|
340
340
|
)),
|
|
341
341
|
'properties': {
|
|
342
342
|
'sound': {
|
|
343
|
-
'description': ( localize(
|
|
343
|
+
'description': ( localize(4189, "Plays a sound when the active line has an inline suggestion.")),
|
|
344
344
|
...soundFeatureBase,
|
|
345
345
|
'default': 'off'
|
|
346
346
|
}
|
|
@@ -349,16 +349,16 @@ const configuration = {
|
|
|
349
349
|
'accessibility.signals.nextEditSuggestion': {
|
|
350
350
|
...signalFeatureBase,
|
|
351
351
|
'description': ( localize(
|
|
352
|
-
|
|
352
|
+
4190,
|
|
353
353
|
"Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
|
|
354
354
|
)),
|
|
355
355
|
'properties': {
|
|
356
356
|
'sound': {
|
|
357
|
-
'description': ( localize(
|
|
357
|
+
'description': ( localize(4191, "Plays a sound when there is a next edit suggestion.")),
|
|
358
358
|
...soundFeatureBase,
|
|
359
359
|
},
|
|
360
360
|
'announcement': {
|
|
361
|
-
'description': ( localize(
|
|
361
|
+
'description': ( localize(4192, "Announces when there is a next edit suggestion.")),
|
|
362
362
|
...announcementFeatureBase,
|
|
363
363
|
},
|
|
364
364
|
}
|
|
@@ -366,16 +366,16 @@ const configuration = {
|
|
|
366
366
|
'accessibility.signals.lineHasError': {
|
|
367
367
|
...signalFeatureBase,
|
|
368
368
|
'description': ( localize(
|
|
369
|
-
|
|
369
|
+
4193,
|
|
370
370
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
|
|
371
371
|
)),
|
|
372
372
|
'properties': {
|
|
373
373
|
'sound': {
|
|
374
|
-
'description': ( localize(
|
|
374
|
+
'description': ( localize(4194, "Plays a sound when the active line has an error.")),
|
|
375
375
|
...soundFeatureBase
|
|
376
376
|
},
|
|
377
377
|
'announcement': {
|
|
378
|
-
'description': ( localize(
|
|
378
|
+
'description': ( localize(4195, "Announces when the active line has an error.")),
|
|
379
379
|
...announcementFeatureBase,
|
|
380
380
|
default: 'off'
|
|
381
381
|
},
|
|
@@ -384,13 +384,13 @@ const configuration = {
|
|
|
384
384
|
'accessibility.signals.lineHasFoldedArea': {
|
|
385
385
|
...signalFeatureBase,
|
|
386
386
|
'description': ( localize(
|
|
387
|
-
|
|
387
|
+
4196,
|
|
388
388
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
|
|
389
389
|
)),
|
|
390
390
|
'properties': {
|
|
391
391
|
'sound': {
|
|
392
392
|
'description': ( localize(
|
|
393
|
-
|
|
393
|
+
4197,
|
|
394
394
|
"Plays a sound when the active line has a folded area that can be unfolded."
|
|
395
395
|
)),
|
|
396
396
|
...soundFeatureBase,
|
|
@@ -398,7 +398,7 @@ const configuration = {
|
|
|
398
398
|
},
|
|
399
399
|
'announcement': {
|
|
400
400
|
'description': ( localize(
|
|
401
|
-
|
|
401
|
+
4198,
|
|
402
402
|
"Announces when the active line has a folded area that can be unfolded."
|
|
403
403
|
)),
|
|
404
404
|
...announcementFeatureBase
|
|
@@ -408,16 +408,16 @@ const configuration = {
|
|
|
408
408
|
'accessibility.signals.lineHasWarning': {
|
|
409
409
|
...signalFeatureBase,
|
|
410
410
|
'description': ( localize(
|
|
411
|
-
|
|
411
|
+
4199,
|
|
412
412
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
413
413
|
)),
|
|
414
414
|
'properties': {
|
|
415
415
|
'sound': {
|
|
416
|
-
'description': ( localize(
|
|
416
|
+
'description': ( localize(4200, "Plays a sound when the active line has a warning.")),
|
|
417
417
|
...soundFeatureBase
|
|
418
418
|
},
|
|
419
419
|
'announcement': {
|
|
420
|
-
'description': ( localize(
|
|
420
|
+
'description': ( localize(4201, "Announces when the active line has a warning.")),
|
|
421
421
|
...announcementFeatureBase,
|
|
422
422
|
default: 'off'
|
|
423
423
|
},
|
|
@@ -426,16 +426,16 @@ const configuration = {
|
|
|
426
426
|
'accessibility.signals.positionHasError': {
|
|
427
427
|
...signalFeatureBase,
|
|
428
428
|
'description': ( localize(
|
|
429
|
-
|
|
429
|
+
4202,
|
|
430
430
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
431
431
|
)),
|
|
432
432
|
'properties': {
|
|
433
433
|
'sound': {
|
|
434
|
-
'description': ( localize(
|
|
434
|
+
'description': ( localize(4203, "Plays a sound when the active line has a warning.")),
|
|
435
435
|
...soundFeatureBase
|
|
436
436
|
},
|
|
437
437
|
'announcement': {
|
|
438
|
-
'description': ( localize(
|
|
438
|
+
'description': ( localize(4204, "Announces when the active line has a warning.")),
|
|
439
439
|
...announcementFeatureBase,
|
|
440
440
|
default: 'on'
|
|
441
441
|
},
|
|
@@ -444,16 +444,16 @@ const configuration = {
|
|
|
444
444
|
'accessibility.signals.positionHasWarning': {
|
|
445
445
|
...signalFeatureBase,
|
|
446
446
|
'description': ( localize(
|
|
447
|
-
|
|
447
|
+
4205,
|
|
448
448
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
449
449
|
)),
|
|
450
450
|
'properties': {
|
|
451
451
|
'sound': {
|
|
452
|
-
'description': ( localize(
|
|
452
|
+
'description': ( localize(4206, "Plays a sound when the active line has a warning.")),
|
|
453
453
|
...soundFeatureBase
|
|
454
454
|
},
|
|
455
455
|
'announcement': {
|
|
456
|
-
'description': ( localize(
|
|
456
|
+
'description': ( localize(4207, "Announces when the active line has a warning.")),
|
|
457
457
|
...announcementFeatureBase,
|
|
458
458
|
default: 'on'
|
|
459
459
|
},
|
|
@@ -462,16 +462,16 @@ const configuration = {
|
|
|
462
462
|
'accessibility.signals.onDebugBreak': {
|
|
463
463
|
...signalFeatureBase,
|
|
464
464
|
'description': ( localize(
|
|
465
|
-
|
|
465
|
+
4208,
|
|
466
466
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
|
|
467
467
|
)),
|
|
468
468
|
'properties': {
|
|
469
469
|
'sound': {
|
|
470
|
-
'description': ( localize(
|
|
470
|
+
'description': ( localize(4209, "Plays a sound when the debugger stopped on a breakpoint.")),
|
|
471
471
|
...soundFeatureBase
|
|
472
472
|
},
|
|
473
473
|
'announcement': {
|
|
474
|
-
'description': ( localize(
|
|
474
|
+
'description': ( localize(4210, "Announces when the debugger stopped on a breakpoint.")),
|
|
475
475
|
...announcementFeatureBase
|
|
476
476
|
},
|
|
477
477
|
}
|
|
@@ -479,20 +479,20 @@ const configuration = {
|
|
|
479
479
|
'accessibility.signals.noInlayHints': {
|
|
480
480
|
...signalFeatureBase,
|
|
481
481
|
'description': ( localize(
|
|
482
|
-
|
|
482
|
+
4211,
|
|
483
483
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
|
|
484
484
|
)),
|
|
485
485
|
'properties': {
|
|
486
486
|
'sound': {
|
|
487
487
|
'description': ( localize(
|
|
488
|
-
|
|
488
|
+
4212,
|
|
489
489
|
"Plays a sound when trying to read a line with inlay hints that has no inlay hints."
|
|
490
490
|
)),
|
|
491
491
|
...soundFeatureBase
|
|
492
492
|
},
|
|
493
493
|
'announcement': {
|
|
494
494
|
'description': ( localize(
|
|
495
|
-
|
|
495
|
+
4213,
|
|
496
496
|
"Announces when trying to read a line with inlay hints that has no inlay hints."
|
|
497
497
|
)),
|
|
498
498
|
...announcementFeatureBase
|
|
@@ -502,16 +502,16 @@ const configuration = {
|
|
|
502
502
|
'accessibility.signals.taskCompleted': {
|
|
503
503
|
...signalFeatureBase,
|
|
504
504
|
'description': ( localize(
|
|
505
|
-
|
|
505
|
+
4214,
|
|
506
506
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
|
|
507
507
|
)),
|
|
508
508
|
'properties': {
|
|
509
509
|
'sound': {
|
|
510
|
-
'description': ( localize(
|
|
510
|
+
'description': ( localize(4215, "Plays a sound when a task is completed.")),
|
|
511
511
|
...soundFeatureBase
|
|
512
512
|
},
|
|
513
513
|
'announcement': {
|
|
514
|
-
'description': ( localize(
|
|
514
|
+
'description': ( localize(4216, "Announces when a task is completed.")),
|
|
515
515
|
...announcementFeatureBase
|
|
516
516
|
},
|
|
517
517
|
}
|
|
@@ -519,16 +519,16 @@ const configuration = {
|
|
|
519
519
|
'accessibility.signals.taskFailed': {
|
|
520
520
|
...signalFeatureBase,
|
|
521
521
|
'description': ( localize(
|
|
522
|
-
|
|
522
|
+
4217,
|
|
523
523
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
|
|
524
524
|
)),
|
|
525
525
|
'properties': {
|
|
526
526
|
'sound': {
|
|
527
|
-
'description': ( localize(
|
|
527
|
+
'description': ( localize(4218, "Plays a sound when a task fails (non-zero exit code).")),
|
|
528
528
|
...soundFeatureBase
|
|
529
529
|
},
|
|
530
530
|
'announcement': {
|
|
531
|
-
'description': ( localize(
|
|
531
|
+
'description': ( localize(4219, "Announces when a task fails (non-zero exit code).")),
|
|
532
532
|
...announcementFeatureBase
|
|
533
533
|
},
|
|
534
534
|
}
|
|
@@ -536,20 +536,20 @@ const configuration = {
|
|
|
536
536
|
'accessibility.signals.terminalCommandFailed': {
|
|
537
537
|
...signalFeatureBase,
|
|
538
538
|
'description': ( localize(
|
|
539
|
-
|
|
539
|
+
4220,
|
|
540
540
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
541
541
|
)),
|
|
542
542
|
'properties': {
|
|
543
543
|
'sound': {
|
|
544
544
|
'description': ( localize(
|
|
545
|
-
|
|
545
|
+
4221,
|
|
546
546
|
"Plays a sound when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
547
547
|
)),
|
|
548
548
|
...soundFeatureBase
|
|
549
549
|
},
|
|
550
550
|
'announcement': {
|
|
551
551
|
'description': ( localize(
|
|
552
|
-
|
|
552
|
+
4222,
|
|
553
553
|
"Announces when a terminal command fails (non-zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
554
554
|
)),
|
|
555
555
|
...announcementFeatureBase
|
|
@@ -559,20 +559,20 @@ const configuration = {
|
|
|
559
559
|
'accessibility.signals.terminalCommandSucceeded': {
|
|
560
560
|
...signalFeatureBase,
|
|
561
561
|
'description': ( localize(
|
|
562
|
-
|
|
562
|
+
4223,
|
|
563
563
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
564
564
|
)),
|
|
565
565
|
'properties': {
|
|
566
566
|
'sound': {
|
|
567
567
|
'description': ( localize(
|
|
568
|
-
|
|
568
|
+
4224,
|
|
569
569
|
"Plays a sound when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
570
570
|
)),
|
|
571
571
|
...soundFeatureBase
|
|
572
572
|
},
|
|
573
573
|
'announcement': {
|
|
574
574
|
'description': ( localize(
|
|
575
|
-
|
|
575
|
+
4225,
|
|
576
576
|
"Announces when a terminal command succeeds (zero exit code) or when a command with such an exit code is navigated to in the accessible view."
|
|
577
577
|
)),
|
|
578
578
|
...announcementFeatureBase
|
|
@@ -582,16 +582,16 @@ const configuration = {
|
|
|
582
582
|
'accessibility.signals.terminalQuickFix': {
|
|
583
583
|
...signalFeatureBase,
|
|
584
584
|
'description': ( localize(
|
|
585
|
-
|
|
585
|
+
4226,
|
|
586
586
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
|
|
587
587
|
)),
|
|
588
588
|
'properties': {
|
|
589
589
|
'sound': {
|
|
590
|
-
'description': ( localize(
|
|
590
|
+
'description': ( localize(4227, "Plays a sound when terminal Quick Fixes are available.")),
|
|
591
591
|
...soundFeatureBase
|
|
592
592
|
},
|
|
593
593
|
'announcement': {
|
|
594
|
-
'description': ( localize(
|
|
594
|
+
'description': ( localize(4228, "Announces when terminal Quick Fixes are available.")),
|
|
595
595
|
...announcementFeatureBase
|
|
596
596
|
},
|
|
597
597
|
}
|
|
@@ -599,16 +599,16 @@ const configuration = {
|
|
|
599
599
|
'accessibility.signals.terminalBell': {
|
|
600
600
|
...signalFeatureBase,
|
|
601
601
|
'description': ( localize(
|
|
602
|
-
|
|
602
|
+
4229,
|
|
603
603
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
|
|
604
604
|
)),
|
|
605
605
|
'properties': {
|
|
606
606
|
'sound': {
|
|
607
|
-
'description': ( localize(
|
|
607
|
+
'description': ( localize(4230, "Plays a sound when the terminal bell is ringing.")),
|
|
608
608
|
...soundFeatureBase
|
|
609
609
|
},
|
|
610
610
|
'announcement': {
|
|
611
|
-
'description': ( localize(
|
|
611
|
+
'description': ( localize(4231, "Announces when the terminal bell is ringing.")),
|
|
612
612
|
...announcementFeatureBase
|
|
613
613
|
},
|
|
614
614
|
}
|
|
@@ -616,13 +616,13 @@ const configuration = {
|
|
|
616
616
|
'accessibility.signals.diffLineInserted': {
|
|
617
617
|
...defaultNoAnnouncement,
|
|
618
618
|
'description': ( localize(
|
|
619
|
-
|
|
619
|
+
4232,
|
|
620
620
|
"Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
621
621
|
)),
|
|
622
622
|
'properties': {
|
|
623
623
|
'sound': {
|
|
624
624
|
'description': ( localize(
|
|
625
|
-
|
|
625
|
+
4233,
|
|
626
626
|
"Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
627
627
|
)),
|
|
628
628
|
...soundFeatureBase
|
|
@@ -632,13 +632,13 @@ const configuration = {
|
|
|
632
632
|
'accessibility.signals.diffLineModified': {
|
|
633
633
|
...defaultNoAnnouncement,
|
|
634
634
|
'description': ( localize(
|
|
635
|
-
|
|
635
|
+
4234,
|
|
636
636
|
"Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
637
637
|
)),
|
|
638
638
|
'properties': {
|
|
639
639
|
'sound': {
|
|
640
640
|
'description': ( localize(
|
|
641
|
-
|
|
641
|
+
4235,
|
|
642
642
|
"Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
643
643
|
)),
|
|
644
644
|
...soundFeatureBase
|
|
@@ -648,13 +648,13 @@ const configuration = {
|
|
|
648
648
|
'accessibility.signals.diffLineDeleted': {
|
|
649
649
|
...defaultNoAnnouncement,
|
|
650
650
|
'description': ( localize(
|
|
651
|
-
|
|
651
|
+
4236,
|
|
652
652
|
"Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
653
653
|
)),
|
|
654
654
|
'properties': {
|
|
655
655
|
'sound': {
|
|
656
656
|
'description': ( localize(
|
|
657
|
-
|
|
657
|
+
4237,
|
|
658
658
|
"Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
659
659
|
)),
|
|
660
660
|
...soundFeatureBase
|
|
@@ -664,12 +664,12 @@ const configuration = {
|
|
|
664
664
|
'accessibility.signals.chatEditModifiedFile': {
|
|
665
665
|
...defaultNoAnnouncement,
|
|
666
666
|
'description': ( localize(
|
|
667
|
-
|
|
667
|
+
4238,
|
|
668
668
|
"Plays a sound / audio cue when revealing a file with changes from chat edits"
|
|
669
669
|
)),
|
|
670
670
|
'properties': {
|
|
671
671
|
'sound': {
|
|
672
|
-
'description': ( localize(
|
|
672
|
+
'description': ( localize(4239, "Plays a sound when revealing a file with changes from chat edits")),
|
|
673
673
|
...soundFeatureBase
|
|
674
674
|
}
|
|
675
675
|
}
|
|
@@ -677,20 +677,20 @@ const configuration = {
|
|
|
677
677
|
'accessibility.signals.notebookCellCompleted': {
|
|
678
678
|
...signalFeatureBase,
|
|
679
679
|
'description': ( localize(
|
|
680
|
-
|
|
680
|
+
4240,
|
|
681
681
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
|
|
682
682
|
)),
|
|
683
683
|
'properties': {
|
|
684
684
|
'sound': {
|
|
685
685
|
'description': ( localize(
|
|
686
|
-
|
|
686
|
+
4241,
|
|
687
687
|
"Plays a sound when a notebook cell execution is successfully completed."
|
|
688
688
|
)),
|
|
689
689
|
...soundFeatureBase
|
|
690
690
|
},
|
|
691
691
|
'announcement': {
|
|
692
692
|
'description': ( localize(
|
|
693
|
-
|
|
693
|
+
4242,
|
|
694
694
|
"Announces when a notebook cell execution is successfully completed."
|
|
695
695
|
)),
|
|
696
696
|
...announcementFeatureBase
|
|
@@ -700,16 +700,16 @@ const configuration = {
|
|
|
700
700
|
'accessibility.signals.notebookCellFailed': {
|
|
701
701
|
...signalFeatureBase,
|
|
702
702
|
'description': ( localize(
|
|
703
|
-
|
|
703
|
+
4243,
|
|
704
704
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
|
|
705
705
|
)),
|
|
706
706
|
'properties': {
|
|
707
707
|
'sound': {
|
|
708
|
-
'description': ( localize(
|
|
708
|
+
'description': ( localize(4244, "Plays a sound when a notebook cell execution fails.")),
|
|
709
709
|
...soundFeatureBase
|
|
710
710
|
},
|
|
711
711
|
'announcement': {
|
|
712
|
-
'description': ( localize(
|
|
712
|
+
'description': ( localize(4245, "Announces when a notebook cell execution fails.")),
|
|
713
713
|
...announcementFeatureBase
|
|
714
714
|
},
|
|
715
715
|
}
|
|
@@ -717,16 +717,20 @@ const configuration = {
|
|
|
717
717
|
'accessibility.signals.progress': {
|
|
718
718
|
...signalFeatureBase,
|
|
719
719
|
'description': ( localize(
|
|
720
|
-
|
|
720
|
+
4246,
|
|
721
721
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
|
|
722
722
|
)),
|
|
723
|
+
'default': {
|
|
724
|
+
'sound': 'auto',
|
|
725
|
+
'announcement': 'off'
|
|
726
|
+
},
|
|
723
727
|
'properties': {
|
|
724
728
|
'sound': {
|
|
725
|
-
'description': ( localize(
|
|
729
|
+
'description': ( localize(4247, "Plays a sound on loop while progress is occurring.")),
|
|
726
730
|
...soundFeatureBase
|
|
727
731
|
},
|
|
728
732
|
'announcement': {
|
|
729
|
-
'description': ( localize(
|
|
733
|
+
'description': ( localize(4248, "Alerts on loop while progress is occurring.")),
|
|
730
734
|
...announcementFeatureBase
|
|
731
735
|
},
|
|
732
736
|
},
|
|
@@ -734,56 +738,56 @@ const configuration = {
|
|
|
734
738
|
'accessibility.signals.chatRequestSent': {
|
|
735
739
|
...signalFeatureBase,
|
|
736
740
|
'description': ( localize(
|
|
737
|
-
|
|
741
|
+
4249,
|
|
738
742
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
|
|
739
743
|
)),
|
|
740
744
|
'properties': {
|
|
741
745
|
'sound': {
|
|
742
|
-
'description': ( localize(
|
|
746
|
+
'description': ( localize(4250, "Plays a sound when a chat request is made.")),
|
|
743
747
|
...soundFeatureBase
|
|
744
748
|
},
|
|
745
749
|
'announcement': {
|
|
746
|
-
'description': ( localize(
|
|
750
|
+
'description': ( localize(4251, "Announces when a chat request is made.")),
|
|
747
751
|
...announcementFeatureBase
|
|
748
752
|
},
|
|
749
753
|
}
|
|
750
754
|
},
|
|
751
755
|
'accessibility.signals.chatResponseReceived': {
|
|
752
756
|
...defaultNoAnnouncement,
|
|
753
|
-
'description': ( localize(
|
|
757
|
+
'description': ( localize(4252, "Plays a sound / audio cue when the response has been received.")),
|
|
754
758
|
'properties': {
|
|
755
759
|
'sound': {
|
|
756
|
-
'description': ( localize(
|
|
760
|
+
'description': ( localize(4253, "Plays a sound on when the response has been received.")),
|
|
757
761
|
...soundFeatureBase
|
|
758
762
|
},
|
|
759
763
|
}
|
|
760
764
|
},
|
|
761
765
|
'accessibility.signals.codeActionTriggered': {
|
|
762
766
|
...defaultNoAnnouncement,
|
|
763
|
-
'description': ( localize(
|
|
767
|
+
'description': ( localize(4254, "Plays a sound / audio cue - when a code action has been triggered.")),
|
|
764
768
|
'properties': {
|
|
765
769
|
'sound': {
|
|
766
|
-
'description': ( localize(
|
|
770
|
+
'description': ( localize(4255, "Plays a sound when a code action has been triggered.")),
|
|
767
771
|
...soundFeatureBase
|
|
768
772
|
}
|
|
769
773
|
}
|
|
770
774
|
},
|
|
771
775
|
'accessibility.signals.codeActionApplied': {
|
|
772
776
|
...defaultNoAnnouncement,
|
|
773
|
-
'description': ( localize(
|
|
777
|
+
'description': ( localize(4256, "Plays a sound / audio cue when the code action has been applied.")),
|
|
774
778
|
'properties': {
|
|
775
779
|
'sound': {
|
|
776
|
-
'description': ( localize(
|
|
780
|
+
'description': ( localize(4257, "Plays a sound when the code action has been applied.")),
|
|
777
781
|
...soundFeatureBase
|
|
778
782
|
},
|
|
779
783
|
}
|
|
780
784
|
},
|
|
781
785
|
'accessibility.signals.voiceRecordingStarted': {
|
|
782
786
|
...defaultNoAnnouncement,
|
|
783
|
-
'description': ( localize(
|
|
787
|
+
'description': ( localize(4258, "Plays a sound / audio cue when the voice recording has started.")),
|
|
784
788
|
'properties': {
|
|
785
789
|
'sound': {
|
|
786
|
-
'description': ( localize(
|
|
790
|
+
'description': ( localize(4259, "Plays a sound when the voice recording has started.")),
|
|
787
791
|
...soundFeatureBase,
|
|
788
792
|
},
|
|
789
793
|
},
|
|
@@ -793,10 +797,10 @@ const configuration = {
|
|
|
793
797
|
},
|
|
794
798
|
'accessibility.signals.voiceRecordingStopped': {
|
|
795
799
|
...defaultNoAnnouncement,
|
|
796
|
-
'description': ( localize(
|
|
800
|
+
'description': ( localize(4260, "Plays a sound / audio cue when the voice recording has stopped.")),
|
|
797
801
|
'properties': {
|
|
798
802
|
'sound': {
|
|
799
|
-
'description': ( localize(
|
|
803
|
+
'description': ( localize(4261, "Plays a sound when the voice recording has stopped.")),
|
|
800
804
|
...soundFeatureBase,
|
|
801
805
|
default: 'off'
|
|
802
806
|
},
|
|
@@ -805,16 +809,16 @@ const configuration = {
|
|
|
805
809
|
'accessibility.signals.clear': {
|
|
806
810
|
...signalFeatureBase,
|
|
807
811
|
'description': ( localize(
|
|
808
|
-
|
|
812
|
+
4262,
|
|
809
813
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
|
|
810
814
|
)),
|
|
811
815
|
'properties': {
|
|
812
816
|
'sound': {
|
|
813
|
-
'description': ( localize(
|
|
817
|
+
'description': ( localize(4263, "Plays a sound when a feature is cleared.")),
|
|
814
818
|
...soundFeatureBase
|
|
815
819
|
},
|
|
816
820
|
'announcement': {
|
|
817
|
-
'description': ( localize(
|
|
821
|
+
'description': ( localize(4264, "Announces when a feature is cleared.")),
|
|
818
822
|
...announcementFeatureBase
|
|
819
823
|
},
|
|
820
824
|
},
|
|
@@ -822,16 +826,16 @@ const configuration = {
|
|
|
822
826
|
'accessibility.signals.editsUndone': {
|
|
823
827
|
...signalFeatureBase,
|
|
824
828
|
'description': ( localize(
|
|
825
|
-
|
|
829
|
+
4265,
|
|
826
830
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
|
|
827
831
|
)),
|
|
828
832
|
'properties': {
|
|
829
833
|
'sound': {
|
|
830
|
-
'description': ( localize(
|
|
834
|
+
'description': ( localize(4266, "Plays a sound when edits have been undone.")),
|
|
831
835
|
...soundFeatureBase
|
|
832
836
|
},
|
|
833
837
|
'announcement': {
|
|
834
|
-
'description': ( localize(
|
|
838
|
+
'description': ( localize(4267, "Announces when edits have been undone.")),
|
|
835
839
|
...announcementFeatureBase
|
|
836
840
|
},
|
|
837
841
|
},
|
|
@@ -839,16 +843,16 @@ const configuration = {
|
|
|
839
843
|
'accessibility.signals.editsKept': {
|
|
840
844
|
...signalFeatureBase,
|
|
841
845
|
'description': ( localize(
|
|
842
|
-
|
|
846
|
+
4268,
|
|
843
847
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
|
|
844
848
|
)),
|
|
845
849
|
'properties': {
|
|
846
850
|
'sound': {
|
|
847
|
-
'description': ( localize(
|
|
851
|
+
'description': ( localize(4269, "Plays a sound when edits are kept.")),
|
|
848
852
|
...soundFeatureBase
|
|
849
853
|
},
|
|
850
854
|
'announcement': {
|
|
851
|
-
'description': ( localize(
|
|
855
|
+
'description': ( localize(4270, "Announces when edits are kept.")),
|
|
852
856
|
...announcementFeatureBase
|
|
853
857
|
},
|
|
854
858
|
},
|
|
@@ -858,30 +862,30 @@ const configuration = {
|
|
|
858
862
|
'tags': ['accessibility'],
|
|
859
863
|
additionalProperties: false,
|
|
860
864
|
'markdownDescription': ( localize(
|
|
861
|
-
|
|
865
|
+
4271,
|
|
862
866
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
|
|
863
867
|
)),
|
|
864
868
|
'properties': {
|
|
865
869
|
'sound': {
|
|
866
|
-
'description': ( localize(
|
|
870
|
+
'description': ( localize(4272, "Plays a sound when a file is saved.")),
|
|
867
871
|
'type': 'string',
|
|
868
872
|
'enum': ['userGesture', 'always', 'never'],
|
|
869
873
|
'default': 'never',
|
|
870
874
|
'enumDescriptions': [
|
|
871
|
-
( localize(
|
|
872
|
-
( localize(
|
|
873
|
-
( localize(
|
|
875
|
+
( localize(4273, "Plays the sound when a user explicitly saves a file.")),
|
|
876
|
+
( localize(4274, "Plays the sound whenever a file is saved, including auto save.")),
|
|
877
|
+
( localize(4275, "Never plays the sound."))
|
|
874
878
|
],
|
|
875
879
|
},
|
|
876
880
|
'announcement': {
|
|
877
|
-
'description': ( localize(
|
|
881
|
+
'description': ( localize(4276, "Announces when a file is saved.")),
|
|
878
882
|
'type': 'string',
|
|
879
883
|
'enum': ['userGesture', 'always', 'never'],
|
|
880
884
|
'default': 'never',
|
|
881
885
|
'enumDescriptions': [
|
|
882
|
-
( localize(
|
|
883
|
-
( localize(
|
|
884
|
-
( localize(
|
|
886
|
+
( localize(4277, "Announces when a user explicitly saves a file.")),
|
|
887
|
+
( localize(4278, "Announces whenever a file is saved, including auto save.")),
|
|
888
|
+
( localize(4279, "Never plays the announcement."))
|
|
885
889
|
],
|
|
886
890
|
},
|
|
887
891
|
},
|
|
@@ -895,36 +899,36 @@ const configuration = {
|
|
|
895
899
|
'tags': ['accessibility'],
|
|
896
900
|
additionalProperties: false,
|
|
897
901
|
'markdownDescription': ( localize(
|
|
898
|
-
|
|
902
|
+
4280,
|
|
899
903
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
|
|
900
904
|
)),
|
|
901
905
|
'properties': {
|
|
902
906
|
'sound': {
|
|
903
|
-
'description': ( localize(
|
|
907
|
+
'description': ( localize(4281, "Plays a sound when a file or notebook is formatted.")),
|
|
904
908
|
'type': 'string',
|
|
905
909
|
'enum': ['userGesture', 'always', 'never'],
|
|
906
910
|
'default': 'never',
|
|
907
911
|
'enumDescriptions': [
|
|
908
|
-
( localize(
|
|
912
|
+
( localize(4282, "Plays the sound when a user explicitly formats a file.")),
|
|
909
913
|
( localize(
|
|
910
|
-
|
|
914
|
+
4283,
|
|
911
915
|
"Plays the sound whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
912
916
|
)),
|
|
913
|
-
( localize(
|
|
917
|
+
( localize(4284, "Never plays the sound."))
|
|
914
918
|
],
|
|
915
919
|
},
|
|
916
920
|
'announcement': {
|
|
917
|
-
'description': ( localize(
|
|
921
|
+
'description': ( localize(4285, "Announces when a file or notebook is formatted.")),
|
|
918
922
|
'type': 'string',
|
|
919
923
|
'enum': ['userGesture', 'always', 'never'],
|
|
920
924
|
'default': 'never',
|
|
921
925
|
'enumDescriptions': [
|
|
922
|
-
( localize(
|
|
926
|
+
( localize(4286, "Announces when a user explicitly formats a file.")),
|
|
923
927
|
( localize(
|
|
924
|
-
|
|
928
|
+
4287,
|
|
925
929
|
"Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
926
930
|
)),
|
|
927
|
-
( localize(
|
|
931
|
+
( localize(4288, "Never announces."))
|
|
928
932
|
],
|
|
929
933
|
},
|
|
930
934
|
},
|
|
@@ -936,23 +940,23 @@ const configuration = {
|
|
|
936
940
|
'accessibility.signals.chatUserActionRequired': {
|
|
937
941
|
...signalFeatureBase,
|
|
938
942
|
'markdownDescription': ( localize(
|
|
939
|
-
|
|
943
|
+
4289,
|
|
940
944
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
|
|
941
945
|
)),
|
|
942
946
|
'properties': {
|
|
943
947
|
'sound': {
|
|
944
|
-
'description': ( localize(
|
|
948
|
+
'description': ( localize(4290, "Plays a sound when user action is required in the chat.")),
|
|
945
949
|
'type': 'string',
|
|
946
950
|
'enum': ['auto', 'on', 'off'],
|
|
947
951
|
'enumDescriptions': [
|
|
948
|
-
( localize(
|
|
949
|
-
( localize(
|
|
950
|
-
( localize(
|
|
952
|
+
( localize(4291, "Enable sound when a screen reader is attached.")),
|
|
953
|
+
( localize(4156, "Enable sound.")),
|
|
954
|
+
( localize(4157, "Disable sound."))
|
|
951
955
|
],
|
|
952
956
|
},
|
|
953
957
|
'announcement': {
|
|
954
958
|
'description': ( localize(
|
|
955
|
-
|
|
959
|
+
4292,
|
|
956
960
|
"Announces when a user action is required in the chat - including information about the action and how to take it."
|
|
957
961
|
)),
|
|
958
962
|
...announcementFeatureBase
|
|
@@ -966,13 +970,13 @@ const configuration = {
|
|
|
966
970
|
},
|
|
967
971
|
'accessibility.underlineLinks': {
|
|
968
972
|
'type': 'boolean',
|
|
969
|
-
'description': ( localize(
|
|
973
|
+
'description': ( localize(4293, "Controls whether links should be underlined in the workbench.")),
|
|
970
974
|
'default': false,
|
|
971
975
|
},
|
|
972
976
|
'accessibility.debugWatchVariableAnnouncements': {
|
|
973
977
|
'type': 'boolean',
|
|
974
978
|
'description': ( localize(
|
|
975
|
-
|
|
979
|
+
4294,
|
|
976
980
|
"Controls whether variable changes should be announced in the debug watch view."
|
|
977
981
|
)),
|
|
978
982
|
'default': true,
|
|
@@ -980,7 +984,7 @@ const configuration = {
|
|
|
980
984
|
'accessibility.replEditor.readLastExecutionOutput': {
|
|
981
985
|
'type': 'boolean',
|
|
982
986
|
'description': ( localize(
|
|
983
|
-
|
|
987
|
+
4295,
|
|
984
988
|
"Controls whether the output from an execution in the native REPL will be announced."
|
|
985
989
|
)),
|
|
986
990
|
'default': true,
|
|
@@ -990,7 +994,7 @@ const configuration = {
|
|
|
990
994
|
enum: ['none', 'input', 'lastExecution'],
|
|
991
995
|
default: 'input',
|
|
992
996
|
description: ( localize(
|
|
993
|
-
|
|
997
|
+
4296,
|
|
994
998
|
"Control whether focus should automatically be sent to the REPL when code is executed."
|
|
995
999
|
)),
|
|
996
1000
|
},
|
|
@@ -998,7 +1002,7 @@ const configuration = {
|
|
|
998
1002
|
'type': 'boolean',
|
|
999
1003
|
'default': true,
|
|
1000
1004
|
'markdownDescription': ( localize(
|
|
1001
|
-
|
|
1005
|
+
4297,
|
|
1002
1006
|
"Controls whether the {0} should be optimized for screen readers when in screen reader mode. When enabled, the window title will have {1} appended to the end.",
|
|
1003
1007
|
'`#window.title#`',
|
|
1004
1008
|
'`activeEditorState`'
|
|
@@ -1006,9 +1010,9 @@ const configuration = {
|
|
|
1006
1010
|
},
|
|
1007
1011
|
'accessibility.openChatEditedFiles': {
|
|
1008
1012
|
'type': 'boolean',
|
|
1009
|
-
'default':
|
|
1013
|
+
'default': false,
|
|
1010
1014
|
'markdownDescription': ( localize(
|
|
1011
|
-
|
|
1015
|
+
4298,
|
|
1012
1016
|
"Controls whether files should be opened when the chat agent has applied edits to them."
|
|
1013
1017
|
))
|
|
1014
1018
|
},
|
|
@@ -1016,7 +1020,7 @@ const configuration = {
|
|
|
1016
1020
|
'type': 'boolean',
|
|
1017
1021
|
'default': true,
|
|
1018
1022
|
'markdownDescription': ( localize(
|
|
1019
|
-
|
|
1023
|
+
4299,
|
|
1020
1024
|
"Controls whether verbose progress announcements should be made when a chat request is in progress, including information like searched text for <search term> with X results, created file <file_name>, or read file <file path>."
|
|
1021
1025
|
))
|
|
1022
1026
|
}
|
|
@@ -1030,7 +1034,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1030
1034
|
properties: {
|
|
1031
1035
|
[AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
|
|
1032
1036
|
description: ( localize(
|
|
1033
|
-
|
|
1037
|
+
4300,
|
|
1034
1038
|
'Whether to dim unfocused editors and terminals, which makes it more clear where typed input will go to. This works with the majority of editors with the notable exceptions of those that utilize iframes like notebooks and extension webview editors.'
|
|
1035
1039
|
)),
|
|
1036
1040
|
type: 'boolean',
|
|
@@ -1040,7 +1044,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1040
1044
|
},
|
|
1041
1045
|
[AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
|
|
1042
1046
|
markdownDescription: ( localize(
|
|
1043
|
-
|
|
1047
|
+
4301,
|
|
1044
1048
|
'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
|
|
1045
1049
|
`\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
|
|
1046
1050
|
)),
|
|
@@ -1052,7 +1056,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1052
1056
|
scope: ConfigurationScope.APPLICATION,
|
|
1053
1057
|
},
|
|
1054
1058
|
[AccessibilityWorkbenchSettingId.HideAccessibleView]: {
|
|
1055
|
-
description: ( localize(
|
|
1059
|
+
description: ( localize(4302, "Controls whether the Accessible View is hidden.")),
|
|
1056
1060
|
type: 'boolean',
|
|
1057
1061
|
default: false,
|
|
1058
1062
|
tags: ['accessibility']
|
|
@@ -1061,14 +1065,14 @@ function registerAccessibilityConfiguration() {
|
|
|
1061
1065
|
'type': 'boolean',
|
|
1062
1066
|
'default': true,
|
|
1063
1067
|
'markdownDescription': ( localize(
|
|
1064
|
-
|
|
1068
|
+
4299,
|
|
1065
1069
|
"Controls whether verbose progress announcements should be made when a chat request is in progress, including information like searched text for <search term> with X results, created file <file_name>, or read file <file path>."
|
|
1066
1070
|
))
|
|
1067
1071
|
}
|
|
1068
1072
|
}
|
|
1069
1073
|
});
|
|
1070
1074
|
}
|
|
1071
|
-
const SpeechTimeoutDefault =
|
|
1075
|
+
const SpeechTimeoutDefault = 0;
|
|
1072
1076
|
let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityConfiguration extends Disposable {
|
|
1073
1077
|
static { this.ID = 'workbench.contrib.dynamicSpeechAccessibilityConfiguration'; }
|
|
1074
1078
|
constructor(speechService) {
|
|
@@ -1090,7 +1094,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1090
1094
|
properties: {
|
|
1091
1095
|
[AccessibilityVoiceSettingId.SpeechTimeout]: {
|
|
1092
1096
|
'markdownDescription': ( localize(
|
|
1093
|
-
|
|
1097
|
+
4303,
|
|
1094
1098
|
"The duration in milliseconds that voice speech recognition remains active after you stop speaking. For example in a chat session, the transcribed text is submitted automatically after the timeout is met. Set to `0` to disable this feature."
|
|
1095
1099
|
)),
|
|
1096
1100
|
'type': 'number',
|
|
@@ -1099,14 +1103,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1099
1103
|
'tags': ['accessibility']
|
|
1100
1104
|
},
|
|
1101
1105
|
[AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
|
|
1102
|
-
'markdownDescription': ( localize(
|
|
1106
|
+
'markdownDescription': ( localize(4304, "Whether to ignore code snippets in text-to-speech synthesis.")),
|
|
1103
1107
|
'type': 'boolean',
|
|
1104
1108
|
'default': false,
|
|
1105
1109
|
'tags': ['accessibility']
|
|
1106
1110
|
},
|
|
1107
1111
|
[AccessibilityVoiceSettingId.SpeechLanguage]: {
|
|
1108
1112
|
'markdownDescription': ( localize(
|
|
1109
|
-
|
|
1113
|
+
4305,
|
|
1110
1114
|
"The language that text-to-speech and speech-to-text should use. Select `auto` to use the configured display language if possible. Note that not all display languages maybe supported by speech recognition and synthesizers."
|
|
1111
1115
|
)),
|
|
1112
1116
|
'type': 'string',
|
|
@@ -1121,13 +1125,13 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1121
1125
|
'enum': ['on', 'off'],
|
|
1122
1126
|
'enumDescriptions': [
|
|
1123
1127
|
( localize(
|
|
1124
|
-
|
|
1128
|
+
4306,
|
|
1125
1129
|
"Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
|
|
1126
1130
|
)),
|
|
1127
|
-
( localize(
|
|
1131
|
+
( localize(4307, "Disable the feature.")),
|
|
1128
1132
|
],
|
|
1129
1133
|
'markdownDescription': ( localize(
|
|
1130
|
-
|
|
1134
|
+
4308,
|
|
1131
1135
|
"Whether a textual response should automatically be read out aloud when speech was used as input. For example in a chat session, a response is automatically synthesized when voice was used as chat request."
|
|
1132
1136
|
)),
|
|
1133
1137
|
'default': 'off',
|
|
@@ -1139,7 +1143,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1139
1143
|
getLanguages() {
|
|
1140
1144
|
return {
|
|
1141
1145
|
['auto']: {
|
|
1142
|
-
name: ( localize(
|
|
1146
|
+
name: ( localize(4309, "Auto (Use Display Language)"))
|
|
1143
1147
|
},
|
|
1144
1148
|
...SPEECH_LANGUAGES
|
|
1145
1149
|
};
|