@codingame/monaco-vscode-api 16.1.1 → 17.1.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 +105 -0
- package/monaco.d.ts +2 -2
- package/package.json +10 -9
- package/services.d.ts +4 -4
- package/services.js +3 -3
- package/vscode/product.json.js +3 -0
- package/vscode/src/vs/base/browser/dom.d.ts +1 -0
- package/vscode/src/vs/base/browser/dom.js +6 -1
- package/vscode/src/vs/base/browser/mouseEvent.d.ts +2 -0
- package/vscode/src/vs/base/browser/mouseEvent.js +1 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +2 -3
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +6 -1
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +1 -3
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +5 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +17 -4
- package/vscode/src/vs/base/common/arrays.d.ts +1 -0
- package/vscode/src/vs/base/common/arrays.js +5 -2
- package/vscode/src/vs/base/common/async.js +9 -2
- package/vscode/src/vs/base/common/codicons.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +5 -0
- package/vscode/src/vs/base/common/color.d.ts +1 -0
- package/vscode/src/vs/base/common/color.js +10 -0
- package/vscode/src/vs/base/common/comparers.d.ts +2 -2
- package/vscode/src/vs/base/common/decorators.d.ts +1 -1
- package/vscode/src/vs/base/common/glob.d.ts +3 -0
- package/vscode/src/vs/base/common/glob.js +10 -1
- package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -0
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +6 -8
- package/vscode/src/vs/base/common/observableInternal/autorun.js +15 -11
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +0 -10
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +23 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +30 -0
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +18 -13
- package/vscode/src/vs/base/common/observableInternal/derived.js +47 -18
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +6 -5
- package/vscode/src/vs/base/common/observableInternal/index.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/promise.d.ts +28 -0
- package/vscode/src/vs/base/common/observableInternal/promise.js +65 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.d.ts +16 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.js +36 -0
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +2 -0
- package/vscode/src/vs/base/common/observableInternal/utils.js +19 -11
- package/vscode/src/vs/base/common/product.d.ts +5 -0
- package/vscode/src/vs/base/common/sseParser.d.ts +26 -0
- package/vscode/src/vs/base/common/sseParser.js +134 -0
- package/vscode/src/vs/base/common/stopwatch.js +2 -2
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +8 -19
- package/vscode/src/vs/base/common/ternarySearchTree.d.ts +1 -0
- package/vscode/src/vs/base/common/ternarySearchTree.js +55 -13
- package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +1 -0
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +3 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +6 -3
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +86 -54
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +12 -8
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +9 -6
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +3 -3
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -2
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.js +2 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +8 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +6 -1
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +1 -0
- package/vscode/src/vs/editor/browser/view/renderingContext.js +3 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.js +13 -6
- package/vscode/src/vs/editor/browser/view/viewOverlays.js +4 -1
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -5
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +4 -2
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +6 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +2 -2
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +5 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +15 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +7 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +10 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +19 -15
- package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +5 -0
- package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +20 -0
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +24 -23
- package/vscode/src/vs/editor/common/config/editorOptions.js +1 -2
- package/vscode/src/vs/editor/common/core/columnRange.d.ts +11 -0
- package/vscode/src/vs/editor/common/core/columnRange.js +32 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.js +10 -0
- package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
- package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +15 -3
- package/vscode/src/vs/editor/common/core/positionToOffset.js +45 -11
- package/vscode/src/vs/editor/common/core/rangeSingleLine.d.ts +9 -0
- package/vscode/src/vs/editor/common/core/rangeSingleLine.js +27 -0
- package/vscode/src/vs/editor/common/core/textEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/textEdit.js +41 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -0
- package/vscode/src/vs/editor/common/languages/modesRegistry.d.ts +2 -2
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +4 -2
- package/vscode/src/vs/editor/common/languages.d.ts +22 -1
- package/vscode/src/vs/editor/common/languages.js +7 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +5 -1
- package/vscode/src/vs/editor/common/model/textModel.js +80 -18
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +5 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +7 -1
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +11 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +14 -1
- package/vscode/src/vs/editor/common/tokens/common.d.ts +7 -0
- package/vscode/src/vs/editor/common/tokens/common.js +18 -0
- package/vscode/src/vs/editor/common/tokens/contiguousTokensEditing.d.ts +1 -1
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +2 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +20 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +2 -1
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.js +9 -4
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +4 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +25 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.js +73 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +35 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +339 -0
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +8 -6
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +42 -49
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +6 -3
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.js +16 -5
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +44 -7
- package/vscode/src/vs/editor/common/viewModel.d.ts +5 -0
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +11 -3
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +14 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +20 -14
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +3 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +4 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +5 -11
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +1 -7
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +2 -15
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +24 -23
- 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/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 +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 +5 -5
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- 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 +14 -12
- 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 +21 -21
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +0 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +29 -41
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +11 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +10 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +31 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +16 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +156 -202
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +21 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +135 -431
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +98 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +487 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +34 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +141 -132
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +2 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +21 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +19 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +17 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +5 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +139 -188
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +8 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.d.ts +23 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +157 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +37 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +3 -2
- 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/inlineEditsCollapsedView.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +28 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +21 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +215 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +22 -21
- 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.js +30 -30
- 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 +1 -1
- 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 +17 -17
- 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 +23 -49
- 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.js +4 -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 +8 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +2 -2
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +24 -14
- 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 +19 -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 +5 -10
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- 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/contrib/zoneWidget/browser/zoneWidget.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +23 -14
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +2 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +17 -3
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +6 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +2 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -1
- 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/clipboard/browser/clipboardService.d.ts +1 -0
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +3 -0
- package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +15 -13
- package/vscode/src/vs/platform/configuration/common/configurations.js +1 -1
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- 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/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +5 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +6 -2
- package/vscode/src/vs/platform/editor/common/editor.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +8 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +94 -4
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -7
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -11
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +7 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +9 -8
- 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/jsonschemas/common/jsonContributionRegistry.js +5 -4
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
- 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.d.ts +1 -1
- 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.d.ts +2 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +5 -5
- package/vscode/src/vs/platform/markers/common/markers.d.ts +7 -0
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -7
- package/vscode/src/vs/platform/native/common/native.d.ts +168 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +6 -2
- package/vscode/src/vs/platform/notification/common/notification.js +3 -2
- package/vscode/src/vs/platform/notification/common/notification.service.d.ts +2 -3
- package/vscode/src/vs/platform/product/common/product.js +7 -90
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +4 -19
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +6 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +33 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +2 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +6 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +25 -18
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.d.ts +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +58 -43
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
- package/vscode/src/vs/platform/registry/common/platform.js +9 -1
- package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/request/common/request.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 +14 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +14 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -2
- package/vscode/src/vs/platform/theme/browser/defaultStyles.js +4 -2
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +7 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +12 -4
- 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 +94 -94
- package/vscode/src/vs/platform/theme/common/colors/inputColors.d.ts +2 -0
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +49 -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 +10 -8
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +0 -8
- package/vscode/src/vs/platform/theme/common/themeService.js +4 -3
- 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.d.ts +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -2
- package/vscode/src/vs/platform/window/common/window.d.ts +4 -0
- package/vscode/src/vs/platform/window/common/window.js +2 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +27 -20
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +54 -19
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.js +38 -0
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +30 -17
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +0 -1
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +15 -4
- package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +4 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +31 -6
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +60 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +15 -9
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -3
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +279 -82
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostRequireInterceptor.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +21 -0
- package/vscode/src/vs/workbench/api/common/extHostSearch.js +1 -1
- 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.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +27 -9
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +201 -29
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -27
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +79 -28
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +7 -4
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +34 -9
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.d.ts +1 -0
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.js +3 -0
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +10 -16
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +3 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -71
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +13 -9
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -147
- 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 -2
- 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/chatEditing/chatEditingEditorContextKeys.js +15 -14
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +245 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +435 -0
- 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 +6 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -49
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -26
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +16 -23
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +585 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +1179 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +116 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +211 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -7
- 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 +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +12 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +14 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +18 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/promptHeader/metadata/index.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +14 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.d.ts +28 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.d.ts +10 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +8 -25
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +11 -97
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +0 -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.d.ts +1 -1
- 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 +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +171 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +127 -0
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +3 -3
- 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.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +3 -1
- 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.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -8
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -10
- 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 +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +8 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +16 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.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/quickDiff.service.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +77 -16
- 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/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- 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 +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
- package/vscode/src/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.d.ts +17 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.js +10 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +13 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +2 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +61 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +3 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +25 -29
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +4 -1
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.js +3 -2
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +4 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +2 -4
- 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/notebook/common/notebookDocumentService.d.ts +1 -0
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +2 -0
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/output/common/output.js +6 -4
- 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/search/common/search.d.ts +2 -1
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +5 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.js +6 -1
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +2 -2
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +31 -23
- package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +64 -0
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +560 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +165 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +74 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +12 -2
- 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 +12 -12
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +204 -9
- package/vscode-dts/vscode.proposed.aiSettingsSearch.d.ts +30 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +84 -5
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +1 -1
- package/vscode-dts/vscode.proposed.commentThreadApplicability.d.ts +1 -1
- package/vscode-dts/vscode.proposed.contribDebugCreateConfiguration.d.ts +1 -1
- package/vscode-dts/vscode.proposed.d.ts +2 -2
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -2
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +46 -8
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +106 -16
- package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +2 -0
- package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +115 -21
- package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +7 -3
- package/vscode-dts/vscode.proposed.textSearchProvider2.d.ts +23 -1
- package/vscode-dts/vscode.proposed.toolProgress.d.ts +25 -0
- package/vscode-dts/vscode.proposed.tunnelFactory.d.ts +1 -1
- package/workbench.d.ts +1 -1
- package/vscode-dts/vscode.proposed.languageModelToolsForAgent.d.ts +0 -8
- package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +0 -170
|
@@ -65,7 +65,7 @@ const baseVerbosityProperty = {
|
|
|
65
65
|
};
|
|
66
66
|
const accessibilityConfigurationNodeBase = ( Object.freeze({
|
|
67
67
|
id: 'accessibility',
|
|
68
|
-
title: ( localize(
|
|
68
|
+
title: ( localize(4024, "Accessibility")),
|
|
69
69
|
type: 'object'
|
|
70
70
|
}));
|
|
71
71
|
const soundFeatureBase = {
|
|
@@ -73,9 +73,9 @@ const soundFeatureBase = {
|
|
|
73
73
|
'enum': ['auto', 'on', 'off'],
|
|
74
74
|
'default': 'auto',
|
|
75
75
|
'enumDescriptions': [
|
|
76
|
-
( localize(
|
|
77
|
-
( localize(
|
|
78
|
-
( localize(
|
|
76
|
+
( localize(4025, "Enable sound when a screen reader is attached.")),
|
|
77
|
+
( localize(4026, "Enable sound.")),
|
|
78
|
+
( localize(4027, "Disable sound."))
|
|
79
79
|
],
|
|
80
80
|
tags: ['accessibility'],
|
|
81
81
|
};
|
|
@@ -94,10 +94,10 @@ const announcementFeatureBase = {
|
|
|
94
94
|
'default': 'auto',
|
|
95
95
|
'enumDescriptions': [
|
|
96
96
|
( localize(
|
|
97
|
-
|
|
97
|
+
4028,
|
|
98
98
|
"Enable announcement, will only play when in screen reader optimized mode."
|
|
99
99
|
)),
|
|
100
|
-
( localize(
|
|
100
|
+
( localize(4029, "Disable announcement."))
|
|
101
101
|
],
|
|
102
102
|
tags: ['accessibility'],
|
|
103
103
|
};
|
|
@@ -115,109 +115,109 @@ const configuration = {
|
|
|
115
115
|
properties: {
|
|
116
116
|
[AccessibilityVerbositySettingId.Terminal]: {
|
|
117
117
|
description: ( localize(
|
|
118
|
-
|
|
118
|
+
4030,
|
|
119
119
|
'Provide information about how to access the terminal accessibility help menu when the terminal is focused.'
|
|
120
120
|
)),
|
|
121
121
|
...baseVerbosityProperty
|
|
122
122
|
},
|
|
123
123
|
[AccessibilityVerbositySettingId.DiffEditor]: {
|
|
124
124
|
description: ( localize(
|
|
125
|
-
|
|
125
|
+
4031,
|
|
126
126
|
'Provide information about how to navigate changes in the diff editor when it is focused.'
|
|
127
127
|
)),
|
|
128
128
|
...baseVerbosityProperty
|
|
129
129
|
},
|
|
130
130
|
[AccessibilityVerbositySettingId.Chat]: {
|
|
131
131
|
description: ( localize(
|
|
132
|
-
|
|
132
|
+
4032,
|
|
133
133
|
'Provide information about how to access the chat help menu when the chat input is focused.'
|
|
134
134
|
)),
|
|
135
135
|
...baseVerbosityProperty
|
|
136
136
|
},
|
|
137
137
|
[AccessibilityVerbositySettingId.InlineChat]: {
|
|
138
138
|
description: ( localize(
|
|
139
|
-
|
|
139
|
+
4033,
|
|
140
140
|
'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
141
|
)),
|
|
142
142
|
...baseVerbosityProperty
|
|
143
143
|
},
|
|
144
144
|
[AccessibilityVerbositySettingId.InlineCompletions]: {
|
|
145
145
|
description: ( localize(
|
|
146
|
-
|
|
146
|
+
4034,
|
|
147
147
|
'Provide information about how to access the inline completions hover and Accessible View.'
|
|
148
148
|
)),
|
|
149
149
|
...baseVerbosityProperty
|
|
150
150
|
},
|
|
151
151
|
[AccessibilityVerbositySettingId.KeybindingsEditor]: {
|
|
152
152
|
description: ( localize(
|
|
153
|
-
|
|
153
|
+
4035,
|
|
154
154
|
'Provide information about how to change a keybinding in the keybindings editor when a row is focused.'
|
|
155
155
|
)),
|
|
156
156
|
...baseVerbosityProperty
|
|
157
157
|
},
|
|
158
158
|
[AccessibilityVerbositySettingId.Notebook]: {
|
|
159
159
|
description: ( localize(
|
|
160
|
-
|
|
160
|
+
4036,
|
|
161
161
|
'Provide information about how to focus the cell container or inner editor when a notebook cell is focused.'
|
|
162
162
|
)),
|
|
163
163
|
...baseVerbosityProperty
|
|
164
164
|
},
|
|
165
165
|
[AccessibilityVerbositySettingId.Hover]: {
|
|
166
166
|
description: ( localize(
|
|
167
|
-
|
|
167
|
+
4037,
|
|
168
168
|
'Provide information about how to open the hover in an Accessible View.'
|
|
169
169
|
)),
|
|
170
170
|
...baseVerbosityProperty
|
|
171
171
|
},
|
|
172
172
|
[AccessibilityVerbositySettingId.Notification]: {
|
|
173
173
|
description: ( localize(
|
|
174
|
-
|
|
174
|
+
4038,
|
|
175
175
|
'Provide information about how to open the notification in an Accessible View.'
|
|
176
176
|
)),
|
|
177
177
|
...baseVerbosityProperty
|
|
178
178
|
},
|
|
179
179
|
[AccessibilityVerbositySettingId.EmptyEditorHint]: {
|
|
180
180
|
description: ( localize(
|
|
181
|
-
|
|
181
|
+
4039,
|
|
182
182
|
'Provide information about relevant actions in an empty text editor.'
|
|
183
183
|
)),
|
|
184
184
|
...baseVerbosityProperty
|
|
185
185
|
},
|
|
186
186
|
[AccessibilityVerbositySettingId.ReplEditor]: {
|
|
187
187
|
description: ( localize(
|
|
188
|
-
|
|
188
|
+
4040,
|
|
189
189
|
'Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused.'
|
|
190
190
|
)),
|
|
191
191
|
...baseVerbosityProperty
|
|
192
192
|
},
|
|
193
193
|
[AccessibilityVerbositySettingId.Comments]: {
|
|
194
194
|
description: ( localize(
|
|
195
|
-
|
|
195
|
+
4041,
|
|
196
196
|
'Provide information about actions that can be taken in the comment widget or in a file which contains comments.'
|
|
197
197
|
)),
|
|
198
198
|
...baseVerbosityProperty
|
|
199
199
|
},
|
|
200
200
|
[AccessibilityVerbositySettingId.DiffEditorActive]: {
|
|
201
|
-
description: ( localize(
|
|
201
|
+
description: ( localize(4042, 'Indicate when a diff editor becomes the active editor.')),
|
|
202
202
|
...baseVerbosityProperty
|
|
203
203
|
},
|
|
204
204
|
[AccessibilityVerbositySettingId.Debug]: {
|
|
205
205
|
description: ( localize(
|
|
206
|
-
|
|
206
|
+
4043,
|
|
207
207
|
'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
208
|
)),
|
|
209
209
|
...baseVerbosityProperty
|
|
210
210
|
},
|
|
211
211
|
[AccessibilityVerbositySettingId.Walkthrough]: {
|
|
212
212
|
description: ( localize(
|
|
213
|
-
|
|
213
|
+
4044,
|
|
214
214
|
'Provide information about how to open the walkthrough in an Accessible View.'
|
|
215
215
|
)),
|
|
216
216
|
...baseVerbosityProperty
|
|
217
217
|
},
|
|
218
218
|
[AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
|
|
219
219
|
markdownDescription: ( localize(
|
|
220
|
-
|
|
220
|
+
4045,
|
|
221
221
|
"On keypress, close the Accessible View and focus the element from which it was invoked."
|
|
222
222
|
)),
|
|
223
223
|
type: 'boolean',
|
|
@@ -225,13 +225,13 @@ const configuration = {
|
|
|
225
225
|
},
|
|
226
226
|
[AccessibilityVerbositySettingId.SourceControl]: {
|
|
227
227
|
description: ( localize(
|
|
228
|
-
|
|
228
|
+
4046,
|
|
229
229
|
'Provide information about how to access the source control accessibility help menu when the input is focused.'
|
|
230
230
|
)),
|
|
231
231
|
...baseVerbosityProperty
|
|
232
232
|
},
|
|
233
233
|
'accessibility.signalOptions.volume': {
|
|
234
|
-
'description': ( localize(
|
|
234
|
+
'description': ( localize(4047, "The volume of the sounds in percent (0-100).")),
|
|
235
235
|
'type': 'number',
|
|
236
236
|
'minimum': 0,
|
|
237
237
|
'maximum': 100,
|
|
@@ -239,7 +239,7 @@ const configuration = {
|
|
|
239
239
|
'tags': ['accessibility']
|
|
240
240
|
},
|
|
241
241
|
'accessibility.signalOptions.debouncePositionChanges': {
|
|
242
|
-
'description': ( localize(
|
|
242
|
+
'description': ( localize(4048, "Whether or not position changes should be debounced")),
|
|
243
243
|
'type': 'boolean',
|
|
244
244
|
'default': false,
|
|
245
245
|
'tags': ['accessibility']
|
|
@@ -250,13 +250,13 @@ const configuration = {
|
|
|
250
250
|
'additionalProperties': false,
|
|
251
251
|
'properties': {
|
|
252
252
|
'announcement': {
|
|
253
|
-
'description': ( localize(
|
|
253
|
+
'description': ( localize(4049, "The delay in milliseconds before an announcement is made.")),
|
|
254
254
|
'type': 'number',
|
|
255
255
|
'minimum': 0,
|
|
256
256
|
'default': 3000
|
|
257
257
|
},
|
|
258
258
|
'sound': {
|
|
259
|
-
'description': ( localize(
|
|
259
|
+
'description': ( localize(4050, "The delay in milliseconds before a sound is played.")),
|
|
260
260
|
'type': 'number',
|
|
261
261
|
'minimum': 0,
|
|
262
262
|
'default': 400
|
|
@@ -270,7 +270,7 @@ const configuration = {
|
|
|
270
270
|
'properties': {
|
|
271
271
|
'announcement': {
|
|
272
272
|
'description': ( localize(
|
|
273
|
-
|
|
273
|
+
4051,
|
|
274
274
|
"The delay in milliseconds before an announcement is made when there's a warning at the position."
|
|
275
275
|
)),
|
|
276
276
|
'type': 'number',
|
|
@@ -279,7 +279,7 @@ const configuration = {
|
|
|
279
279
|
},
|
|
280
280
|
'sound': {
|
|
281
281
|
'description': ( localize(
|
|
282
|
-
|
|
282
|
+
4052,
|
|
283
283
|
"The delay in milliseconds before a sound is played when there's a warning at the position."
|
|
284
284
|
)),
|
|
285
285
|
'type': 'number',
|
|
@@ -295,7 +295,7 @@ const configuration = {
|
|
|
295
295
|
'properties': {
|
|
296
296
|
'announcement': {
|
|
297
297
|
'description': ( localize(
|
|
298
|
-
|
|
298
|
+
4053,
|
|
299
299
|
"The delay in milliseconds before an announcement is made when there's an error at the position."
|
|
300
300
|
)),
|
|
301
301
|
'type': 'number',
|
|
@@ -304,7 +304,7 @@ const configuration = {
|
|
|
304
304
|
},
|
|
305
305
|
'sound': {
|
|
306
306
|
'description': ( localize(
|
|
307
|
-
|
|
307
|
+
4054,
|
|
308
308
|
"The delay in milliseconds before a sound is played when there's an error at the position."
|
|
309
309
|
)),
|
|
310
310
|
'type': 'number',
|
|
@@ -317,16 +317,16 @@ const configuration = {
|
|
|
317
317
|
'accessibility.signals.lineHasBreakpoint': {
|
|
318
318
|
...signalFeatureBase,
|
|
319
319
|
'description': ( localize(
|
|
320
|
-
|
|
320
|
+
4055,
|
|
321
321
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
|
|
322
322
|
)),
|
|
323
323
|
'properties': {
|
|
324
324
|
'sound': {
|
|
325
|
-
'description': ( localize(
|
|
325
|
+
'description': ( localize(4056, "Plays a sound when the active line has a breakpoint.")),
|
|
326
326
|
...soundFeatureBase
|
|
327
327
|
},
|
|
328
328
|
'announcement': {
|
|
329
|
-
'description': ( localize(
|
|
329
|
+
'description': ( localize(4057, "Announces when the active line has a breakpoint.")),
|
|
330
330
|
...announcementFeatureBase
|
|
331
331
|
},
|
|
332
332
|
},
|
|
@@ -334,30 +334,47 @@ const configuration = {
|
|
|
334
334
|
'accessibility.signals.lineHasInlineSuggestion': {
|
|
335
335
|
...defaultNoAnnouncement,
|
|
336
336
|
'description': ( localize(
|
|
337
|
-
|
|
337
|
+
4058,
|
|
338
338
|
"Plays a sound / audio cue when the active line has an inline suggestion."
|
|
339
339
|
)),
|
|
340
340
|
'properties': {
|
|
341
341
|
'sound': {
|
|
342
|
-
'description': ( localize(
|
|
342
|
+
'description': ( localize(4059, "Plays a sound when the active line has an inline suggestion.")),
|
|
343
343
|
...soundFeatureBase,
|
|
344
344
|
'default': 'off'
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
347
|
},
|
|
348
|
+
'accessibility.signals.nextEditSuggestion': {
|
|
349
|
+
...signalFeatureBase,
|
|
350
|
+
'description': ( localize(
|
|
351
|
+
4060,
|
|
352
|
+
"Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
|
|
353
|
+
)),
|
|
354
|
+
'properties': {
|
|
355
|
+
'sound': {
|
|
356
|
+
'description': ( localize(4061, "Plays a sound when there is a next edit suggestion.")),
|
|
357
|
+
...soundFeatureBase,
|
|
358
|
+
},
|
|
359
|
+
'announcement': {
|
|
360
|
+
'description': ( localize(4062, "Announces when there is a next edit suggestion.")),
|
|
361
|
+
...announcementFeatureBase,
|
|
362
|
+
},
|
|
363
|
+
}
|
|
364
|
+
},
|
|
348
365
|
'accessibility.signals.lineHasError': {
|
|
349
366
|
...signalFeatureBase,
|
|
350
367
|
'description': ( localize(
|
|
351
|
-
|
|
368
|
+
4063,
|
|
352
369
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
|
|
353
370
|
)),
|
|
354
371
|
'properties': {
|
|
355
372
|
'sound': {
|
|
356
|
-
'description': ( localize(
|
|
373
|
+
'description': ( localize(4064, "Plays a sound when the active line has an error.")),
|
|
357
374
|
...soundFeatureBase
|
|
358
375
|
},
|
|
359
376
|
'announcement': {
|
|
360
|
-
'description': ( localize(
|
|
377
|
+
'description': ( localize(4065, "Announces when the active line has an error.")),
|
|
361
378
|
...announcementFeatureBase,
|
|
362
379
|
default: 'off'
|
|
363
380
|
},
|
|
@@ -366,13 +383,13 @@ const configuration = {
|
|
|
366
383
|
'accessibility.signals.lineHasFoldedArea': {
|
|
367
384
|
...signalFeatureBase,
|
|
368
385
|
'description': ( localize(
|
|
369
|
-
|
|
386
|
+
4066,
|
|
370
387
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
|
|
371
388
|
)),
|
|
372
389
|
'properties': {
|
|
373
390
|
'sound': {
|
|
374
391
|
'description': ( localize(
|
|
375
|
-
|
|
392
|
+
4067,
|
|
376
393
|
"Plays a sound when the active line has a folded area that can be unfolded."
|
|
377
394
|
)),
|
|
378
395
|
...soundFeatureBase,
|
|
@@ -380,7 +397,7 @@ const configuration = {
|
|
|
380
397
|
},
|
|
381
398
|
'announcement': {
|
|
382
399
|
'description': ( localize(
|
|
383
|
-
|
|
400
|
+
4068,
|
|
384
401
|
"Announces when the active line has a folded area that can be unfolded."
|
|
385
402
|
)),
|
|
386
403
|
...announcementFeatureBase
|
|
@@ -390,16 +407,16 @@ const configuration = {
|
|
|
390
407
|
'accessibility.signals.lineHasWarning': {
|
|
391
408
|
...signalFeatureBase,
|
|
392
409
|
'description': ( localize(
|
|
393
|
-
|
|
410
|
+
4069,
|
|
394
411
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
395
412
|
)),
|
|
396
413
|
'properties': {
|
|
397
414
|
'sound': {
|
|
398
|
-
'description': ( localize(
|
|
415
|
+
'description': ( localize(4070, "Plays a sound when the active line has a warning.")),
|
|
399
416
|
...soundFeatureBase
|
|
400
417
|
},
|
|
401
418
|
'announcement': {
|
|
402
|
-
'description': ( localize(
|
|
419
|
+
'description': ( localize(4071, "Announces when the active line has a warning.")),
|
|
403
420
|
...announcementFeatureBase,
|
|
404
421
|
default: 'off'
|
|
405
422
|
},
|
|
@@ -408,16 +425,16 @@ const configuration = {
|
|
|
408
425
|
'accessibility.signals.positionHasError': {
|
|
409
426
|
...signalFeatureBase,
|
|
410
427
|
'description': ( localize(
|
|
411
|
-
|
|
428
|
+
4072,
|
|
412
429
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
413
430
|
)),
|
|
414
431
|
'properties': {
|
|
415
432
|
'sound': {
|
|
416
|
-
'description': ( localize(
|
|
433
|
+
'description': ( localize(4073, "Plays a sound when the active line has a warning.")),
|
|
417
434
|
...soundFeatureBase
|
|
418
435
|
},
|
|
419
436
|
'announcement': {
|
|
420
|
-
'description': ( localize(
|
|
437
|
+
'description': ( localize(4074, "Announces when the active line has a warning.")),
|
|
421
438
|
...announcementFeatureBase,
|
|
422
439
|
default: 'on'
|
|
423
440
|
},
|
|
@@ -426,16 +443,16 @@ const configuration = {
|
|
|
426
443
|
'accessibility.signals.positionHasWarning': {
|
|
427
444
|
...signalFeatureBase,
|
|
428
445
|
'description': ( localize(
|
|
429
|
-
|
|
446
|
+
4075,
|
|
430
447
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
431
448
|
)),
|
|
432
449
|
'properties': {
|
|
433
450
|
'sound': {
|
|
434
|
-
'description': ( localize(
|
|
451
|
+
'description': ( localize(4076, "Plays a sound when the active line has a warning.")),
|
|
435
452
|
...soundFeatureBase
|
|
436
453
|
},
|
|
437
454
|
'announcement': {
|
|
438
|
-
'description': ( localize(
|
|
455
|
+
'description': ( localize(4077, "Announces when the active line has a warning.")),
|
|
439
456
|
...announcementFeatureBase,
|
|
440
457
|
default: 'on'
|
|
441
458
|
},
|
|
@@ -444,16 +461,16 @@ const configuration = {
|
|
|
444
461
|
'accessibility.signals.onDebugBreak': {
|
|
445
462
|
...signalFeatureBase,
|
|
446
463
|
'description': ( localize(
|
|
447
|
-
|
|
464
|
+
4078,
|
|
448
465
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
|
|
449
466
|
)),
|
|
450
467
|
'properties': {
|
|
451
468
|
'sound': {
|
|
452
|
-
'description': ( localize(
|
|
469
|
+
'description': ( localize(4079, "Plays a sound when the debugger stopped on a breakpoint.")),
|
|
453
470
|
...soundFeatureBase
|
|
454
471
|
},
|
|
455
472
|
'announcement': {
|
|
456
|
-
'description': ( localize(
|
|
473
|
+
'description': ( localize(4080, "Announces when the debugger stopped on a breakpoint.")),
|
|
457
474
|
...announcementFeatureBase
|
|
458
475
|
},
|
|
459
476
|
}
|
|
@@ -461,20 +478,20 @@ const configuration = {
|
|
|
461
478
|
'accessibility.signals.noInlayHints': {
|
|
462
479
|
...signalFeatureBase,
|
|
463
480
|
'description': ( localize(
|
|
464
|
-
|
|
481
|
+
4081,
|
|
465
482
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
|
|
466
483
|
)),
|
|
467
484
|
'properties': {
|
|
468
485
|
'sound': {
|
|
469
486
|
'description': ( localize(
|
|
470
|
-
|
|
487
|
+
4082,
|
|
471
488
|
"Plays a sound when trying to read a line with inlay hints that has no inlay hints."
|
|
472
489
|
)),
|
|
473
490
|
...soundFeatureBase
|
|
474
491
|
},
|
|
475
492
|
'announcement': {
|
|
476
493
|
'description': ( localize(
|
|
477
|
-
|
|
494
|
+
4083,
|
|
478
495
|
"Announces when trying to read a line with inlay hints that has no inlay hints."
|
|
479
496
|
)),
|
|
480
497
|
...announcementFeatureBase
|
|
@@ -484,16 +501,16 @@ const configuration = {
|
|
|
484
501
|
'accessibility.signals.taskCompleted': {
|
|
485
502
|
...signalFeatureBase,
|
|
486
503
|
'description': ( localize(
|
|
487
|
-
|
|
504
|
+
4084,
|
|
488
505
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
|
|
489
506
|
)),
|
|
490
507
|
'properties': {
|
|
491
508
|
'sound': {
|
|
492
|
-
'description': ( localize(
|
|
509
|
+
'description': ( localize(4085, "Plays a sound when a task is completed.")),
|
|
493
510
|
...soundFeatureBase
|
|
494
511
|
},
|
|
495
512
|
'announcement': {
|
|
496
|
-
'description': ( localize(
|
|
513
|
+
'description': ( localize(4086, "Announces when a task is completed.")),
|
|
497
514
|
...announcementFeatureBase
|
|
498
515
|
},
|
|
499
516
|
}
|
|
@@ -501,16 +518,16 @@ const configuration = {
|
|
|
501
518
|
'accessibility.signals.taskFailed': {
|
|
502
519
|
...signalFeatureBase,
|
|
503
520
|
'description': ( localize(
|
|
504
|
-
|
|
521
|
+
4087,
|
|
505
522
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
|
|
506
523
|
)),
|
|
507
524
|
'properties': {
|
|
508
525
|
'sound': {
|
|
509
|
-
'description': ( localize(
|
|
526
|
+
'description': ( localize(4088, "Plays a sound when a task fails (non-zero exit code).")),
|
|
510
527
|
...soundFeatureBase
|
|
511
528
|
},
|
|
512
529
|
'announcement': {
|
|
513
|
-
'description': ( localize(
|
|
530
|
+
'description': ( localize(4089, "Announces when a task fails (non-zero exit code).")),
|
|
514
531
|
...announcementFeatureBase
|
|
515
532
|
},
|
|
516
533
|
}
|
|
@@ -518,20 +535,20 @@ const configuration = {
|
|
|
518
535
|
'accessibility.signals.terminalCommandFailed': {
|
|
519
536
|
...signalFeatureBase,
|
|
520
537
|
'description': ( localize(
|
|
521
|
-
|
|
538
|
+
4090,
|
|
522
539
|
"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."
|
|
523
540
|
)),
|
|
524
541
|
'properties': {
|
|
525
542
|
'sound': {
|
|
526
543
|
'description': ( localize(
|
|
527
|
-
|
|
544
|
+
4091,
|
|
528
545
|
"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."
|
|
529
546
|
)),
|
|
530
547
|
...soundFeatureBase
|
|
531
548
|
},
|
|
532
549
|
'announcement': {
|
|
533
550
|
'description': ( localize(
|
|
534
|
-
|
|
551
|
+
4092,
|
|
535
552
|
"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."
|
|
536
553
|
)),
|
|
537
554
|
...announcementFeatureBase
|
|
@@ -541,20 +558,20 @@ const configuration = {
|
|
|
541
558
|
'accessibility.signals.terminalCommandSucceeded': {
|
|
542
559
|
...signalFeatureBase,
|
|
543
560
|
'description': ( localize(
|
|
544
|
-
|
|
561
|
+
4093,
|
|
545
562
|
"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."
|
|
546
563
|
)),
|
|
547
564
|
'properties': {
|
|
548
565
|
'sound': {
|
|
549
566
|
'description': ( localize(
|
|
550
|
-
|
|
567
|
+
4094,
|
|
551
568
|
"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."
|
|
552
569
|
)),
|
|
553
570
|
...soundFeatureBase
|
|
554
571
|
},
|
|
555
572
|
'announcement': {
|
|
556
573
|
'description': ( localize(
|
|
557
|
-
|
|
574
|
+
4095,
|
|
558
575
|
"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."
|
|
559
576
|
)),
|
|
560
577
|
...announcementFeatureBase
|
|
@@ -564,16 +581,16 @@ const configuration = {
|
|
|
564
581
|
'accessibility.signals.terminalQuickFix': {
|
|
565
582
|
...signalFeatureBase,
|
|
566
583
|
'description': ( localize(
|
|
567
|
-
|
|
584
|
+
4096,
|
|
568
585
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
|
|
569
586
|
)),
|
|
570
587
|
'properties': {
|
|
571
588
|
'sound': {
|
|
572
|
-
'description': ( localize(
|
|
589
|
+
'description': ( localize(4097, "Plays a sound when terminal Quick Fixes are available.")),
|
|
573
590
|
...soundFeatureBase
|
|
574
591
|
},
|
|
575
592
|
'announcement': {
|
|
576
|
-
'description': ( localize(
|
|
593
|
+
'description': ( localize(4098, "Announces when terminal Quick Fixes are available.")),
|
|
577
594
|
...announcementFeatureBase
|
|
578
595
|
},
|
|
579
596
|
}
|
|
@@ -581,16 +598,16 @@ const configuration = {
|
|
|
581
598
|
'accessibility.signals.terminalBell': {
|
|
582
599
|
...signalFeatureBase,
|
|
583
600
|
'description': ( localize(
|
|
584
|
-
|
|
601
|
+
4099,
|
|
585
602
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
|
|
586
603
|
)),
|
|
587
604
|
'properties': {
|
|
588
605
|
'sound': {
|
|
589
|
-
'description': ( localize(
|
|
606
|
+
'description': ( localize(4100, "Plays a sound when the terminal bell is ringing.")),
|
|
590
607
|
...soundFeatureBase
|
|
591
608
|
},
|
|
592
609
|
'announcement': {
|
|
593
|
-
'description': ( localize(
|
|
610
|
+
'description': ( localize(4101, "Announces when the terminal bell is ringing.")),
|
|
594
611
|
...announcementFeatureBase
|
|
595
612
|
},
|
|
596
613
|
}
|
|
@@ -598,13 +615,13 @@ const configuration = {
|
|
|
598
615
|
'accessibility.signals.diffLineInserted': {
|
|
599
616
|
...defaultNoAnnouncement,
|
|
600
617
|
'description': ( localize(
|
|
601
|
-
|
|
618
|
+
4102,
|
|
602
619
|
"Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
603
620
|
)),
|
|
604
621
|
'properties': {
|
|
605
622
|
'sound': {
|
|
606
623
|
'description': ( localize(
|
|
607
|
-
|
|
624
|
+
4103,
|
|
608
625
|
"Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
609
626
|
)),
|
|
610
627
|
...soundFeatureBase
|
|
@@ -614,13 +631,13 @@ const configuration = {
|
|
|
614
631
|
'accessibility.signals.diffLineModified': {
|
|
615
632
|
...defaultNoAnnouncement,
|
|
616
633
|
'description': ( localize(
|
|
617
|
-
|
|
634
|
+
4104,
|
|
618
635
|
"Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
619
636
|
)),
|
|
620
637
|
'properties': {
|
|
621
638
|
'sound': {
|
|
622
639
|
'description': ( localize(
|
|
623
|
-
|
|
640
|
+
4105,
|
|
624
641
|
"Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
625
642
|
)),
|
|
626
643
|
...soundFeatureBase
|
|
@@ -630,13 +647,13 @@ const configuration = {
|
|
|
630
647
|
'accessibility.signals.diffLineDeleted': {
|
|
631
648
|
...defaultNoAnnouncement,
|
|
632
649
|
'description': ( localize(
|
|
633
|
-
|
|
650
|
+
4106,
|
|
634
651
|
"Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
635
652
|
)),
|
|
636
653
|
'properties': {
|
|
637
654
|
'sound': {
|
|
638
655
|
'description': ( localize(
|
|
639
|
-
|
|
656
|
+
4107,
|
|
640
657
|
"Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
641
658
|
)),
|
|
642
659
|
...soundFeatureBase
|
|
@@ -646,12 +663,12 @@ const configuration = {
|
|
|
646
663
|
'accessibility.signals.chatEditModifiedFile': {
|
|
647
664
|
...defaultNoAnnouncement,
|
|
648
665
|
'description': ( localize(
|
|
649
|
-
|
|
666
|
+
4108,
|
|
650
667
|
"Plays a sound / audio cue when revealing a file with changes from chat edits"
|
|
651
668
|
)),
|
|
652
669
|
'properties': {
|
|
653
670
|
'sound': {
|
|
654
|
-
'description': ( localize(
|
|
671
|
+
'description': ( localize(4109, "Plays a sound when revealing a file with changes from chat edits")),
|
|
655
672
|
...soundFeatureBase
|
|
656
673
|
}
|
|
657
674
|
}
|
|
@@ -659,20 +676,20 @@ const configuration = {
|
|
|
659
676
|
'accessibility.signals.notebookCellCompleted': {
|
|
660
677
|
...signalFeatureBase,
|
|
661
678
|
'description': ( localize(
|
|
662
|
-
|
|
679
|
+
4110,
|
|
663
680
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
|
|
664
681
|
)),
|
|
665
682
|
'properties': {
|
|
666
683
|
'sound': {
|
|
667
684
|
'description': ( localize(
|
|
668
|
-
|
|
685
|
+
4111,
|
|
669
686
|
"Plays a sound when a notebook cell execution is successfully completed."
|
|
670
687
|
)),
|
|
671
688
|
...soundFeatureBase
|
|
672
689
|
},
|
|
673
690
|
'announcement': {
|
|
674
691
|
'description': ( localize(
|
|
675
|
-
|
|
692
|
+
4112,
|
|
676
693
|
"Announces when a notebook cell execution is successfully completed."
|
|
677
694
|
)),
|
|
678
695
|
...announcementFeatureBase
|
|
@@ -682,16 +699,16 @@ const configuration = {
|
|
|
682
699
|
'accessibility.signals.notebookCellFailed': {
|
|
683
700
|
...signalFeatureBase,
|
|
684
701
|
'description': ( localize(
|
|
685
|
-
|
|
702
|
+
4113,
|
|
686
703
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
|
|
687
704
|
)),
|
|
688
705
|
'properties': {
|
|
689
706
|
'sound': {
|
|
690
|
-
'description': ( localize(
|
|
707
|
+
'description': ( localize(4114, "Plays a sound when a notebook cell execution fails.")),
|
|
691
708
|
...soundFeatureBase
|
|
692
709
|
},
|
|
693
710
|
'announcement': {
|
|
694
|
-
'description': ( localize(
|
|
711
|
+
'description': ( localize(4115, "Announces when a notebook cell execution fails.")),
|
|
695
712
|
...announcementFeatureBase
|
|
696
713
|
},
|
|
697
714
|
}
|
|
@@ -699,16 +716,16 @@ const configuration = {
|
|
|
699
716
|
'accessibility.signals.progress': {
|
|
700
717
|
...signalFeatureBase,
|
|
701
718
|
'description': ( localize(
|
|
702
|
-
|
|
719
|
+
4116,
|
|
703
720
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
|
|
704
721
|
)),
|
|
705
722
|
'properties': {
|
|
706
723
|
'sound': {
|
|
707
|
-
'description': ( localize(
|
|
724
|
+
'description': ( localize(4117, "Plays a sound on loop while progress is occurring.")),
|
|
708
725
|
...soundFeatureBase
|
|
709
726
|
},
|
|
710
727
|
'announcement': {
|
|
711
|
-
'description': ( localize(
|
|
728
|
+
'description': ( localize(4118, "Alerts on loop while progress is occurring.")),
|
|
712
729
|
...announcementFeatureBase
|
|
713
730
|
},
|
|
714
731
|
},
|
|
@@ -716,56 +733,56 @@ const configuration = {
|
|
|
716
733
|
'accessibility.signals.chatRequestSent': {
|
|
717
734
|
...signalFeatureBase,
|
|
718
735
|
'description': ( localize(
|
|
719
|
-
|
|
736
|
+
4119,
|
|
720
737
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
|
|
721
738
|
)),
|
|
722
739
|
'properties': {
|
|
723
740
|
'sound': {
|
|
724
|
-
'description': ( localize(
|
|
741
|
+
'description': ( localize(4120, "Plays a sound when a chat request is made.")),
|
|
725
742
|
...soundFeatureBase
|
|
726
743
|
},
|
|
727
744
|
'announcement': {
|
|
728
|
-
'description': ( localize(
|
|
745
|
+
'description': ( localize(4121, "Announces when a chat request is made.")),
|
|
729
746
|
...announcementFeatureBase
|
|
730
747
|
},
|
|
731
748
|
}
|
|
732
749
|
},
|
|
733
750
|
'accessibility.signals.chatResponseReceived': {
|
|
734
751
|
...defaultNoAnnouncement,
|
|
735
|
-
'description': ( localize(
|
|
752
|
+
'description': ( localize(4122, "Plays a sound / audio cue when the response has been received.")),
|
|
736
753
|
'properties': {
|
|
737
754
|
'sound': {
|
|
738
|
-
'description': ( localize(
|
|
755
|
+
'description': ( localize(4123, "Plays a sound on when the response has been received.")),
|
|
739
756
|
...soundFeatureBase
|
|
740
757
|
},
|
|
741
758
|
}
|
|
742
759
|
},
|
|
743
760
|
'accessibility.signals.codeActionTriggered': {
|
|
744
761
|
...defaultNoAnnouncement,
|
|
745
|
-
'description': ( localize(
|
|
762
|
+
'description': ( localize(4124, "Plays a sound / audio cue - when a code action has been triggered.")),
|
|
746
763
|
'properties': {
|
|
747
764
|
'sound': {
|
|
748
|
-
'description': ( localize(
|
|
765
|
+
'description': ( localize(4125, "Plays a sound when a code action has been triggered.")),
|
|
749
766
|
...soundFeatureBase
|
|
750
767
|
}
|
|
751
768
|
}
|
|
752
769
|
},
|
|
753
770
|
'accessibility.signals.codeActionApplied': {
|
|
754
771
|
...defaultNoAnnouncement,
|
|
755
|
-
'description': ( localize(
|
|
772
|
+
'description': ( localize(4126, "Plays a sound / audio cue when the code action has been applied.")),
|
|
756
773
|
'properties': {
|
|
757
774
|
'sound': {
|
|
758
|
-
'description': ( localize(
|
|
775
|
+
'description': ( localize(4127, "Plays a sound when the code action has been applied.")),
|
|
759
776
|
...soundFeatureBase
|
|
760
777
|
},
|
|
761
778
|
}
|
|
762
779
|
},
|
|
763
780
|
'accessibility.signals.voiceRecordingStarted': {
|
|
764
781
|
...defaultNoAnnouncement,
|
|
765
|
-
'description': ( localize(
|
|
782
|
+
'description': ( localize(4128, "Plays a sound / audio cue when the voice recording has started.")),
|
|
766
783
|
'properties': {
|
|
767
784
|
'sound': {
|
|
768
|
-
'description': ( localize(
|
|
785
|
+
'description': ( localize(4129, "Plays a sound when the voice recording has started.")),
|
|
769
786
|
...soundFeatureBase,
|
|
770
787
|
},
|
|
771
788
|
},
|
|
@@ -775,10 +792,10 @@ const configuration = {
|
|
|
775
792
|
},
|
|
776
793
|
'accessibility.signals.voiceRecordingStopped': {
|
|
777
794
|
...defaultNoAnnouncement,
|
|
778
|
-
'description': ( localize(
|
|
795
|
+
'description': ( localize(4130, "Plays a sound / audio cue when the voice recording has stopped.")),
|
|
779
796
|
'properties': {
|
|
780
797
|
'sound': {
|
|
781
|
-
'description': ( localize(
|
|
798
|
+
'description': ( localize(4131, "Plays a sound when the voice recording has stopped.")),
|
|
782
799
|
...soundFeatureBase,
|
|
783
800
|
default: 'off'
|
|
784
801
|
},
|
|
@@ -787,16 +804,16 @@ const configuration = {
|
|
|
787
804
|
'accessibility.signals.clear': {
|
|
788
805
|
...signalFeatureBase,
|
|
789
806
|
'description': ( localize(
|
|
790
|
-
|
|
807
|
+
4132,
|
|
791
808
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
|
|
792
809
|
)),
|
|
793
810
|
'properties': {
|
|
794
811
|
'sound': {
|
|
795
|
-
'description': ( localize(
|
|
812
|
+
'description': ( localize(4133, "Plays a sound when a feature is cleared.")),
|
|
796
813
|
...soundFeatureBase
|
|
797
814
|
},
|
|
798
815
|
'announcement': {
|
|
799
|
-
'description': ( localize(
|
|
816
|
+
'description': ( localize(4134, "Announces when a feature is cleared.")),
|
|
800
817
|
...announcementFeatureBase
|
|
801
818
|
},
|
|
802
819
|
},
|
|
@@ -804,16 +821,16 @@ const configuration = {
|
|
|
804
821
|
'accessibility.signals.editsUndone': {
|
|
805
822
|
...signalFeatureBase,
|
|
806
823
|
'description': ( localize(
|
|
807
|
-
|
|
824
|
+
4135,
|
|
808
825
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
|
|
809
826
|
)),
|
|
810
827
|
'properties': {
|
|
811
828
|
'sound': {
|
|
812
|
-
'description': ( localize(
|
|
829
|
+
'description': ( localize(4136, "Plays a sound when edits have been undone.")),
|
|
813
830
|
...soundFeatureBase
|
|
814
831
|
},
|
|
815
832
|
'announcement': {
|
|
816
|
-
'description': ( localize(
|
|
833
|
+
'description': ( localize(4137, "Announces when edits have been undone.")),
|
|
817
834
|
...announcementFeatureBase
|
|
818
835
|
},
|
|
819
836
|
},
|
|
@@ -821,16 +838,16 @@ const configuration = {
|
|
|
821
838
|
'accessibility.signals.editsKept': {
|
|
822
839
|
...signalFeatureBase,
|
|
823
840
|
'description': ( localize(
|
|
824
|
-
|
|
841
|
+
4138,
|
|
825
842
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
|
|
826
843
|
)),
|
|
827
844
|
'properties': {
|
|
828
845
|
'sound': {
|
|
829
|
-
'description': ( localize(
|
|
846
|
+
'description': ( localize(4139, "Plays a sound when edits are kept.")),
|
|
830
847
|
...soundFeatureBase
|
|
831
848
|
},
|
|
832
849
|
'announcement': {
|
|
833
|
-
'description': ( localize(
|
|
850
|
+
'description': ( localize(4140, "Announces when edits are kept.")),
|
|
834
851
|
...announcementFeatureBase
|
|
835
852
|
},
|
|
836
853
|
},
|
|
@@ -840,30 +857,30 @@ const configuration = {
|
|
|
840
857
|
'tags': ['accessibility'],
|
|
841
858
|
additionalProperties: false,
|
|
842
859
|
'markdownDescription': ( localize(
|
|
843
|
-
|
|
860
|
+
4141,
|
|
844
861
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
|
|
845
862
|
)),
|
|
846
863
|
'properties': {
|
|
847
864
|
'sound': {
|
|
848
|
-
'description': ( localize(
|
|
865
|
+
'description': ( localize(4142, "Plays a sound when a file is saved.")),
|
|
849
866
|
'type': 'string',
|
|
850
867
|
'enum': ['userGesture', 'always', 'never'],
|
|
851
868
|
'default': 'never',
|
|
852
869
|
'enumDescriptions': [
|
|
853
|
-
( localize(
|
|
854
|
-
( localize(
|
|
855
|
-
( localize(
|
|
870
|
+
( localize(4143, "Plays the sound when a user explicitly saves a file.")),
|
|
871
|
+
( localize(4144, "Plays the sound whenever a file is saved, including auto save.")),
|
|
872
|
+
( localize(4145, "Never plays the sound."))
|
|
856
873
|
],
|
|
857
874
|
},
|
|
858
875
|
'announcement': {
|
|
859
|
-
'description': ( localize(
|
|
876
|
+
'description': ( localize(4146, "Announces when a file is saved.")),
|
|
860
877
|
'type': 'string',
|
|
861
878
|
'enum': ['userGesture', 'always', 'never'],
|
|
862
879
|
'default': 'never',
|
|
863
880
|
'enumDescriptions': [
|
|
864
|
-
( localize(
|
|
865
|
-
( localize(
|
|
866
|
-
( localize(
|
|
881
|
+
( localize(4147, "Announces when a user explicitly saves a file.")),
|
|
882
|
+
( localize(4148, "Announces whenever a file is saved, including auto save.")),
|
|
883
|
+
( localize(4149, "Never plays the announcement."))
|
|
867
884
|
],
|
|
868
885
|
},
|
|
869
886
|
},
|
|
@@ -877,36 +894,36 @@ const configuration = {
|
|
|
877
894
|
'tags': ['accessibility'],
|
|
878
895
|
additionalProperties: false,
|
|
879
896
|
'markdownDescription': ( localize(
|
|
880
|
-
|
|
897
|
+
4150,
|
|
881
898
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
|
|
882
899
|
)),
|
|
883
900
|
'properties': {
|
|
884
901
|
'sound': {
|
|
885
|
-
'description': ( localize(
|
|
902
|
+
'description': ( localize(4151, "Plays a sound when a file or notebook is formatted.")),
|
|
886
903
|
'type': 'string',
|
|
887
904
|
'enum': ['userGesture', 'always', 'never'],
|
|
888
905
|
'default': 'never',
|
|
889
906
|
'enumDescriptions': [
|
|
890
|
-
( localize(
|
|
907
|
+
( localize(4152, "Plays the sound when a user explicitly formats a file.")),
|
|
891
908
|
( localize(
|
|
892
|
-
|
|
909
|
+
4153,
|
|
893
910
|
"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."
|
|
894
911
|
)),
|
|
895
|
-
( localize(
|
|
912
|
+
( localize(4154, "Never plays the sound."))
|
|
896
913
|
],
|
|
897
914
|
},
|
|
898
915
|
'announcement': {
|
|
899
|
-
'description': ( localize(
|
|
916
|
+
'description': ( localize(4155, "Announces when a file or notebook is formatted.")),
|
|
900
917
|
'type': 'string',
|
|
901
918
|
'enum': ['userGesture', 'always', 'never'],
|
|
902
919
|
'default': 'never',
|
|
903
920
|
'enumDescriptions': [
|
|
904
|
-
( localize(
|
|
921
|
+
( localize(4156, "Announces when a user explicitly formats a file.")),
|
|
905
922
|
( localize(
|
|
906
|
-
|
|
923
|
+
4157,
|
|
907
924
|
"Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
908
925
|
)),
|
|
909
|
-
( localize(
|
|
926
|
+
( localize(4158, "Never announces."))
|
|
910
927
|
],
|
|
911
928
|
},
|
|
912
929
|
},
|
|
@@ -917,13 +934,13 @@ const configuration = {
|
|
|
917
934
|
},
|
|
918
935
|
'accessibility.underlineLinks': {
|
|
919
936
|
'type': 'boolean',
|
|
920
|
-
'description': ( localize(
|
|
937
|
+
'description': ( localize(4159, "Controls whether links should be underlined in the workbench.")),
|
|
921
938
|
'default': false,
|
|
922
939
|
},
|
|
923
940
|
'accessibility.debugWatchVariableAnnouncements': {
|
|
924
941
|
'type': 'boolean',
|
|
925
942
|
'description': ( localize(
|
|
926
|
-
|
|
943
|
+
4160,
|
|
927
944
|
"Controls whether variable changes should be announced in the debug watch view."
|
|
928
945
|
)),
|
|
929
946
|
'default': true,
|
|
@@ -931,7 +948,7 @@ const configuration = {
|
|
|
931
948
|
'accessibility.replEditor.readLastExecutionOutput': {
|
|
932
949
|
'type': 'boolean',
|
|
933
950
|
'description': ( localize(
|
|
934
|
-
|
|
951
|
+
4161,
|
|
935
952
|
"Controls whether the output from an execution in the native REPL will be announced."
|
|
936
953
|
)),
|
|
937
954
|
'default': true,
|
|
@@ -941,7 +958,7 @@ const configuration = {
|
|
|
941
958
|
enum: ['none', 'input', 'lastExecution'],
|
|
942
959
|
default: 'input',
|
|
943
960
|
description: ( localize(
|
|
944
|
-
|
|
961
|
+
4162,
|
|
945
962
|
"Control whether focus should automatically be sent to the REPL when code is executed."
|
|
946
963
|
)),
|
|
947
964
|
},
|
|
@@ -949,7 +966,7 @@ const configuration = {
|
|
|
949
966
|
'type': 'boolean',
|
|
950
967
|
'default': true,
|
|
951
968
|
'markdownDescription': ( localize(
|
|
952
|
-
|
|
969
|
+
4163,
|
|
953
970
|
"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.",
|
|
954
971
|
'`#window.title#`',
|
|
955
972
|
'`activeEditorState`'
|
|
@@ -965,7 +982,7 @@ function registerAccessibilityConfiguration() {
|
|
|
965
982
|
properties: {
|
|
966
983
|
[AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
|
|
967
984
|
description: ( localize(
|
|
968
|
-
|
|
985
|
+
4164,
|
|
969
986
|
'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.'
|
|
970
987
|
)),
|
|
971
988
|
type: 'boolean',
|
|
@@ -975,7 +992,7 @@ function registerAccessibilityConfiguration() {
|
|
|
975
992
|
},
|
|
976
993
|
[AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
|
|
977
994
|
markdownDescription: ( localize(
|
|
978
|
-
|
|
995
|
+
4165,
|
|
979
996
|
'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
|
|
980
997
|
`\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
|
|
981
998
|
)),
|
|
@@ -987,7 +1004,7 @@ function registerAccessibilityConfiguration() {
|
|
|
987
1004
|
scope: ConfigurationScope.APPLICATION,
|
|
988
1005
|
},
|
|
989
1006
|
[AccessibilityWorkbenchSettingId.HideAccessibleView]: {
|
|
990
|
-
description: ( localize(
|
|
1007
|
+
description: ( localize(4166, "Controls whether the Accessible View is hidden.")),
|
|
991
1008
|
type: 'boolean',
|
|
992
1009
|
default: false,
|
|
993
1010
|
tags: ['accessibility']
|
|
@@ -1017,7 +1034,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1017
1034
|
properties: {
|
|
1018
1035
|
[AccessibilityVoiceSettingId.SpeechTimeout]: {
|
|
1019
1036
|
'markdownDescription': ( localize(
|
|
1020
|
-
|
|
1037
|
+
4167,
|
|
1021
1038
|
"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."
|
|
1022
1039
|
)),
|
|
1023
1040
|
'type': 'number',
|
|
@@ -1026,14 +1043,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1026
1043
|
'tags': ['accessibility']
|
|
1027
1044
|
},
|
|
1028
1045
|
[AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
|
|
1029
|
-
'markdownDescription': ( localize(
|
|
1046
|
+
'markdownDescription': ( localize(4168, "Whether to ignore code snippets in text-to-speech synthesis.")),
|
|
1030
1047
|
'type': 'boolean',
|
|
1031
1048
|
'default': false,
|
|
1032
1049
|
'tags': ['accessibility']
|
|
1033
1050
|
},
|
|
1034
1051
|
[AccessibilityVoiceSettingId.SpeechLanguage]: {
|
|
1035
1052
|
'markdownDescription': ( localize(
|
|
1036
|
-
|
|
1053
|
+
4169,
|
|
1037
1054
|
"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."
|
|
1038
1055
|
)),
|
|
1039
1056
|
'type': 'string',
|
|
@@ -1048,13 +1065,13 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1048
1065
|
'enum': ['on', 'off'],
|
|
1049
1066
|
'enumDescriptions': [
|
|
1050
1067
|
( localize(
|
|
1051
|
-
|
|
1068
|
+
4170,
|
|
1052
1069
|
"Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
|
|
1053
1070
|
)),
|
|
1054
|
-
( localize(
|
|
1071
|
+
( localize(4171, "Disable the feature.")),
|
|
1055
1072
|
],
|
|
1056
1073
|
'markdownDescription': ( localize(
|
|
1057
|
-
|
|
1074
|
+
4172,
|
|
1058
1075
|
"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."
|
|
1059
1076
|
)),
|
|
1060
1077
|
'default': 'off',
|
|
@@ -1066,7 +1083,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1066
1083
|
getLanguages() {
|
|
1067
1084
|
return {
|
|
1068
1085
|
['auto']: {
|
|
1069
|
-
name: ( localize(
|
|
1086
|
+
name: ( localize(4173, "Auto (Use Display Language)"))
|
|
1070
1087
|
},
|
|
1071
1088
|
...SPEECH_LANGUAGES
|
|
1072
1089
|
};
|