@codingame/monaco-vscode-api 21.6.0 → 22.0.0
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/missing-services.js +68 -78
- package/package.json +8 -8
- package/services.d.ts +4 -4
- package/services.js +5 -4
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +6 -3
- package/vscode/src/vs/base/browser/domSanitize.d.ts +8 -0
- package/vscode/src/vs/base/browser/domSanitize.js +49 -27
- package/vscode/src/vs/base/browser/domStylesheets.js +5 -1
- package/vscode/src/vs/base/browser/markdownRenderer.js +7 -5
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +2 -2
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +1 -1
- package/vscode/src/vs/base/browser/ui/menu/menu.js +1 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +1 -1
- package/vscode/src/vs/base/common/async.js +6 -0
- package/vscode/src/vs/base/common/cancellation.d.ts +21 -0
- package/vscode/src/vs/base/common/cancellation.js +42 -1
- package/vscode/src/vs/base/common/codicons.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +3 -0
- package/vscode/src/vs/base/common/decorators/cancelPreviousCalls.d.ts +84 -0
- package/vscode/src/vs/base/common/decorators.d.ts +1 -1
- package/vscode/src/vs/base/common/htmlContent.d.ts +2 -0
- package/vscode/src/vs/base/common/htmlContent.js +9 -6
- package/vscode/src/vs/base/common/lifecycle.js +21 -7
- package/vscode/src/vs/base/common/numbers.d.ts +0 -45
- package/vscode/src/vs/base/common/oauth.d.ts +33 -0
- package/vscode/src/vs/base/common/oauth.js +79 -3
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/index.js +3 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugGetDependencyGraph.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugGetDependencyGraph.js +98 -0
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.js +8 -1
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +10 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +3 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +9 -0
- package/vscode/src/vs/base/common/product.d.ts +7 -1
- package/vscode/src/vs/base/common/strings.d.ts +0 -1
- package/vscode/src/vs/base/common/strings.js +9 -4
- package/vscode/src/vs/base/common/uriIpc.js +24 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentRich.js +26 -16
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentSimple.js +3 -3
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +3 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +8 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +26 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +1 -1
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +93 -85
- package/vscode/src/vs/editor/common/config/editorOptions.js +386 -351
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/ranges/lineRange.d.ts +3 -3
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +5 -1
- package/vscode/src/vs/editor/common/languages.js +56 -56
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +86 -85
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +86 -85
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +9 -7
- package/vscode/src/vs/editor/common/viewModel/screenReaderSimpleModel.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- 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.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 +3 -3
- 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 +2 -2
- 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/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- 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.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.contribution.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.contribution.js +8 -0
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.css +44 -0
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.d.ts +10 -0
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.js +81 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +21 -20
- 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 +3 -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/clickLinkGesture.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.js +20 -11
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- 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.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/contentHoverController.js +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- 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/markdownHoverParticipant.js +9 -9
- 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.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHints.js +2 -7
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +18 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +14 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +7 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +154 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +7 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +18 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.d.ts +45 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.js +7 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +16 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +24 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +13 -4
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +36 -35
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +11 -11
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScrollController.js +3 -3
- 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.js +4 -4
- 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 +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +13 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +12 -19
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +10 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +18 -18
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- 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.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 +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +26 -26
- 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.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +0 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +1 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +9 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +13 -14
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/toolbar.js +5 -5
- package/vscode/src/vs/platform/actions/common/actions.d.ts +2 -0
- package/vscode/src/vs/platform/actions/common/actions.js +2 -0
- 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/assignment/common/assignment.d.ts +6 -1
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.d.ts +2 -0
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +32 -3
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.d.ts +0 -1
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +10 -11
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dataChannel/browser/forwardingTelemetryService.d.ts +32 -0
- package/vscode/src/vs/platform/dataChannel/browser/forwardingTelemetryService.js +86 -0
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- 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/extensionManagement/common/implicitActivationEvents.d.ts +1 -3
- package/vscode/src/vs/platform/extensionManagement/common/implicitActivationEvents.js +1 -1
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +2 -1
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +4 -3
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +4 -3
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -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/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- 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 +10 -2
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.js +10 -2
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +3 -3
- 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 +1 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +23 -15
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +47 -13
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +10 -61
- 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/quickInputTreeAccessibilityProvider.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +6 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +10 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +10 -5
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +4 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +10 -1
- package/vscode/src/vs/platform/request/common/request.js +34 -18
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -3
- package/vscode/src/vs/platform/terminal/common/terminal.js +6 -7
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- 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.js +15 -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/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/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +11 -10
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +25 -24
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +4 -4
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +10 -18
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +5 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +16 -4
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +1 -3
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +9 -5
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +0 -3
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +9 -4
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +7 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +97 -9
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +66 -62
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +22 -0
- package/vscode/src/vs/workbench/api/common/extHostSecrets.d.ts +0 -1
- package/vscode/src/vs/workbench/api/common/extHostSecrets.js +0 -3
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +8 -8
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +53 -3
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +5 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +6 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +60 -9
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +18 -14
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +7 -7
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +262 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/contextkeys.d.ts +5 -7
- package/vscode/src/vs/workbench/browser/contextkeys.js +15 -43
- 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 +1 -1
- 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.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +167 -167
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +175 -158
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.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/chatEditing/chatEditingEditorContextKeys.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +15 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +61 -66
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +24 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +0 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +28 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +35 -6
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +16 -6
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +11 -8
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +9 -2
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +8 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +50 -42
- 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 +23 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +29 -29
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +4 -3
- 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 +7 -6
- 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/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.js +65 -65
- 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/telemetry/aiEditTelemetry/aiEditTelemetryService.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +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/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/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/mcpRegistryTypes.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +16 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +217 -60
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +2 -0
- 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.js +7 -7
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +16 -3
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +18 -6
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +42 -8
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.js +2 -1
- package/vscode/src/vs/workbench/contrib/testing/common/constants.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +12 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +2 -2
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +4 -4
- package/vscode/src/vs/workbench/services/authentication/common/authentication.js +2 -2
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +6 -6
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +286 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +861 -0
- package/vscode/src/vs/workbench/{contrib → services}/chat/common/chatEntitlementService.service.d.ts +8 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +87 -87
- package/vscode/src/vs/workbench/services/language/common/languageService.js +30 -30
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- 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/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +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/userDataSync/common/userDataSync.js +13 -13
- package/vscode-dts/vscode.d.ts +92 -47
- package/vscode-dts/vscode.proposed.authenticationChallenges.d.ts +7 -80
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +14 -1
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +12 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +19 -0
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +19 -11
- package/vscode-dts/vscode.proposed.d.ts +1 -1
- package/vscode-dts/{vscode.proposed.secretStorageKeys.d.ts → vscode.proposed.devDeviceId.d.ts} +3 -4
- package/vscode-dts/vscode.proposed.languageModelCapabilities.d.ts +5 -0
- package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +2 -0
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +70 -16
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/codecs/base/frontMatterCodec/tokens/index.d.ts +0 -5
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/codecs/base/simpleCodec/tokens/tokens.d.ts +0 -20
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +0 -55
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +0 -91
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +0 -125
- /package/vscode/src/vs/workbench/{contrib → services}/chat/common/chatEntitlementService.service.js +0 -0
|
@@ -29,6 +29,7 @@ var AccessibilityWorkbenchSettingId;
|
|
|
29
29
|
AccessibilityWorkbenchSettingId["DimUnfocusedOpacity"] = "accessibility.dimUnfocused.opacity";
|
|
30
30
|
AccessibilityWorkbenchSettingId["HideAccessibleView"] = "accessibility.hideAccessibleView";
|
|
31
31
|
AccessibilityWorkbenchSettingId["AccessibleViewCloseOnKeyPress"] = "accessibility.accessibleView.closeOnKeyPress";
|
|
32
|
+
AccessibilityWorkbenchSettingId["VerboseChatProgressUpdates"] = "accessibility.verboseChatProgressUpdates";
|
|
32
33
|
})(AccessibilityWorkbenchSettingId || (AccessibilityWorkbenchSettingId = {}));
|
|
33
34
|
var ViewDimUnfocusedOpacityProperties;
|
|
34
35
|
(function (ViewDimUnfocusedOpacityProperties) {
|
|
@@ -65,7 +66,7 @@ const baseVerbosityProperty = {
|
|
|
65
66
|
};
|
|
66
67
|
const accessibilityConfigurationNodeBase = ( Object.freeze({
|
|
67
68
|
id: 'accessibility',
|
|
68
|
-
title: ( localize(
|
|
69
|
+
title: ( localize(4132, "Accessibility")),
|
|
69
70
|
type: 'object'
|
|
70
71
|
}));
|
|
71
72
|
const soundFeatureBase = {
|
|
@@ -73,9 +74,9 @@ const soundFeatureBase = {
|
|
|
73
74
|
'enum': ['auto', 'on', 'off'],
|
|
74
75
|
'default': 'auto',
|
|
75
76
|
'enumDescriptions': [
|
|
76
|
-
( localize(
|
|
77
|
-
( localize(
|
|
78
|
-
( localize(
|
|
77
|
+
( localize(4133, "Enable sound when a screen reader is attached.")),
|
|
78
|
+
( localize(4134, "Enable sound.")),
|
|
79
|
+
( localize(4135, "Disable sound."))
|
|
79
80
|
],
|
|
80
81
|
tags: ['accessibility'],
|
|
81
82
|
};
|
|
@@ -94,10 +95,10 @@ const announcementFeatureBase = {
|
|
|
94
95
|
'default': 'auto',
|
|
95
96
|
'enumDescriptions': [
|
|
96
97
|
( localize(
|
|
97
|
-
|
|
98
|
+
4136,
|
|
98
99
|
"Enable announcement, will only play when in screen reader optimized mode."
|
|
99
100
|
)),
|
|
100
|
-
( localize(
|
|
101
|
+
( localize(4137, "Disable announcement."))
|
|
101
102
|
],
|
|
102
103
|
tags: ['accessibility'],
|
|
103
104
|
};
|
|
@@ -115,109 +116,109 @@ const configuration = {
|
|
|
115
116
|
properties: {
|
|
116
117
|
[AccessibilityVerbositySettingId.Terminal]: {
|
|
117
118
|
description: ( localize(
|
|
118
|
-
|
|
119
|
+
4138,
|
|
119
120
|
'Provide information about how to access the terminal accessibility help menu when the terminal is focused.'
|
|
120
121
|
)),
|
|
121
122
|
...baseVerbosityProperty
|
|
122
123
|
},
|
|
123
124
|
[AccessibilityVerbositySettingId.DiffEditor]: {
|
|
124
125
|
description: ( localize(
|
|
125
|
-
|
|
126
|
+
4139,
|
|
126
127
|
'Provide information about how to navigate changes in the diff editor when it is focused.'
|
|
127
128
|
)),
|
|
128
129
|
...baseVerbosityProperty
|
|
129
130
|
},
|
|
130
131
|
[AccessibilityVerbositySettingId.Chat]: {
|
|
131
132
|
description: ( localize(
|
|
132
|
-
|
|
133
|
+
4140,
|
|
133
134
|
'Provide information about how to access the chat help menu when the chat input is focused.'
|
|
134
135
|
)),
|
|
135
136
|
...baseVerbosityProperty
|
|
136
137
|
},
|
|
137
138
|
[AccessibilityVerbositySettingId.InlineChat]: {
|
|
138
139
|
description: ( localize(
|
|
139
|
-
|
|
140
|
+
4141,
|
|
140
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.'
|
|
141
142
|
)),
|
|
142
143
|
...baseVerbosityProperty
|
|
143
144
|
},
|
|
144
145
|
[AccessibilityVerbositySettingId.InlineCompletions]: {
|
|
145
146
|
description: ( localize(
|
|
146
|
-
|
|
147
|
+
4142,
|
|
147
148
|
'Provide information about how to access the inline completions hover and Accessible View.'
|
|
148
149
|
)),
|
|
149
150
|
...baseVerbosityProperty
|
|
150
151
|
},
|
|
151
152
|
[AccessibilityVerbositySettingId.KeybindingsEditor]: {
|
|
152
153
|
description: ( localize(
|
|
153
|
-
|
|
154
|
+
4143,
|
|
154
155
|
'Provide information about how to change a keybinding in the keybindings editor when a row is focused.'
|
|
155
156
|
)),
|
|
156
157
|
...baseVerbosityProperty
|
|
157
158
|
},
|
|
158
159
|
[AccessibilityVerbositySettingId.Notebook]: {
|
|
159
160
|
description: ( localize(
|
|
160
|
-
|
|
161
|
+
4144,
|
|
161
162
|
'Provide information about how to focus the cell container or inner editor when a notebook cell is focused.'
|
|
162
163
|
)),
|
|
163
164
|
...baseVerbosityProperty
|
|
164
165
|
},
|
|
165
166
|
[AccessibilityVerbositySettingId.Hover]: {
|
|
166
167
|
description: ( localize(
|
|
167
|
-
|
|
168
|
+
4145,
|
|
168
169
|
'Provide information about how to open the hover in an Accessible View.'
|
|
169
170
|
)),
|
|
170
171
|
...baseVerbosityProperty
|
|
171
172
|
},
|
|
172
173
|
[AccessibilityVerbositySettingId.Notification]: {
|
|
173
174
|
description: ( localize(
|
|
174
|
-
|
|
175
|
+
4146,
|
|
175
176
|
'Provide information about how to open the notification in an Accessible View.'
|
|
176
177
|
)),
|
|
177
178
|
...baseVerbosityProperty
|
|
178
179
|
},
|
|
179
180
|
[AccessibilityVerbositySettingId.EmptyEditorHint]: {
|
|
180
181
|
description: ( localize(
|
|
181
|
-
|
|
182
|
+
4147,
|
|
182
183
|
'Provide information about relevant actions in an empty text editor.'
|
|
183
184
|
)),
|
|
184
185
|
...baseVerbosityProperty
|
|
185
186
|
},
|
|
186
187
|
[AccessibilityVerbositySettingId.ReplEditor]: {
|
|
187
188
|
description: ( localize(
|
|
188
|
-
|
|
189
|
+
4148,
|
|
189
190
|
'Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused.'
|
|
190
191
|
)),
|
|
191
192
|
...baseVerbosityProperty
|
|
192
193
|
},
|
|
193
194
|
[AccessibilityVerbositySettingId.Comments]: {
|
|
194
195
|
description: ( localize(
|
|
195
|
-
|
|
196
|
+
4149,
|
|
196
197
|
'Provide information about actions that can be taken in the comment widget or in a file which contains comments.'
|
|
197
198
|
)),
|
|
198
199
|
...baseVerbosityProperty
|
|
199
200
|
},
|
|
200
201
|
[AccessibilityVerbositySettingId.DiffEditorActive]: {
|
|
201
|
-
description: ( localize(
|
|
202
|
+
description: ( localize(4150, 'Indicate when a diff editor becomes the active editor.')),
|
|
202
203
|
...baseVerbosityProperty
|
|
203
204
|
},
|
|
204
205
|
[AccessibilityVerbositySettingId.Debug]: {
|
|
205
206
|
description: ( localize(
|
|
206
|
-
|
|
207
|
+
4151,
|
|
207
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.'
|
|
208
209
|
)),
|
|
209
210
|
...baseVerbosityProperty
|
|
210
211
|
},
|
|
211
212
|
[AccessibilityVerbositySettingId.Walkthrough]: {
|
|
212
213
|
description: ( localize(
|
|
213
|
-
|
|
214
|
+
4152,
|
|
214
215
|
'Provide information about how to open the walkthrough in an Accessible View.'
|
|
215
216
|
)),
|
|
216
217
|
...baseVerbosityProperty
|
|
217
218
|
},
|
|
218
219
|
[AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
|
|
219
220
|
markdownDescription: ( localize(
|
|
220
|
-
|
|
221
|
+
4153,
|
|
221
222
|
"On keypress, close the Accessible View and focus the element from which it was invoked."
|
|
222
223
|
)),
|
|
223
224
|
type: 'boolean',
|
|
@@ -225,13 +226,13 @@ const configuration = {
|
|
|
225
226
|
},
|
|
226
227
|
[AccessibilityVerbositySettingId.SourceControl]: {
|
|
227
228
|
description: ( localize(
|
|
228
|
-
|
|
229
|
+
4154,
|
|
229
230
|
'Provide information about how to access the source control accessibility help menu when the input is focused.'
|
|
230
231
|
)),
|
|
231
232
|
...baseVerbosityProperty
|
|
232
233
|
},
|
|
233
234
|
'accessibility.signalOptions.volume': {
|
|
234
|
-
'description': ( localize(
|
|
235
|
+
'description': ( localize(4155, "The volume of the sounds in percent (0-100).")),
|
|
235
236
|
'type': 'number',
|
|
236
237
|
'minimum': 0,
|
|
237
238
|
'maximum': 100,
|
|
@@ -239,7 +240,7 @@ const configuration = {
|
|
|
239
240
|
'tags': ['accessibility']
|
|
240
241
|
},
|
|
241
242
|
'accessibility.signalOptions.debouncePositionChanges': {
|
|
242
|
-
'description': ( localize(
|
|
243
|
+
'description': ( localize(4156, "Whether or not position changes should be debounced")),
|
|
243
244
|
'type': 'boolean',
|
|
244
245
|
'default': false,
|
|
245
246
|
'tags': ['accessibility']
|
|
@@ -250,13 +251,13 @@ const configuration = {
|
|
|
250
251
|
'additionalProperties': false,
|
|
251
252
|
'properties': {
|
|
252
253
|
'announcement': {
|
|
253
|
-
'description': ( localize(
|
|
254
|
+
'description': ( localize(4157, "The delay in milliseconds before an announcement is made.")),
|
|
254
255
|
'type': 'number',
|
|
255
256
|
'minimum': 0,
|
|
256
257
|
'default': 3000
|
|
257
258
|
},
|
|
258
259
|
'sound': {
|
|
259
|
-
'description': ( localize(
|
|
260
|
+
'description': ( localize(4158, "The delay in milliseconds before a sound is played.")),
|
|
260
261
|
'type': 'number',
|
|
261
262
|
'minimum': 0,
|
|
262
263
|
'default': 400
|
|
@@ -270,7 +271,7 @@ const configuration = {
|
|
|
270
271
|
'properties': {
|
|
271
272
|
'announcement': {
|
|
272
273
|
'description': ( localize(
|
|
273
|
-
|
|
274
|
+
4159,
|
|
274
275
|
"The delay in milliseconds before an announcement is made when there's a warning at the position."
|
|
275
276
|
)),
|
|
276
277
|
'type': 'number',
|
|
@@ -279,7 +280,7 @@ const configuration = {
|
|
|
279
280
|
},
|
|
280
281
|
'sound': {
|
|
281
282
|
'description': ( localize(
|
|
282
|
-
|
|
283
|
+
4160,
|
|
283
284
|
"The delay in milliseconds before a sound is played when there's a warning at the position."
|
|
284
285
|
)),
|
|
285
286
|
'type': 'number',
|
|
@@ -295,7 +296,7 @@ const configuration = {
|
|
|
295
296
|
'properties': {
|
|
296
297
|
'announcement': {
|
|
297
298
|
'description': ( localize(
|
|
298
|
-
|
|
299
|
+
4161,
|
|
299
300
|
"The delay in milliseconds before an announcement is made when there's an error at the position."
|
|
300
301
|
)),
|
|
301
302
|
'type': 'number',
|
|
@@ -304,7 +305,7 @@ const configuration = {
|
|
|
304
305
|
},
|
|
305
306
|
'sound': {
|
|
306
307
|
'description': ( localize(
|
|
307
|
-
|
|
308
|
+
4162,
|
|
308
309
|
"The delay in milliseconds before a sound is played when there's an error at the position."
|
|
309
310
|
)),
|
|
310
311
|
'type': 'number',
|
|
@@ -317,16 +318,16 @@ const configuration = {
|
|
|
317
318
|
'accessibility.signals.lineHasBreakpoint': {
|
|
318
319
|
...signalFeatureBase,
|
|
319
320
|
'description': ( localize(
|
|
320
|
-
|
|
321
|
+
4163,
|
|
321
322
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
|
|
322
323
|
)),
|
|
323
324
|
'properties': {
|
|
324
325
|
'sound': {
|
|
325
|
-
'description': ( localize(
|
|
326
|
+
'description': ( localize(4164, "Plays a sound when the active line has a breakpoint.")),
|
|
326
327
|
...soundFeatureBase
|
|
327
328
|
},
|
|
328
329
|
'announcement': {
|
|
329
|
-
'description': ( localize(
|
|
330
|
+
'description': ( localize(4165, "Announces when the active line has a breakpoint.")),
|
|
330
331
|
...announcementFeatureBase
|
|
331
332
|
},
|
|
332
333
|
},
|
|
@@ -334,12 +335,12 @@ const configuration = {
|
|
|
334
335
|
'accessibility.signals.lineHasInlineSuggestion': {
|
|
335
336
|
...defaultNoAnnouncement,
|
|
336
337
|
'description': ( localize(
|
|
337
|
-
|
|
338
|
+
4166,
|
|
338
339
|
"Plays a sound / audio cue when the active line has an inline suggestion."
|
|
339
340
|
)),
|
|
340
341
|
'properties': {
|
|
341
342
|
'sound': {
|
|
342
|
-
'description': ( localize(
|
|
343
|
+
'description': ( localize(4167, "Plays a sound when the active line has an inline suggestion.")),
|
|
343
344
|
...soundFeatureBase,
|
|
344
345
|
'default': 'off'
|
|
345
346
|
}
|
|
@@ -348,16 +349,16 @@ const configuration = {
|
|
|
348
349
|
'accessibility.signals.nextEditSuggestion': {
|
|
349
350
|
...signalFeatureBase,
|
|
350
351
|
'description': ( localize(
|
|
351
|
-
|
|
352
|
+
4168,
|
|
352
353
|
"Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
|
|
353
354
|
)),
|
|
354
355
|
'properties': {
|
|
355
356
|
'sound': {
|
|
356
|
-
'description': ( localize(
|
|
357
|
+
'description': ( localize(4169, "Plays a sound when there is a next edit suggestion.")),
|
|
357
358
|
...soundFeatureBase,
|
|
358
359
|
},
|
|
359
360
|
'announcement': {
|
|
360
|
-
'description': ( localize(
|
|
361
|
+
'description': ( localize(4170, "Announces when there is a next edit suggestion.")),
|
|
361
362
|
...announcementFeatureBase,
|
|
362
363
|
},
|
|
363
364
|
}
|
|
@@ -365,16 +366,16 @@ const configuration = {
|
|
|
365
366
|
'accessibility.signals.lineHasError': {
|
|
366
367
|
...signalFeatureBase,
|
|
367
368
|
'description': ( localize(
|
|
368
|
-
|
|
369
|
+
4171,
|
|
369
370
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
|
|
370
371
|
)),
|
|
371
372
|
'properties': {
|
|
372
373
|
'sound': {
|
|
373
|
-
'description': ( localize(
|
|
374
|
+
'description': ( localize(4172, "Plays a sound when the active line has an error.")),
|
|
374
375
|
...soundFeatureBase
|
|
375
376
|
},
|
|
376
377
|
'announcement': {
|
|
377
|
-
'description': ( localize(
|
|
378
|
+
'description': ( localize(4173, "Announces when the active line has an error.")),
|
|
378
379
|
...announcementFeatureBase,
|
|
379
380
|
default: 'off'
|
|
380
381
|
},
|
|
@@ -383,13 +384,13 @@ const configuration = {
|
|
|
383
384
|
'accessibility.signals.lineHasFoldedArea': {
|
|
384
385
|
...signalFeatureBase,
|
|
385
386
|
'description': ( localize(
|
|
386
|
-
|
|
387
|
+
4174,
|
|
387
388
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
|
|
388
389
|
)),
|
|
389
390
|
'properties': {
|
|
390
391
|
'sound': {
|
|
391
392
|
'description': ( localize(
|
|
392
|
-
|
|
393
|
+
4175,
|
|
393
394
|
"Plays a sound when the active line has a folded area that can be unfolded."
|
|
394
395
|
)),
|
|
395
396
|
...soundFeatureBase,
|
|
@@ -397,7 +398,7 @@ const configuration = {
|
|
|
397
398
|
},
|
|
398
399
|
'announcement': {
|
|
399
400
|
'description': ( localize(
|
|
400
|
-
|
|
401
|
+
4176,
|
|
401
402
|
"Announces when the active line has a folded area that can be unfolded."
|
|
402
403
|
)),
|
|
403
404
|
...announcementFeatureBase
|
|
@@ -407,16 +408,16 @@ const configuration = {
|
|
|
407
408
|
'accessibility.signals.lineHasWarning': {
|
|
408
409
|
...signalFeatureBase,
|
|
409
410
|
'description': ( localize(
|
|
410
|
-
|
|
411
|
+
4177,
|
|
411
412
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
412
413
|
)),
|
|
413
414
|
'properties': {
|
|
414
415
|
'sound': {
|
|
415
|
-
'description': ( localize(
|
|
416
|
+
'description': ( localize(4178, "Plays a sound when the active line has a warning.")),
|
|
416
417
|
...soundFeatureBase
|
|
417
418
|
},
|
|
418
419
|
'announcement': {
|
|
419
|
-
'description': ( localize(
|
|
420
|
+
'description': ( localize(4179, "Announces when the active line has a warning.")),
|
|
420
421
|
...announcementFeatureBase,
|
|
421
422
|
default: 'off'
|
|
422
423
|
},
|
|
@@ -425,16 +426,16 @@ const configuration = {
|
|
|
425
426
|
'accessibility.signals.positionHasError': {
|
|
426
427
|
...signalFeatureBase,
|
|
427
428
|
'description': ( localize(
|
|
428
|
-
|
|
429
|
+
4180,
|
|
429
430
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
430
431
|
)),
|
|
431
432
|
'properties': {
|
|
432
433
|
'sound': {
|
|
433
|
-
'description': ( localize(
|
|
434
|
+
'description': ( localize(4181, "Plays a sound when the active line has a warning.")),
|
|
434
435
|
...soundFeatureBase
|
|
435
436
|
},
|
|
436
437
|
'announcement': {
|
|
437
|
-
'description': ( localize(
|
|
438
|
+
'description': ( localize(4182, "Announces when the active line has a warning.")),
|
|
438
439
|
...announcementFeatureBase,
|
|
439
440
|
default: 'on'
|
|
440
441
|
},
|
|
@@ -443,16 +444,16 @@ const configuration = {
|
|
|
443
444
|
'accessibility.signals.positionHasWarning': {
|
|
444
445
|
...signalFeatureBase,
|
|
445
446
|
'description': ( localize(
|
|
446
|
-
|
|
447
|
+
4183,
|
|
447
448
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
448
449
|
)),
|
|
449
450
|
'properties': {
|
|
450
451
|
'sound': {
|
|
451
|
-
'description': ( localize(
|
|
452
|
+
'description': ( localize(4184, "Plays a sound when the active line has a warning.")),
|
|
452
453
|
...soundFeatureBase
|
|
453
454
|
},
|
|
454
455
|
'announcement': {
|
|
455
|
-
'description': ( localize(
|
|
456
|
+
'description': ( localize(4185, "Announces when the active line has a warning.")),
|
|
456
457
|
...announcementFeatureBase,
|
|
457
458
|
default: 'on'
|
|
458
459
|
},
|
|
@@ -461,16 +462,16 @@ const configuration = {
|
|
|
461
462
|
'accessibility.signals.onDebugBreak': {
|
|
462
463
|
...signalFeatureBase,
|
|
463
464
|
'description': ( localize(
|
|
464
|
-
|
|
465
|
+
4186,
|
|
465
466
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
|
|
466
467
|
)),
|
|
467
468
|
'properties': {
|
|
468
469
|
'sound': {
|
|
469
|
-
'description': ( localize(
|
|
470
|
+
'description': ( localize(4187, "Plays a sound when the debugger stopped on a breakpoint.")),
|
|
470
471
|
...soundFeatureBase
|
|
471
472
|
},
|
|
472
473
|
'announcement': {
|
|
473
|
-
'description': ( localize(
|
|
474
|
+
'description': ( localize(4188, "Announces when the debugger stopped on a breakpoint.")),
|
|
474
475
|
...announcementFeatureBase
|
|
475
476
|
},
|
|
476
477
|
}
|
|
@@ -478,20 +479,20 @@ const configuration = {
|
|
|
478
479
|
'accessibility.signals.noInlayHints': {
|
|
479
480
|
...signalFeatureBase,
|
|
480
481
|
'description': ( localize(
|
|
481
|
-
|
|
482
|
+
4189,
|
|
482
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."
|
|
483
484
|
)),
|
|
484
485
|
'properties': {
|
|
485
486
|
'sound': {
|
|
486
487
|
'description': ( localize(
|
|
487
|
-
|
|
488
|
+
4190,
|
|
488
489
|
"Plays a sound when trying to read a line with inlay hints that has no inlay hints."
|
|
489
490
|
)),
|
|
490
491
|
...soundFeatureBase
|
|
491
492
|
},
|
|
492
493
|
'announcement': {
|
|
493
494
|
'description': ( localize(
|
|
494
|
-
|
|
495
|
+
4191,
|
|
495
496
|
"Announces when trying to read a line with inlay hints that has no inlay hints."
|
|
496
497
|
)),
|
|
497
498
|
...announcementFeatureBase
|
|
@@ -501,16 +502,16 @@ const configuration = {
|
|
|
501
502
|
'accessibility.signals.taskCompleted': {
|
|
502
503
|
...signalFeatureBase,
|
|
503
504
|
'description': ( localize(
|
|
504
|
-
|
|
505
|
+
4192,
|
|
505
506
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
|
|
506
507
|
)),
|
|
507
508
|
'properties': {
|
|
508
509
|
'sound': {
|
|
509
|
-
'description': ( localize(
|
|
510
|
+
'description': ( localize(4193, "Plays a sound when a task is completed.")),
|
|
510
511
|
...soundFeatureBase
|
|
511
512
|
},
|
|
512
513
|
'announcement': {
|
|
513
|
-
'description': ( localize(
|
|
514
|
+
'description': ( localize(4194, "Announces when a task is completed.")),
|
|
514
515
|
...announcementFeatureBase
|
|
515
516
|
},
|
|
516
517
|
}
|
|
@@ -518,16 +519,16 @@ const configuration = {
|
|
|
518
519
|
'accessibility.signals.taskFailed': {
|
|
519
520
|
...signalFeatureBase,
|
|
520
521
|
'description': ( localize(
|
|
521
|
-
|
|
522
|
+
4195,
|
|
522
523
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
|
|
523
524
|
)),
|
|
524
525
|
'properties': {
|
|
525
526
|
'sound': {
|
|
526
|
-
'description': ( localize(
|
|
527
|
+
'description': ( localize(4196, "Plays a sound when a task fails (non-zero exit code).")),
|
|
527
528
|
...soundFeatureBase
|
|
528
529
|
},
|
|
529
530
|
'announcement': {
|
|
530
|
-
'description': ( localize(
|
|
531
|
+
'description': ( localize(4197, "Announces when a task fails (non-zero exit code).")),
|
|
531
532
|
...announcementFeatureBase
|
|
532
533
|
},
|
|
533
534
|
}
|
|
@@ -535,20 +536,20 @@ const configuration = {
|
|
|
535
536
|
'accessibility.signals.terminalCommandFailed': {
|
|
536
537
|
...signalFeatureBase,
|
|
537
538
|
'description': ( localize(
|
|
538
|
-
|
|
539
|
+
4198,
|
|
539
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."
|
|
540
541
|
)),
|
|
541
542
|
'properties': {
|
|
542
543
|
'sound': {
|
|
543
544
|
'description': ( localize(
|
|
544
|
-
|
|
545
|
+
4199,
|
|
545
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."
|
|
546
547
|
)),
|
|
547
548
|
...soundFeatureBase
|
|
548
549
|
},
|
|
549
550
|
'announcement': {
|
|
550
551
|
'description': ( localize(
|
|
551
|
-
|
|
552
|
+
4200,
|
|
552
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."
|
|
553
554
|
)),
|
|
554
555
|
...announcementFeatureBase
|
|
@@ -558,20 +559,20 @@ const configuration = {
|
|
|
558
559
|
'accessibility.signals.terminalCommandSucceeded': {
|
|
559
560
|
...signalFeatureBase,
|
|
560
561
|
'description': ( localize(
|
|
561
|
-
|
|
562
|
+
4201,
|
|
562
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."
|
|
563
564
|
)),
|
|
564
565
|
'properties': {
|
|
565
566
|
'sound': {
|
|
566
567
|
'description': ( localize(
|
|
567
|
-
|
|
568
|
+
4202,
|
|
568
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."
|
|
569
570
|
)),
|
|
570
571
|
...soundFeatureBase
|
|
571
572
|
},
|
|
572
573
|
'announcement': {
|
|
573
574
|
'description': ( localize(
|
|
574
|
-
|
|
575
|
+
4203,
|
|
575
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."
|
|
576
577
|
)),
|
|
577
578
|
...announcementFeatureBase
|
|
@@ -581,16 +582,16 @@ const configuration = {
|
|
|
581
582
|
'accessibility.signals.terminalQuickFix': {
|
|
582
583
|
...signalFeatureBase,
|
|
583
584
|
'description': ( localize(
|
|
584
|
-
|
|
585
|
+
4204,
|
|
585
586
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
|
|
586
587
|
)),
|
|
587
588
|
'properties': {
|
|
588
589
|
'sound': {
|
|
589
|
-
'description': ( localize(
|
|
590
|
+
'description': ( localize(4205, "Plays a sound when terminal Quick Fixes are available.")),
|
|
590
591
|
...soundFeatureBase
|
|
591
592
|
},
|
|
592
593
|
'announcement': {
|
|
593
|
-
'description': ( localize(
|
|
594
|
+
'description': ( localize(4206, "Announces when terminal Quick Fixes are available.")),
|
|
594
595
|
...announcementFeatureBase
|
|
595
596
|
},
|
|
596
597
|
}
|
|
@@ -598,16 +599,16 @@ const configuration = {
|
|
|
598
599
|
'accessibility.signals.terminalBell': {
|
|
599
600
|
...signalFeatureBase,
|
|
600
601
|
'description': ( localize(
|
|
601
|
-
|
|
602
|
+
4207,
|
|
602
603
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
|
|
603
604
|
)),
|
|
604
605
|
'properties': {
|
|
605
606
|
'sound': {
|
|
606
|
-
'description': ( localize(
|
|
607
|
+
'description': ( localize(4208, "Plays a sound when the terminal bell is ringing.")),
|
|
607
608
|
...soundFeatureBase
|
|
608
609
|
},
|
|
609
610
|
'announcement': {
|
|
610
|
-
'description': ( localize(
|
|
611
|
+
'description': ( localize(4209, "Announces when the terminal bell is ringing.")),
|
|
611
612
|
...announcementFeatureBase
|
|
612
613
|
},
|
|
613
614
|
}
|
|
@@ -615,13 +616,13 @@ const configuration = {
|
|
|
615
616
|
'accessibility.signals.diffLineInserted': {
|
|
616
617
|
...defaultNoAnnouncement,
|
|
617
618
|
'description': ( localize(
|
|
618
|
-
|
|
619
|
+
4210,
|
|
619
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."
|
|
620
621
|
)),
|
|
621
622
|
'properties': {
|
|
622
623
|
'sound': {
|
|
623
624
|
'description': ( localize(
|
|
624
|
-
|
|
625
|
+
4211,
|
|
625
626
|
"Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
626
627
|
)),
|
|
627
628
|
...soundFeatureBase
|
|
@@ -631,13 +632,13 @@ const configuration = {
|
|
|
631
632
|
'accessibility.signals.diffLineModified': {
|
|
632
633
|
...defaultNoAnnouncement,
|
|
633
634
|
'description': ( localize(
|
|
634
|
-
|
|
635
|
+
4212,
|
|
635
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."
|
|
636
637
|
)),
|
|
637
638
|
'properties': {
|
|
638
639
|
'sound': {
|
|
639
640
|
'description': ( localize(
|
|
640
|
-
|
|
641
|
+
4213,
|
|
641
642
|
"Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
642
643
|
)),
|
|
643
644
|
...soundFeatureBase
|
|
@@ -647,13 +648,13 @@ const configuration = {
|
|
|
647
648
|
'accessibility.signals.diffLineDeleted': {
|
|
648
649
|
...defaultNoAnnouncement,
|
|
649
650
|
'description': ( localize(
|
|
650
|
-
|
|
651
|
+
4214,
|
|
651
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."
|
|
652
653
|
)),
|
|
653
654
|
'properties': {
|
|
654
655
|
'sound': {
|
|
655
656
|
'description': ( localize(
|
|
656
|
-
|
|
657
|
+
4215,
|
|
657
658
|
"Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
658
659
|
)),
|
|
659
660
|
...soundFeatureBase
|
|
@@ -663,12 +664,12 @@ const configuration = {
|
|
|
663
664
|
'accessibility.signals.chatEditModifiedFile': {
|
|
664
665
|
...defaultNoAnnouncement,
|
|
665
666
|
'description': ( localize(
|
|
666
|
-
|
|
667
|
+
4216,
|
|
667
668
|
"Plays a sound / audio cue when revealing a file with changes from chat edits"
|
|
668
669
|
)),
|
|
669
670
|
'properties': {
|
|
670
671
|
'sound': {
|
|
671
|
-
'description': ( localize(
|
|
672
|
+
'description': ( localize(4217, "Plays a sound when revealing a file with changes from chat edits")),
|
|
672
673
|
...soundFeatureBase
|
|
673
674
|
}
|
|
674
675
|
}
|
|
@@ -676,20 +677,20 @@ const configuration = {
|
|
|
676
677
|
'accessibility.signals.notebookCellCompleted': {
|
|
677
678
|
...signalFeatureBase,
|
|
678
679
|
'description': ( localize(
|
|
679
|
-
|
|
680
|
+
4218,
|
|
680
681
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
|
|
681
682
|
)),
|
|
682
683
|
'properties': {
|
|
683
684
|
'sound': {
|
|
684
685
|
'description': ( localize(
|
|
685
|
-
|
|
686
|
+
4219,
|
|
686
687
|
"Plays a sound when a notebook cell execution is successfully completed."
|
|
687
688
|
)),
|
|
688
689
|
...soundFeatureBase
|
|
689
690
|
},
|
|
690
691
|
'announcement': {
|
|
691
692
|
'description': ( localize(
|
|
692
|
-
|
|
693
|
+
4220,
|
|
693
694
|
"Announces when a notebook cell execution is successfully completed."
|
|
694
695
|
)),
|
|
695
696
|
...announcementFeatureBase
|
|
@@ -699,16 +700,16 @@ const configuration = {
|
|
|
699
700
|
'accessibility.signals.notebookCellFailed': {
|
|
700
701
|
...signalFeatureBase,
|
|
701
702
|
'description': ( localize(
|
|
702
|
-
|
|
703
|
+
4221,
|
|
703
704
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
|
|
704
705
|
)),
|
|
705
706
|
'properties': {
|
|
706
707
|
'sound': {
|
|
707
|
-
'description': ( localize(
|
|
708
|
+
'description': ( localize(4222, "Plays a sound when a notebook cell execution fails.")),
|
|
708
709
|
...soundFeatureBase
|
|
709
710
|
},
|
|
710
711
|
'announcement': {
|
|
711
|
-
'description': ( localize(
|
|
712
|
+
'description': ( localize(4223, "Announces when a notebook cell execution fails.")),
|
|
712
713
|
...announcementFeatureBase
|
|
713
714
|
},
|
|
714
715
|
}
|
|
@@ -716,16 +717,16 @@ const configuration = {
|
|
|
716
717
|
'accessibility.signals.progress': {
|
|
717
718
|
...signalFeatureBase,
|
|
718
719
|
'description': ( localize(
|
|
719
|
-
|
|
720
|
+
4224,
|
|
720
721
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
|
|
721
722
|
)),
|
|
722
723
|
'properties': {
|
|
723
724
|
'sound': {
|
|
724
|
-
'description': ( localize(
|
|
725
|
+
'description': ( localize(4225, "Plays a sound on loop while progress is occurring.")),
|
|
725
726
|
...soundFeatureBase
|
|
726
727
|
},
|
|
727
728
|
'announcement': {
|
|
728
|
-
'description': ( localize(
|
|
729
|
+
'description': ( localize(4226, "Alerts on loop while progress is occurring.")),
|
|
729
730
|
...announcementFeatureBase
|
|
730
731
|
},
|
|
731
732
|
},
|
|
@@ -733,56 +734,56 @@ const configuration = {
|
|
|
733
734
|
'accessibility.signals.chatRequestSent': {
|
|
734
735
|
...signalFeatureBase,
|
|
735
736
|
'description': ( localize(
|
|
736
|
-
|
|
737
|
+
4227,
|
|
737
738
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
|
|
738
739
|
)),
|
|
739
740
|
'properties': {
|
|
740
741
|
'sound': {
|
|
741
|
-
'description': ( localize(
|
|
742
|
+
'description': ( localize(4228, "Plays a sound when a chat request is made.")),
|
|
742
743
|
...soundFeatureBase
|
|
743
744
|
},
|
|
744
745
|
'announcement': {
|
|
745
|
-
'description': ( localize(
|
|
746
|
+
'description': ( localize(4229, "Announces when a chat request is made.")),
|
|
746
747
|
...announcementFeatureBase
|
|
747
748
|
},
|
|
748
749
|
}
|
|
749
750
|
},
|
|
750
751
|
'accessibility.signals.chatResponseReceived': {
|
|
751
752
|
...defaultNoAnnouncement,
|
|
752
|
-
'description': ( localize(
|
|
753
|
+
'description': ( localize(4230, "Plays a sound / audio cue when the response has been received.")),
|
|
753
754
|
'properties': {
|
|
754
755
|
'sound': {
|
|
755
|
-
'description': ( localize(
|
|
756
|
+
'description': ( localize(4231, "Plays a sound on when the response has been received.")),
|
|
756
757
|
...soundFeatureBase
|
|
757
758
|
},
|
|
758
759
|
}
|
|
759
760
|
},
|
|
760
761
|
'accessibility.signals.codeActionTriggered': {
|
|
761
762
|
...defaultNoAnnouncement,
|
|
762
|
-
'description': ( localize(
|
|
763
|
+
'description': ( localize(4232, "Plays a sound / audio cue - when a code action has been triggered.")),
|
|
763
764
|
'properties': {
|
|
764
765
|
'sound': {
|
|
765
|
-
'description': ( localize(
|
|
766
|
+
'description': ( localize(4233, "Plays a sound when a code action has been triggered.")),
|
|
766
767
|
...soundFeatureBase
|
|
767
768
|
}
|
|
768
769
|
}
|
|
769
770
|
},
|
|
770
771
|
'accessibility.signals.codeActionApplied': {
|
|
771
772
|
...defaultNoAnnouncement,
|
|
772
|
-
'description': ( localize(
|
|
773
|
+
'description': ( localize(4234, "Plays a sound / audio cue when the code action has been applied.")),
|
|
773
774
|
'properties': {
|
|
774
775
|
'sound': {
|
|
775
|
-
'description': ( localize(
|
|
776
|
+
'description': ( localize(4235, "Plays a sound when the code action has been applied.")),
|
|
776
777
|
...soundFeatureBase
|
|
777
778
|
},
|
|
778
779
|
}
|
|
779
780
|
},
|
|
780
781
|
'accessibility.signals.voiceRecordingStarted': {
|
|
781
782
|
...defaultNoAnnouncement,
|
|
782
|
-
'description': ( localize(
|
|
783
|
+
'description': ( localize(4236, "Plays a sound / audio cue when the voice recording has started.")),
|
|
783
784
|
'properties': {
|
|
784
785
|
'sound': {
|
|
785
|
-
'description': ( localize(
|
|
786
|
+
'description': ( localize(4237, "Plays a sound when the voice recording has started.")),
|
|
786
787
|
...soundFeatureBase,
|
|
787
788
|
},
|
|
788
789
|
},
|
|
@@ -792,10 +793,10 @@ const configuration = {
|
|
|
792
793
|
},
|
|
793
794
|
'accessibility.signals.voiceRecordingStopped': {
|
|
794
795
|
...defaultNoAnnouncement,
|
|
795
|
-
'description': ( localize(
|
|
796
|
+
'description': ( localize(4238, "Plays a sound / audio cue when the voice recording has stopped.")),
|
|
796
797
|
'properties': {
|
|
797
798
|
'sound': {
|
|
798
|
-
'description': ( localize(
|
|
799
|
+
'description': ( localize(4239, "Plays a sound when the voice recording has stopped.")),
|
|
799
800
|
...soundFeatureBase,
|
|
800
801
|
default: 'off'
|
|
801
802
|
},
|
|
@@ -804,16 +805,16 @@ const configuration = {
|
|
|
804
805
|
'accessibility.signals.clear': {
|
|
805
806
|
...signalFeatureBase,
|
|
806
807
|
'description': ( localize(
|
|
807
|
-
|
|
808
|
+
4240,
|
|
808
809
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
|
|
809
810
|
)),
|
|
810
811
|
'properties': {
|
|
811
812
|
'sound': {
|
|
812
|
-
'description': ( localize(
|
|
813
|
+
'description': ( localize(4241, "Plays a sound when a feature is cleared.")),
|
|
813
814
|
...soundFeatureBase
|
|
814
815
|
},
|
|
815
816
|
'announcement': {
|
|
816
|
-
'description': ( localize(
|
|
817
|
+
'description': ( localize(4242, "Announces when a feature is cleared.")),
|
|
817
818
|
...announcementFeatureBase
|
|
818
819
|
},
|
|
819
820
|
},
|
|
@@ -821,16 +822,16 @@ const configuration = {
|
|
|
821
822
|
'accessibility.signals.editsUndone': {
|
|
822
823
|
...signalFeatureBase,
|
|
823
824
|
'description': ( localize(
|
|
824
|
-
|
|
825
|
+
4243,
|
|
825
826
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
|
|
826
827
|
)),
|
|
827
828
|
'properties': {
|
|
828
829
|
'sound': {
|
|
829
|
-
'description': ( localize(
|
|
830
|
+
'description': ( localize(4244, "Plays a sound when edits have been undone.")),
|
|
830
831
|
...soundFeatureBase
|
|
831
832
|
},
|
|
832
833
|
'announcement': {
|
|
833
|
-
'description': ( localize(
|
|
834
|
+
'description': ( localize(4245, "Announces when edits have been undone.")),
|
|
834
835
|
...announcementFeatureBase
|
|
835
836
|
},
|
|
836
837
|
},
|
|
@@ -838,16 +839,16 @@ const configuration = {
|
|
|
838
839
|
'accessibility.signals.editsKept': {
|
|
839
840
|
...signalFeatureBase,
|
|
840
841
|
'description': ( localize(
|
|
841
|
-
|
|
842
|
+
4246,
|
|
842
843
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
|
|
843
844
|
)),
|
|
844
845
|
'properties': {
|
|
845
846
|
'sound': {
|
|
846
|
-
'description': ( localize(
|
|
847
|
+
'description': ( localize(4247, "Plays a sound when edits are kept.")),
|
|
847
848
|
...soundFeatureBase
|
|
848
849
|
},
|
|
849
850
|
'announcement': {
|
|
850
|
-
'description': ( localize(
|
|
851
|
+
'description': ( localize(4248, "Announces when edits are kept.")),
|
|
851
852
|
...announcementFeatureBase
|
|
852
853
|
},
|
|
853
854
|
},
|
|
@@ -857,30 +858,30 @@ const configuration = {
|
|
|
857
858
|
'tags': ['accessibility'],
|
|
858
859
|
additionalProperties: false,
|
|
859
860
|
'markdownDescription': ( localize(
|
|
860
|
-
|
|
861
|
+
4249,
|
|
861
862
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
|
|
862
863
|
)),
|
|
863
864
|
'properties': {
|
|
864
865
|
'sound': {
|
|
865
|
-
'description': ( localize(
|
|
866
|
+
'description': ( localize(4250, "Plays a sound when a file is saved.")),
|
|
866
867
|
'type': 'string',
|
|
867
868
|
'enum': ['userGesture', 'always', 'never'],
|
|
868
869
|
'default': 'never',
|
|
869
870
|
'enumDescriptions': [
|
|
870
|
-
( localize(
|
|
871
|
-
( localize(
|
|
872
|
-
( localize(
|
|
871
|
+
( localize(4251, "Plays the sound when a user explicitly saves a file.")),
|
|
872
|
+
( localize(4252, "Plays the sound whenever a file is saved, including auto save.")),
|
|
873
|
+
( localize(4253, "Never plays the sound."))
|
|
873
874
|
],
|
|
874
875
|
},
|
|
875
876
|
'announcement': {
|
|
876
|
-
'description': ( localize(
|
|
877
|
+
'description': ( localize(4254, "Announces when a file is saved.")),
|
|
877
878
|
'type': 'string',
|
|
878
879
|
'enum': ['userGesture', 'always', 'never'],
|
|
879
880
|
'default': 'never',
|
|
880
881
|
'enumDescriptions': [
|
|
881
|
-
( localize(
|
|
882
|
-
( localize(
|
|
883
|
-
( localize(
|
|
882
|
+
( localize(4255, "Announces when a user explicitly saves a file.")),
|
|
883
|
+
( localize(4256, "Announces whenever a file is saved, including auto save.")),
|
|
884
|
+
( localize(4257, "Never plays the announcement."))
|
|
884
885
|
],
|
|
885
886
|
},
|
|
886
887
|
},
|
|
@@ -894,36 +895,36 @@ const configuration = {
|
|
|
894
895
|
'tags': ['accessibility'],
|
|
895
896
|
additionalProperties: false,
|
|
896
897
|
'markdownDescription': ( localize(
|
|
897
|
-
|
|
898
|
+
4258,
|
|
898
899
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
|
|
899
900
|
)),
|
|
900
901
|
'properties': {
|
|
901
902
|
'sound': {
|
|
902
|
-
'description': ( localize(
|
|
903
|
+
'description': ( localize(4259, "Plays a sound when a file or notebook is formatted.")),
|
|
903
904
|
'type': 'string',
|
|
904
905
|
'enum': ['userGesture', 'always', 'never'],
|
|
905
906
|
'default': 'never',
|
|
906
907
|
'enumDescriptions': [
|
|
907
|
-
( localize(
|
|
908
|
+
( localize(4260, "Plays the sound when a user explicitly formats a file.")),
|
|
908
909
|
( localize(
|
|
909
|
-
|
|
910
|
+
4261,
|
|
910
911
|
"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."
|
|
911
912
|
)),
|
|
912
|
-
( localize(
|
|
913
|
+
( localize(4262, "Never plays the sound."))
|
|
913
914
|
],
|
|
914
915
|
},
|
|
915
916
|
'announcement': {
|
|
916
|
-
'description': ( localize(
|
|
917
|
+
'description': ( localize(4263, "Announces when a file or notebook is formatted.")),
|
|
917
918
|
'type': 'string',
|
|
918
919
|
'enum': ['userGesture', 'always', 'never'],
|
|
919
920
|
'default': 'never',
|
|
920
921
|
'enumDescriptions': [
|
|
921
|
-
( localize(
|
|
922
|
+
( localize(4264, "Announces when a user explicitly formats a file.")),
|
|
922
923
|
( localize(
|
|
923
|
-
|
|
924
|
+
4265,
|
|
924
925
|
"Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
925
926
|
)),
|
|
926
|
-
( localize(
|
|
927
|
+
( localize(4266, "Never announces."))
|
|
927
928
|
],
|
|
928
929
|
},
|
|
929
930
|
},
|
|
@@ -935,23 +936,23 @@ const configuration = {
|
|
|
935
936
|
'accessibility.signals.chatUserActionRequired': {
|
|
936
937
|
...signalFeatureBase,
|
|
937
938
|
'markdownDescription': ( localize(
|
|
938
|
-
|
|
939
|
+
4267,
|
|
939
940
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
|
|
940
941
|
)),
|
|
941
942
|
'properties': {
|
|
942
943
|
'sound': {
|
|
943
|
-
'description': ( localize(
|
|
944
|
+
'description': ( localize(4268, "Plays a sound when user action is required in the chat.")),
|
|
944
945
|
'type': 'string',
|
|
945
946
|
'enum': ['auto', 'on', 'off'],
|
|
946
947
|
'enumDescriptions': [
|
|
947
|
-
( localize(
|
|
948
|
-
( localize(
|
|
949
|
-
( localize(
|
|
948
|
+
( localize(4269, "Enable sound when a screen reader is attached.")),
|
|
949
|
+
( localize(4134, "Enable sound.")),
|
|
950
|
+
( localize(4135, "Disable sound."))
|
|
950
951
|
],
|
|
951
952
|
},
|
|
952
953
|
'announcement': {
|
|
953
954
|
'description': ( localize(
|
|
954
|
-
|
|
955
|
+
4270,
|
|
955
956
|
"Announces when a user action is required in the chat - including information about the action and how to take it."
|
|
956
957
|
)),
|
|
957
958
|
...announcementFeatureBase
|
|
@@ -965,13 +966,13 @@ const configuration = {
|
|
|
965
966
|
},
|
|
966
967
|
'accessibility.underlineLinks': {
|
|
967
968
|
'type': 'boolean',
|
|
968
|
-
'description': ( localize(
|
|
969
|
+
'description': ( localize(4271, "Controls whether links should be underlined in the workbench.")),
|
|
969
970
|
'default': false,
|
|
970
971
|
},
|
|
971
972
|
'accessibility.debugWatchVariableAnnouncements': {
|
|
972
973
|
'type': 'boolean',
|
|
973
974
|
'description': ( localize(
|
|
974
|
-
|
|
975
|
+
4272,
|
|
975
976
|
"Controls whether variable changes should be announced in the debug watch view."
|
|
976
977
|
)),
|
|
977
978
|
'default': true,
|
|
@@ -979,7 +980,7 @@ const configuration = {
|
|
|
979
980
|
'accessibility.replEditor.readLastExecutionOutput': {
|
|
980
981
|
'type': 'boolean',
|
|
981
982
|
'description': ( localize(
|
|
982
|
-
|
|
983
|
+
4273,
|
|
983
984
|
"Controls whether the output from an execution in the native REPL will be announced."
|
|
984
985
|
)),
|
|
985
986
|
'default': true,
|
|
@@ -989,7 +990,7 @@ const configuration = {
|
|
|
989
990
|
enum: ['none', 'input', 'lastExecution'],
|
|
990
991
|
default: 'input',
|
|
991
992
|
description: ( localize(
|
|
992
|
-
|
|
993
|
+
4274,
|
|
993
994
|
"Control whether focus should automatically be sent to the REPL when code is executed."
|
|
994
995
|
)),
|
|
995
996
|
},
|
|
@@ -997,7 +998,7 @@ const configuration = {
|
|
|
997
998
|
'type': 'boolean',
|
|
998
999
|
'default': true,
|
|
999
1000
|
'markdownDescription': ( localize(
|
|
1000
|
-
|
|
1001
|
+
4275,
|
|
1001
1002
|
"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.",
|
|
1002
1003
|
'`#window.title#`',
|
|
1003
1004
|
'`activeEditorState`'
|
|
@@ -1007,10 +1008,18 @@ const configuration = {
|
|
|
1007
1008
|
'type': 'boolean',
|
|
1008
1009
|
'default': true,
|
|
1009
1010
|
'markdownDescription': ( localize(
|
|
1010
|
-
|
|
1011
|
+
4276,
|
|
1011
1012
|
"Controls whether files should be opened when the chat agent has applied edits to them."
|
|
1012
1013
|
))
|
|
1013
1014
|
},
|
|
1015
|
+
'accessibility.verboseChatProgressUpdates': {
|
|
1016
|
+
'type': 'boolean',
|
|
1017
|
+
'default': true,
|
|
1018
|
+
'markdownDescription': ( localize(
|
|
1019
|
+
4277,
|
|
1020
|
+
"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
|
+
))
|
|
1022
|
+
}
|
|
1014
1023
|
}
|
|
1015
1024
|
};
|
|
1016
1025
|
function registerAccessibilityConfiguration() {
|
|
@@ -1021,7 +1030,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1021
1030
|
properties: {
|
|
1022
1031
|
[AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
|
|
1023
1032
|
description: ( localize(
|
|
1024
|
-
|
|
1033
|
+
4278,
|
|
1025
1034
|
'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.'
|
|
1026
1035
|
)),
|
|
1027
1036
|
type: 'boolean',
|
|
@@ -1031,7 +1040,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1031
1040
|
},
|
|
1032
1041
|
[AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
|
|
1033
1042
|
markdownDescription: ( localize(
|
|
1034
|
-
|
|
1043
|
+
4279,
|
|
1035
1044
|
'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
|
|
1036
1045
|
`\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
|
|
1037
1046
|
)),
|
|
@@ -1043,15 +1052,23 @@ function registerAccessibilityConfiguration() {
|
|
|
1043
1052
|
scope: ConfigurationScope.APPLICATION,
|
|
1044
1053
|
},
|
|
1045
1054
|
[AccessibilityWorkbenchSettingId.HideAccessibleView]: {
|
|
1046
|
-
description: ( localize(
|
|
1055
|
+
description: ( localize(4280, "Controls whether the Accessible View is hidden.")),
|
|
1047
1056
|
type: 'boolean',
|
|
1048
1057
|
default: false,
|
|
1049
1058
|
tags: ['accessibility']
|
|
1059
|
+
},
|
|
1060
|
+
[AccessibilityWorkbenchSettingId.VerboseChatProgressUpdates]: {
|
|
1061
|
+
'type': 'boolean',
|
|
1062
|
+
'default': true,
|
|
1063
|
+
'markdownDescription': ( localize(
|
|
1064
|
+
4277,
|
|
1065
|
+
"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
|
+
))
|
|
1050
1067
|
}
|
|
1051
1068
|
}
|
|
1052
1069
|
});
|
|
1053
1070
|
}
|
|
1054
|
-
const SpeechTimeoutDefault =
|
|
1071
|
+
const SpeechTimeoutDefault = 2000;
|
|
1055
1072
|
let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityConfiguration extends Disposable {
|
|
1056
1073
|
static { this.ID = 'workbench.contrib.dynamicSpeechAccessibilityConfiguration'; }
|
|
1057
1074
|
constructor(speechService) {
|
|
@@ -1073,7 +1090,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1073
1090
|
properties: {
|
|
1074
1091
|
[AccessibilityVoiceSettingId.SpeechTimeout]: {
|
|
1075
1092
|
'markdownDescription': ( localize(
|
|
1076
|
-
|
|
1093
|
+
4281,
|
|
1077
1094
|
"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."
|
|
1078
1095
|
)),
|
|
1079
1096
|
'type': 'number',
|
|
@@ -1082,14 +1099,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1082
1099
|
'tags': ['accessibility']
|
|
1083
1100
|
},
|
|
1084
1101
|
[AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
|
|
1085
|
-
'markdownDescription': ( localize(
|
|
1102
|
+
'markdownDescription': ( localize(4282, "Whether to ignore code snippets in text-to-speech synthesis.")),
|
|
1086
1103
|
'type': 'boolean',
|
|
1087
1104
|
'default': false,
|
|
1088
1105
|
'tags': ['accessibility']
|
|
1089
1106
|
},
|
|
1090
1107
|
[AccessibilityVoiceSettingId.SpeechLanguage]: {
|
|
1091
1108
|
'markdownDescription': ( localize(
|
|
1092
|
-
|
|
1109
|
+
4283,
|
|
1093
1110
|
"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."
|
|
1094
1111
|
)),
|
|
1095
1112
|
'type': 'string',
|
|
@@ -1104,13 +1121,13 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1104
1121
|
'enum': ['on', 'off'],
|
|
1105
1122
|
'enumDescriptions': [
|
|
1106
1123
|
( localize(
|
|
1107
|
-
|
|
1124
|
+
4284,
|
|
1108
1125
|
"Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
|
|
1109
1126
|
)),
|
|
1110
|
-
( localize(
|
|
1127
|
+
( localize(4285, "Disable the feature.")),
|
|
1111
1128
|
],
|
|
1112
1129
|
'markdownDescription': ( localize(
|
|
1113
|
-
|
|
1130
|
+
4286,
|
|
1114
1131
|
"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."
|
|
1115
1132
|
)),
|
|
1116
1133
|
'default': 'off',
|
|
@@ -1122,7 +1139,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1122
1139
|
getLanguages() {
|
|
1123
1140
|
return {
|
|
1124
1141
|
['auto']: {
|
|
1125
|
-
name: ( localize(
|
|
1142
|
+
name: ( localize(4287, "Auto (Use Display Language)"))
|
|
1126
1143
|
},
|
|
1127
1144
|
...SPEECH_LANGUAGES
|
|
1128
1145
|
};
|