@codingame/monaco-vscode-api 20.5.0 → 21.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +136 -50
- package/package.json +8 -8
- package/services.d.ts +8 -4
- package/services.js +8 -4
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +3 -3
- package/vscode/src/vs/base/browser/domSanitize.d.ts +23 -11
- package/vscode/src/vs/base/browser/domSanitize.js +86 -7
- package/vscode/src/vs/base/browser/domStylesheets.js +2 -2
- package/vscode/src/vs/base/browser/event.d.ts +1 -1
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +8 -4
- package/vscode/src/vs/base/browser/markdownRenderer.js +72 -126
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.d.ts +10 -10
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +5 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +2 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.js +32 -7
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +4 -2
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +7 -7
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +7 -7
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +6 -6
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +6 -6
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +5 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.js +2 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +4 -4
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +2 -2
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +3 -3
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +3 -3
- package/vscode/src/vs/base/browser/ui/menu/menu.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/menu/menu.js +21 -16
- package/vscode/src/vs/base/browser/ui/resizable/resizable.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/resizable/resizable.js +2 -2
- package/vscode/src/vs/base/browser/ui/sash/sash.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/sash/sash.js +16 -22
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +2 -2
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +2 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +3 -3
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +12 -12
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +2 -2
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/common/actions.d.ts +3 -3
- package/vscode/src/vs/base/common/actions.js +3 -3
- package/vscode/src/vs/base/common/async.d.ts +18 -7
- package/vscode/src/vs/base/common/async.js +71 -14
- package/vscode/src/vs/base/common/codicons.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +3 -0
- package/vscode/src/vs/base/common/defaultAccount.d.ts +23 -0
- package/vscode/src/vs/base/common/event.d.ts +0 -5
- package/vscode/src/vs/base/common/event.js +0 -12
- package/vscode/src/vs/base/common/hotReloadHelpers.js +2 -33
- package/vscode/src/vs/base/common/htmlContent.d.ts +1 -1
- package/vscode/src/vs/base/common/htmlContent.js +2 -2
- package/vscode/src/vs/base/common/lazy.d.ts +1 -1
- package/vscode/src/vs/base/common/lazy.js +14 -4
- package/vscode/src/vs/base/common/lifecycle.d.ts +7 -11
- package/vscode/src/vs/base/common/lifecycle.js +19 -2
- package/vscode/src/vs/base/common/marshallingIds.d.ts +5 -4
- package/vscode/src/vs/base/common/marshallingIds.js +5 -4
- package/vscode/src/vs/base/common/mime.d.ts +4 -0
- package/vscode/src/vs/base/common/mime.js +4 -1
- package/vscode/src/vs/base/common/network.d.ts +5 -0
- package/vscode/src/vs/base/common/network.js +2 -0
- package/vscode/src/vs/base/common/oauth.d.ts +18 -2
- package/vscode/src/vs/base/common/oauth.js +114 -19
- package/vscode/src/vs/base/common/observableInternal/debugLocation.d.ts +20 -0
- package/vscode/src/vs/base/common/observableInternal/debugLocation.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/reducer.js +2 -1
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +2 -1
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +15 -33
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.d.ts +0 -7
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.js +1 -42
- package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/logging/logging.js +4 -4
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.js +6 -5
- package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/observables/derived.js +12 -11
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +4 -4
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +10 -8
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.js +6 -5
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.js +5 -4
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.js +7 -6
- package/vscode/src/vs/base/common/observableInternal/observables/observableValueOpts.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableValueOpts.js +4 -3
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +11 -3
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +27 -7
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.js +1 -0
- package/vscode/src/vs/base/common/policy.d.ts +29 -0
- package/vscode/src/vs/base/common/product.d.ts +15 -1
- package/vscode/src/vs/base/common/strings.d.ts +0 -6
- package/vscode/src/vs/base/common/strings.js +1 -8
- package/vscode/src/vs/base/common/types.js +1 -4
- package/vscode/src/vs/base/common/uuid.d.ts +2 -0
- package/vscode/src/vs/base/common/uuid.js +4 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +9 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.d.ts +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.js +10 -3
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +2 -3
- package/vscode/src/vs/editor/browser/editorDom.d.ts +1 -0
- package/vscode/src/vs/editor/browser/editorDom.js +7 -4
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +2 -2
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +3 -2
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +1 -4
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +3 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +14 -1
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +12 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +8 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/overviewRulerFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +3 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +31 -44
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +10 -10
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +6 -4
- package/vscode/src/vs/editor/common/config/editorOptions.js +302 -275
- package/vscode/src/vs/editor/common/core/2d/rect.js +5 -2
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/edits/lineEdit.js +1 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +9 -3
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/text/textLength.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/text/textLength.js +6 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languageFeatureRegistry.d.ts +1 -1
- package/vscode/src/vs/editor/common/languageFeatureRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +19 -1
- package/vscode/src/vs/editor/common/languages.js +77 -57
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/mirrorTextModel.d.ts +19 -1
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.js +1 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +4 -4
- package/vscode/src/vs/editor/common/model/textModel.js +4 -4
- package/vscode/src/vs/editor/common/model/textModelStringEdit.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +7 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.js +13 -10
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +4 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +6 -1
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +48 -2
- package/vscode/src/vs/editor/common/textModelEditSource.js +54 -1
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +1 -18
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +6 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +28 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +3 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +3 -3
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +21 -21
- 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 +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverComputer.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverComputer.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.js +2 -2
- 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/hoverOperation.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +12 -12
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +9 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +56 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +76 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +7 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +6 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +9 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +18 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +31 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.js +6 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.js +11 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +36 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +17 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +10 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +7 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +15 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +49 -13
- 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 +31 -31
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +8 -3
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +11 -14
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +10 -10
- 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/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +26 -15
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +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/standalone/browser/standaloneServices.js +4 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/floatingMenu.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/floatingMenu.js +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +11 -11
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +1 -6
- package/vscode/src/vs/platform/actions/browser/toolbar.js +3 -6
- package/vscode/src/vs/platform/actions/common/actions.d.ts +2 -1
- package/vscode/src/vs/platform/actions/common/actions.js +2 -1
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/assignment/common/assignment.d.ts +70 -0
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +11 -8
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +1 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/configuration/common/configurations.js +2 -3
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.d.ts +1 -1
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +2 -2
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.d.ts +1 -0
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +11 -10
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dataChannel/common/dataChannel.d.ts +14 -0
- package/vscode/src/vs/platform/dataChannel/common/dataChannel.js +15 -0
- package/vscode/src/vs/{workbench/services → platform}/dataChannel/common/dataChannel.service.d.ts +2 -2
- package/vscode/src/vs/{workbench/services → platform}/dataChannel/common/dataChannel.service.js +1 -1
- package/vscode/src/vs/platform/debug/common/extensionHostDebug.d.ts +1 -1
- package/vscode/src/vs/platform/debug/common/extensionHostDebug.service.d.ts +1 -0
- package/vscode/src/vs/platform/diagnostics/common/diagnostics.d.ts +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +0 -1
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +21 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +11 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -1
- 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/instantiation/common/instantiation.d.ts +1 -0
- package/vscode/src/vs/platform/instantiation/common/instantiationService.js +7 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +1 -1
- package/vscode/src/vs/platform/log/common/log.js +7 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.d.ts +18 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.js +28 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.service.d.ts +10 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.service.js +6 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +8 -4
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +4 -4
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +15 -20
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.js +2 -28
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.js +3 -42
- package/vscode/src/vs/platform/policy/common/policy.d.ts +3 -3
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/progress/common/progress.d.ts +0 -12
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +13 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +10 -7
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -2
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +5 -17
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.js +3 -6
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +1 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +5 -30
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +0 -3
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +2 -6
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +53 -26
- package/vscode/src/vs/platform/request/common/request.d.ts +2 -0
- package/vscode/src/vs/platform/request/common/request.js +25 -19
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +5 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/window/common/window.d.ts +6 -2
- package/vscode/src/vs/platform/window/common/window.js +3 -2
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +37 -9
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +53 -26
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +7 -1
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +6 -4
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +67 -13
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -3
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +23 -30
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +12 -4
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +73 -12
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostComments.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +3 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostDocumentData.d.ts +7 -4
- package/vscode/src/vs/workbench/api/common/extHostDocumentData.js +27 -6
- package/vscode/src/vs/workbench/api/common/extHostDocumentSaveParticipant.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostFileSystemEventService.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +8 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +39 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +5 -5
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +52 -84
- package/vscode/src/vs/workbench/api/common/extHostLanguages.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +36 -33
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +5 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +69 -53
- package/vscode/src/vs/workbench/api/common/extHostNotebookDocument.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookDocumentSaveParticipant.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebookEditor.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +14 -12
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +6 -4
- package/vscode/src/vs/workbench/api/common/extHostTextEditor.js +5 -1
- package/vscode/src/vs/workbench/api/common/extHostTimeline.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +16 -8
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +93 -20
- package/vscode/src/vs/workbench/api/common/extHostTypes/codeActionKind.d.ts +19 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/codeActionKind.js +37 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/diagnostic.d.ts +31 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/diagnostic.js +91 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/es5ClassCompat.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/es5ClassCompat.js +27 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/location.d.ts +11 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/location.js +44 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.d.ts +20 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.js +65 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/notebooks.d.ts +84 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/notebooks.js +229 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/position.d.ts +29 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/position.js +169 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.d.ts +26 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.js +137 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.d.ts +20 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.js +76 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.d.ts +12 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.js +84 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetTextEdit.d.ts +13 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetTextEdit.js +28 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/symbolInformation.d.ts +45 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/symbolInformation.js +75 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.d.ts +24 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.js +82 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/workspaceEdit.d.ts +99 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/workspaceEdit.js +146 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +86 -420
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +65 -1186
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -2
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- 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/contextkeys.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/contextkeys.js +13 -9
- package/vscode/src/vs/workbench/browser/parts/editor/editor.js +7 -0
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +1 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +74 -73
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +2 -0
- 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 +157 -157
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +13 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +64 -56
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +18 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +71 -15
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +49 -22
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +24 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +13 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +14 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +18 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +25 -7
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +15 -8
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +36 -18
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +46 -36
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/confirmationTool.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/confirmationTool.js +76 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.d.ts +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +205 -107
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +14 -8
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.js +1 -0
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -7
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +10 -7
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -6
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +1 -5
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +1 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/constants.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +13 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +2 -21
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +34 -6
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +48 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.js +7 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +7 -6
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +0 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +94 -86
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/inlineCompletions/common/inlineCompletionsUnification.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/inlineCompletions/common/inlineCompletionsUnification.service.js +6 -0
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +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/statusbar/browser/statusbar.d.ts +4 -0
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +218 -2
- package/vscode-dts/vscode.proposed.authenticationChallenges.d.ts +161 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +47 -1
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +3 -1
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +28 -108
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +101 -12
- package/vscode-dts/vscode.proposed.contribSecondarySidebar.d.ts +6 -0
- package/vscode-dts/vscode.proposed.d.ts +3 -0
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +0 -5
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +31 -0
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +2 -2
- package/vscode-dts/vscode.proposed.languageModelThinkingPart.d.ts +49 -0
- package/vscode-dts/vscode.proposed.languageModelToolResultAudience.d.ts +16 -5
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +7 -0
- package/vscode/src/vs/base/browser/dompurify/dompurify.d.ts +0 -114
- package/vscode/src/vs/base/common/hotReload.js +0 -80
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.d.ts +0 -6
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.js +0 -6
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.d.ts +0 -7
|
@@ -65,7 +65,7 @@ const baseVerbosityProperty = {
|
|
|
65
65
|
};
|
|
66
66
|
const accessibilityConfigurationNodeBase = ( Object.freeze({
|
|
67
67
|
id: 'accessibility',
|
|
68
|
-
title: ( localize(
|
|
68
|
+
title: ( localize(4125, "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(4126, "Enable sound when a screen reader is attached.")),
|
|
77
|
+
( localize(4127, "Enable sound.")),
|
|
78
|
+
( localize(4128, "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
|
+
4129,
|
|
98
98
|
"Enable announcement, will only play when in screen reader optimized mode."
|
|
99
99
|
)),
|
|
100
|
-
( localize(
|
|
100
|
+
( localize(4130, "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
|
+
4131,
|
|
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
|
+
4132,
|
|
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
|
+
4133,
|
|
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
|
+
4134,
|
|
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
|
+
4135,
|
|
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
|
+
4136,
|
|
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
|
+
4137,
|
|
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
|
+
4138,
|
|
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
|
+
4139,
|
|
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
|
+
4140,
|
|
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
|
+
4141,
|
|
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
|
+
4142,
|
|
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(4143, 'Indicate when a diff editor becomes the active editor.')),
|
|
202
202
|
...baseVerbosityProperty
|
|
203
203
|
},
|
|
204
204
|
[AccessibilityVerbositySettingId.Debug]: {
|
|
205
205
|
description: ( localize(
|
|
206
|
-
|
|
206
|
+
4144,
|
|
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
|
+
4145,
|
|
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
|
+
4146,
|
|
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
|
+
4147,
|
|
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(4148, "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(4149, "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(4150, "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(4151, "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
|
+
4152,
|
|
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
|
+
4153,
|
|
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
|
+
4154,
|
|
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
|
+
4155,
|
|
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
|
+
4156,
|
|
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(4157, "Plays a sound when the active line has a breakpoint.")),
|
|
326
326
|
...soundFeatureBase
|
|
327
327
|
},
|
|
328
328
|
'announcement': {
|
|
329
|
-
'description': ( localize(
|
|
329
|
+
'description': ( localize(4158, "Announces when the active line has a breakpoint.")),
|
|
330
330
|
...announcementFeatureBase
|
|
331
331
|
},
|
|
332
332
|
},
|
|
@@ -334,12 +334,12 @@ const configuration = {
|
|
|
334
334
|
'accessibility.signals.lineHasInlineSuggestion': {
|
|
335
335
|
...defaultNoAnnouncement,
|
|
336
336
|
'description': ( localize(
|
|
337
|
-
|
|
337
|
+
4159,
|
|
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(4160, "Plays a sound when the active line has an inline suggestion.")),
|
|
343
343
|
...soundFeatureBase,
|
|
344
344
|
'default': 'off'
|
|
345
345
|
}
|
|
@@ -348,16 +348,16 @@ const configuration = {
|
|
|
348
348
|
'accessibility.signals.nextEditSuggestion': {
|
|
349
349
|
...signalFeatureBase,
|
|
350
350
|
'description': ( localize(
|
|
351
|
-
|
|
351
|
+
4161,
|
|
352
352
|
"Plays a signal - sound / audio cue and/or announcement (alert) when there is a next edit suggestion."
|
|
353
353
|
)),
|
|
354
354
|
'properties': {
|
|
355
355
|
'sound': {
|
|
356
|
-
'description': ( localize(
|
|
356
|
+
'description': ( localize(4162, "Plays a sound when there is a next edit suggestion.")),
|
|
357
357
|
...soundFeatureBase,
|
|
358
358
|
},
|
|
359
359
|
'announcement': {
|
|
360
|
-
'description': ( localize(
|
|
360
|
+
'description': ( localize(4163, "Announces when there is a next edit suggestion.")),
|
|
361
361
|
...announcementFeatureBase,
|
|
362
362
|
},
|
|
363
363
|
}
|
|
@@ -365,16 +365,16 @@ const configuration = {
|
|
|
365
365
|
'accessibility.signals.lineHasError': {
|
|
366
366
|
...signalFeatureBase,
|
|
367
367
|
'description': ( localize(
|
|
368
|
-
|
|
368
|
+
4164,
|
|
369
369
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
|
|
370
370
|
)),
|
|
371
371
|
'properties': {
|
|
372
372
|
'sound': {
|
|
373
|
-
'description': ( localize(
|
|
373
|
+
'description': ( localize(4165, "Plays a sound when the active line has an error.")),
|
|
374
374
|
...soundFeatureBase
|
|
375
375
|
},
|
|
376
376
|
'announcement': {
|
|
377
|
-
'description': ( localize(
|
|
377
|
+
'description': ( localize(4166, "Announces when the active line has an error.")),
|
|
378
378
|
...announcementFeatureBase,
|
|
379
379
|
default: 'off'
|
|
380
380
|
},
|
|
@@ -383,13 +383,13 @@ const configuration = {
|
|
|
383
383
|
'accessibility.signals.lineHasFoldedArea': {
|
|
384
384
|
...signalFeatureBase,
|
|
385
385
|
'description': ( localize(
|
|
386
|
-
|
|
386
|
+
4167,
|
|
387
387
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
|
|
388
388
|
)),
|
|
389
389
|
'properties': {
|
|
390
390
|
'sound': {
|
|
391
391
|
'description': ( localize(
|
|
392
|
-
|
|
392
|
+
4168,
|
|
393
393
|
"Plays a sound when the active line has a folded area that can be unfolded."
|
|
394
394
|
)),
|
|
395
395
|
...soundFeatureBase,
|
|
@@ -397,7 +397,7 @@ const configuration = {
|
|
|
397
397
|
},
|
|
398
398
|
'announcement': {
|
|
399
399
|
'description': ( localize(
|
|
400
|
-
|
|
400
|
+
4169,
|
|
401
401
|
"Announces when the active line has a folded area that can be unfolded."
|
|
402
402
|
)),
|
|
403
403
|
...announcementFeatureBase
|
|
@@ -407,16 +407,16 @@ const configuration = {
|
|
|
407
407
|
'accessibility.signals.lineHasWarning': {
|
|
408
408
|
...signalFeatureBase,
|
|
409
409
|
'description': ( localize(
|
|
410
|
-
|
|
410
|
+
4170,
|
|
411
411
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
412
412
|
)),
|
|
413
413
|
'properties': {
|
|
414
414
|
'sound': {
|
|
415
|
-
'description': ( localize(
|
|
415
|
+
'description': ( localize(4171, "Plays a sound when the active line has a warning.")),
|
|
416
416
|
...soundFeatureBase
|
|
417
417
|
},
|
|
418
418
|
'announcement': {
|
|
419
|
-
'description': ( localize(
|
|
419
|
+
'description': ( localize(4172, "Announces when the active line has a warning.")),
|
|
420
420
|
...announcementFeatureBase,
|
|
421
421
|
default: 'off'
|
|
422
422
|
},
|
|
@@ -425,16 +425,16 @@ const configuration = {
|
|
|
425
425
|
'accessibility.signals.positionHasError': {
|
|
426
426
|
...signalFeatureBase,
|
|
427
427
|
'description': ( localize(
|
|
428
|
-
|
|
428
|
+
4173,
|
|
429
429
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
430
430
|
)),
|
|
431
431
|
'properties': {
|
|
432
432
|
'sound': {
|
|
433
|
-
'description': ( localize(
|
|
433
|
+
'description': ( localize(4174, "Plays a sound when the active line has a warning.")),
|
|
434
434
|
...soundFeatureBase
|
|
435
435
|
},
|
|
436
436
|
'announcement': {
|
|
437
|
-
'description': ( localize(
|
|
437
|
+
'description': ( localize(4175, "Announces when the active line has a warning.")),
|
|
438
438
|
...announcementFeatureBase,
|
|
439
439
|
default: 'on'
|
|
440
440
|
},
|
|
@@ -443,16 +443,16 @@ const configuration = {
|
|
|
443
443
|
'accessibility.signals.positionHasWarning': {
|
|
444
444
|
...signalFeatureBase,
|
|
445
445
|
'description': ( localize(
|
|
446
|
-
|
|
446
|
+
4176,
|
|
447
447
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
448
448
|
)),
|
|
449
449
|
'properties': {
|
|
450
450
|
'sound': {
|
|
451
|
-
'description': ( localize(
|
|
451
|
+
'description': ( localize(4177, "Plays a sound when the active line has a warning.")),
|
|
452
452
|
...soundFeatureBase
|
|
453
453
|
},
|
|
454
454
|
'announcement': {
|
|
455
|
-
'description': ( localize(
|
|
455
|
+
'description': ( localize(4178, "Announces when the active line has a warning.")),
|
|
456
456
|
...announcementFeatureBase,
|
|
457
457
|
default: 'on'
|
|
458
458
|
},
|
|
@@ -461,16 +461,16 @@ const configuration = {
|
|
|
461
461
|
'accessibility.signals.onDebugBreak': {
|
|
462
462
|
...signalFeatureBase,
|
|
463
463
|
'description': ( localize(
|
|
464
|
-
|
|
464
|
+
4179,
|
|
465
465
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
|
|
466
466
|
)),
|
|
467
467
|
'properties': {
|
|
468
468
|
'sound': {
|
|
469
|
-
'description': ( localize(
|
|
469
|
+
'description': ( localize(4180, "Plays a sound when the debugger stopped on a breakpoint.")),
|
|
470
470
|
...soundFeatureBase
|
|
471
471
|
},
|
|
472
472
|
'announcement': {
|
|
473
|
-
'description': ( localize(
|
|
473
|
+
'description': ( localize(4181, "Announces when the debugger stopped on a breakpoint.")),
|
|
474
474
|
...announcementFeatureBase
|
|
475
475
|
},
|
|
476
476
|
}
|
|
@@ -478,20 +478,20 @@ const configuration = {
|
|
|
478
478
|
'accessibility.signals.noInlayHints': {
|
|
479
479
|
...signalFeatureBase,
|
|
480
480
|
'description': ( localize(
|
|
481
|
-
|
|
481
|
+
4182,
|
|
482
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."
|
|
483
483
|
)),
|
|
484
484
|
'properties': {
|
|
485
485
|
'sound': {
|
|
486
486
|
'description': ( localize(
|
|
487
|
-
|
|
487
|
+
4183,
|
|
488
488
|
"Plays a sound when trying to read a line with inlay hints that has no inlay hints."
|
|
489
489
|
)),
|
|
490
490
|
...soundFeatureBase
|
|
491
491
|
},
|
|
492
492
|
'announcement': {
|
|
493
493
|
'description': ( localize(
|
|
494
|
-
|
|
494
|
+
4184,
|
|
495
495
|
"Announces when trying to read a line with inlay hints that has no inlay hints."
|
|
496
496
|
)),
|
|
497
497
|
...announcementFeatureBase
|
|
@@ -501,16 +501,16 @@ const configuration = {
|
|
|
501
501
|
'accessibility.signals.taskCompleted': {
|
|
502
502
|
...signalFeatureBase,
|
|
503
503
|
'description': ( localize(
|
|
504
|
-
|
|
504
|
+
4185,
|
|
505
505
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
|
|
506
506
|
)),
|
|
507
507
|
'properties': {
|
|
508
508
|
'sound': {
|
|
509
|
-
'description': ( localize(
|
|
509
|
+
'description': ( localize(4186, "Plays a sound when a task is completed.")),
|
|
510
510
|
...soundFeatureBase
|
|
511
511
|
},
|
|
512
512
|
'announcement': {
|
|
513
|
-
'description': ( localize(
|
|
513
|
+
'description': ( localize(4187, "Announces when a task is completed.")),
|
|
514
514
|
...announcementFeatureBase
|
|
515
515
|
},
|
|
516
516
|
}
|
|
@@ -518,16 +518,16 @@ const configuration = {
|
|
|
518
518
|
'accessibility.signals.taskFailed': {
|
|
519
519
|
...signalFeatureBase,
|
|
520
520
|
'description': ( localize(
|
|
521
|
-
|
|
521
|
+
4188,
|
|
522
522
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
|
|
523
523
|
)),
|
|
524
524
|
'properties': {
|
|
525
525
|
'sound': {
|
|
526
|
-
'description': ( localize(
|
|
526
|
+
'description': ( localize(4189, "Plays a sound when a task fails (non-zero exit code).")),
|
|
527
527
|
...soundFeatureBase
|
|
528
528
|
},
|
|
529
529
|
'announcement': {
|
|
530
|
-
'description': ( localize(
|
|
530
|
+
'description': ( localize(4190, "Announces when a task fails (non-zero exit code).")),
|
|
531
531
|
...announcementFeatureBase
|
|
532
532
|
},
|
|
533
533
|
}
|
|
@@ -535,20 +535,20 @@ const configuration = {
|
|
|
535
535
|
'accessibility.signals.terminalCommandFailed': {
|
|
536
536
|
...signalFeatureBase,
|
|
537
537
|
'description': ( localize(
|
|
538
|
-
|
|
538
|
+
4191,
|
|
539
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."
|
|
540
540
|
)),
|
|
541
541
|
'properties': {
|
|
542
542
|
'sound': {
|
|
543
543
|
'description': ( localize(
|
|
544
|
-
|
|
544
|
+
4192,
|
|
545
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."
|
|
546
546
|
)),
|
|
547
547
|
...soundFeatureBase
|
|
548
548
|
},
|
|
549
549
|
'announcement': {
|
|
550
550
|
'description': ( localize(
|
|
551
|
-
|
|
551
|
+
4193,
|
|
552
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."
|
|
553
553
|
)),
|
|
554
554
|
...announcementFeatureBase
|
|
@@ -558,20 +558,20 @@ const configuration = {
|
|
|
558
558
|
'accessibility.signals.terminalCommandSucceeded': {
|
|
559
559
|
...signalFeatureBase,
|
|
560
560
|
'description': ( localize(
|
|
561
|
-
|
|
561
|
+
4194,
|
|
562
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."
|
|
563
563
|
)),
|
|
564
564
|
'properties': {
|
|
565
565
|
'sound': {
|
|
566
566
|
'description': ( localize(
|
|
567
|
-
|
|
567
|
+
4195,
|
|
568
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."
|
|
569
569
|
)),
|
|
570
570
|
...soundFeatureBase
|
|
571
571
|
},
|
|
572
572
|
'announcement': {
|
|
573
573
|
'description': ( localize(
|
|
574
|
-
|
|
574
|
+
4196,
|
|
575
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."
|
|
576
576
|
)),
|
|
577
577
|
...announcementFeatureBase
|
|
@@ -581,16 +581,16 @@ const configuration = {
|
|
|
581
581
|
'accessibility.signals.terminalQuickFix': {
|
|
582
582
|
...signalFeatureBase,
|
|
583
583
|
'description': ( localize(
|
|
584
|
-
|
|
584
|
+
4197,
|
|
585
585
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
|
|
586
586
|
)),
|
|
587
587
|
'properties': {
|
|
588
588
|
'sound': {
|
|
589
|
-
'description': ( localize(
|
|
589
|
+
'description': ( localize(4198, "Plays a sound when terminal Quick Fixes are available.")),
|
|
590
590
|
...soundFeatureBase
|
|
591
591
|
},
|
|
592
592
|
'announcement': {
|
|
593
|
-
'description': ( localize(
|
|
593
|
+
'description': ( localize(4199, "Announces when terminal Quick Fixes are available.")),
|
|
594
594
|
...announcementFeatureBase
|
|
595
595
|
},
|
|
596
596
|
}
|
|
@@ -598,16 +598,16 @@ const configuration = {
|
|
|
598
598
|
'accessibility.signals.terminalBell': {
|
|
599
599
|
...signalFeatureBase,
|
|
600
600
|
'description': ( localize(
|
|
601
|
-
|
|
601
|
+
4200,
|
|
602
602
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
|
|
603
603
|
)),
|
|
604
604
|
'properties': {
|
|
605
605
|
'sound': {
|
|
606
|
-
'description': ( localize(
|
|
606
|
+
'description': ( localize(4201, "Plays a sound when the terminal bell is ringing.")),
|
|
607
607
|
...soundFeatureBase
|
|
608
608
|
},
|
|
609
609
|
'announcement': {
|
|
610
|
-
'description': ( localize(
|
|
610
|
+
'description': ( localize(4202, "Announces when the terminal bell is ringing.")),
|
|
611
611
|
...announcementFeatureBase
|
|
612
612
|
},
|
|
613
613
|
}
|
|
@@ -615,13 +615,13 @@ const configuration = {
|
|
|
615
615
|
'accessibility.signals.diffLineInserted': {
|
|
616
616
|
...defaultNoAnnouncement,
|
|
617
617
|
'description': ( localize(
|
|
618
|
-
|
|
618
|
+
4203,
|
|
619
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."
|
|
620
620
|
)),
|
|
621
621
|
'properties': {
|
|
622
622
|
'sound': {
|
|
623
623
|
'description': ( localize(
|
|
624
|
-
|
|
624
|
+
4204,
|
|
625
625
|
"Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
626
626
|
)),
|
|
627
627
|
...soundFeatureBase
|
|
@@ -631,13 +631,13 @@ const configuration = {
|
|
|
631
631
|
'accessibility.signals.diffLineModified': {
|
|
632
632
|
...defaultNoAnnouncement,
|
|
633
633
|
'description': ( localize(
|
|
634
|
-
|
|
634
|
+
4205,
|
|
635
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."
|
|
636
636
|
)),
|
|
637
637
|
'properties': {
|
|
638
638
|
'sound': {
|
|
639
639
|
'description': ( localize(
|
|
640
|
-
|
|
640
|
+
4206,
|
|
641
641
|
"Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
642
642
|
)),
|
|
643
643
|
...soundFeatureBase
|
|
@@ -647,13 +647,13 @@ const configuration = {
|
|
|
647
647
|
'accessibility.signals.diffLineDeleted': {
|
|
648
648
|
...defaultNoAnnouncement,
|
|
649
649
|
'description': ( localize(
|
|
650
|
-
|
|
650
|
+
4207,
|
|
651
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."
|
|
652
652
|
)),
|
|
653
653
|
'properties': {
|
|
654
654
|
'sound': {
|
|
655
655
|
'description': ( localize(
|
|
656
|
-
|
|
656
|
+
4208,
|
|
657
657
|
"Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
658
658
|
)),
|
|
659
659
|
...soundFeatureBase
|
|
@@ -663,12 +663,12 @@ const configuration = {
|
|
|
663
663
|
'accessibility.signals.chatEditModifiedFile': {
|
|
664
664
|
...defaultNoAnnouncement,
|
|
665
665
|
'description': ( localize(
|
|
666
|
-
|
|
666
|
+
4209,
|
|
667
667
|
"Plays a sound / audio cue when revealing a file with changes from chat edits"
|
|
668
668
|
)),
|
|
669
669
|
'properties': {
|
|
670
670
|
'sound': {
|
|
671
|
-
'description': ( localize(
|
|
671
|
+
'description': ( localize(4210, "Plays a sound when revealing a file with changes from chat edits")),
|
|
672
672
|
...soundFeatureBase
|
|
673
673
|
}
|
|
674
674
|
}
|
|
@@ -676,20 +676,20 @@ const configuration = {
|
|
|
676
676
|
'accessibility.signals.notebookCellCompleted': {
|
|
677
677
|
...signalFeatureBase,
|
|
678
678
|
'description': ( localize(
|
|
679
|
-
|
|
679
|
+
4211,
|
|
680
680
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
|
|
681
681
|
)),
|
|
682
682
|
'properties': {
|
|
683
683
|
'sound': {
|
|
684
684
|
'description': ( localize(
|
|
685
|
-
|
|
685
|
+
4212,
|
|
686
686
|
"Plays a sound when a notebook cell execution is successfully completed."
|
|
687
687
|
)),
|
|
688
688
|
...soundFeatureBase
|
|
689
689
|
},
|
|
690
690
|
'announcement': {
|
|
691
691
|
'description': ( localize(
|
|
692
|
-
|
|
692
|
+
4213,
|
|
693
693
|
"Announces when a notebook cell execution is successfully completed."
|
|
694
694
|
)),
|
|
695
695
|
...announcementFeatureBase
|
|
@@ -699,16 +699,16 @@ const configuration = {
|
|
|
699
699
|
'accessibility.signals.notebookCellFailed': {
|
|
700
700
|
...signalFeatureBase,
|
|
701
701
|
'description': ( localize(
|
|
702
|
-
|
|
702
|
+
4214,
|
|
703
703
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
|
|
704
704
|
)),
|
|
705
705
|
'properties': {
|
|
706
706
|
'sound': {
|
|
707
|
-
'description': ( localize(
|
|
707
|
+
'description': ( localize(4215, "Plays a sound when a notebook cell execution fails.")),
|
|
708
708
|
...soundFeatureBase
|
|
709
709
|
},
|
|
710
710
|
'announcement': {
|
|
711
|
-
'description': ( localize(
|
|
711
|
+
'description': ( localize(4216, "Announces when a notebook cell execution fails.")),
|
|
712
712
|
...announcementFeatureBase
|
|
713
713
|
},
|
|
714
714
|
}
|
|
@@ -716,16 +716,16 @@ const configuration = {
|
|
|
716
716
|
'accessibility.signals.progress': {
|
|
717
717
|
...signalFeatureBase,
|
|
718
718
|
'description': ( localize(
|
|
719
|
-
|
|
719
|
+
4217,
|
|
720
720
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
|
|
721
721
|
)),
|
|
722
722
|
'properties': {
|
|
723
723
|
'sound': {
|
|
724
|
-
'description': ( localize(
|
|
724
|
+
'description': ( localize(4218, "Plays a sound on loop while progress is occurring.")),
|
|
725
725
|
...soundFeatureBase
|
|
726
726
|
},
|
|
727
727
|
'announcement': {
|
|
728
|
-
'description': ( localize(
|
|
728
|
+
'description': ( localize(4219, "Alerts on loop while progress is occurring.")),
|
|
729
729
|
...announcementFeatureBase
|
|
730
730
|
},
|
|
731
731
|
},
|
|
@@ -733,56 +733,56 @@ const configuration = {
|
|
|
733
733
|
'accessibility.signals.chatRequestSent': {
|
|
734
734
|
...signalFeatureBase,
|
|
735
735
|
'description': ( localize(
|
|
736
|
-
|
|
736
|
+
4220,
|
|
737
737
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
|
|
738
738
|
)),
|
|
739
739
|
'properties': {
|
|
740
740
|
'sound': {
|
|
741
|
-
'description': ( localize(
|
|
741
|
+
'description': ( localize(4221, "Plays a sound when a chat request is made.")),
|
|
742
742
|
...soundFeatureBase
|
|
743
743
|
},
|
|
744
744
|
'announcement': {
|
|
745
|
-
'description': ( localize(
|
|
745
|
+
'description': ( localize(4222, "Announces when a chat request is made.")),
|
|
746
746
|
...announcementFeatureBase
|
|
747
747
|
},
|
|
748
748
|
}
|
|
749
749
|
},
|
|
750
750
|
'accessibility.signals.chatResponseReceived': {
|
|
751
751
|
...defaultNoAnnouncement,
|
|
752
|
-
'description': ( localize(
|
|
752
|
+
'description': ( localize(4223, "Plays a sound / audio cue when the response has been received.")),
|
|
753
753
|
'properties': {
|
|
754
754
|
'sound': {
|
|
755
|
-
'description': ( localize(
|
|
755
|
+
'description': ( localize(4224, "Plays a sound on when the response has been received.")),
|
|
756
756
|
...soundFeatureBase
|
|
757
757
|
},
|
|
758
758
|
}
|
|
759
759
|
},
|
|
760
760
|
'accessibility.signals.codeActionTriggered': {
|
|
761
761
|
...defaultNoAnnouncement,
|
|
762
|
-
'description': ( localize(
|
|
762
|
+
'description': ( localize(4225, "Plays a sound / audio cue - when a code action has been triggered.")),
|
|
763
763
|
'properties': {
|
|
764
764
|
'sound': {
|
|
765
|
-
'description': ( localize(
|
|
765
|
+
'description': ( localize(4226, "Plays a sound when a code action has been triggered.")),
|
|
766
766
|
...soundFeatureBase
|
|
767
767
|
}
|
|
768
768
|
}
|
|
769
769
|
},
|
|
770
770
|
'accessibility.signals.codeActionApplied': {
|
|
771
771
|
...defaultNoAnnouncement,
|
|
772
|
-
'description': ( localize(
|
|
772
|
+
'description': ( localize(4227, "Plays a sound / audio cue when the code action has been applied.")),
|
|
773
773
|
'properties': {
|
|
774
774
|
'sound': {
|
|
775
|
-
'description': ( localize(
|
|
775
|
+
'description': ( localize(4228, "Plays a sound when the code action has been applied.")),
|
|
776
776
|
...soundFeatureBase
|
|
777
777
|
},
|
|
778
778
|
}
|
|
779
779
|
},
|
|
780
780
|
'accessibility.signals.voiceRecordingStarted': {
|
|
781
781
|
...defaultNoAnnouncement,
|
|
782
|
-
'description': ( localize(
|
|
782
|
+
'description': ( localize(4229, "Plays a sound / audio cue when the voice recording has started.")),
|
|
783
783
|
'properties': {
|
|
784
784
|
'sound': {
|
|
785
|
-
'description': ( localize(
|
|
785
|
+
'description': ( localize(4230, "Plays a sound when the voice recording has started.")),
|
|
786
786
|
...soundFeatureBase,
|
|
787
787
|
},
|
|
788
788
|
},
|
|
@@ -792,10 +792,10 @@ const configuration = {
|
|
|
792
792
|
},
|
|
793
793
|
'accessibility.signals.voiceRecordingStopped': {
|
|
794
794
|
...defaultNoAnnouncement,
|
|
795
|
-
'description': ( localize(
|
|
795
|
+
'description': ( localize(4231, "Plays a sound / audio cue when the voice recording has stopped.")),
|
|
796
796
|
'properties': {
|
|
797
797
|
'sound': {
|
|
798
|
-
'description': ( localize(
|
|
798
|
+
'description': ( localize(4232, "Plays a sound when the voice recording has stopped.")),
|
|
799
799
|
...soundFeatureBase,
|
|
800
800
|
default: 'off'
|
|
801
801
|
},
|
|
@@ -804,16 +804,16 @@ const configuration = {
|
|
|
804
804
|
'accessibility.signals.clear': {
|
|
805
805
|
...signalFeatureBase,
|
|
806
806
|
'description': ( localize(
|
|
807
|
-
|
|
807
|
+
4233,
|
|
808
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)."
|
|
809
809
|
)),
|
|
810
810
|
'properties': {
|
|
811
811
|
'sound': {
|
|
812
|
-
'description': ( localize(
|
|
812
|
+
'description': ( localize(4234, "Plays a sound when a feature is cleared.")),
|
|
813
813
|
...soundFeatureBase
|
|
814
814
|
},
|
|
815
815
|
'announcement': {
|
|
816
|
-
'description': ( localize(
|
|
816
|
+
'description': ( localize(4235, "Announces when a feature is cleared.")),
|
|
817
817
|
...announcementFeatureBase
|
|
818
818
|
},
|
|
819
819
|
},
|
|
@@ -821,16 +821,16 @@ const configuration = {
|
|
|
821
821
|
'accessibility.signals.editsUndone': {
|
|
822
822
|
...signalFeatureBase,
|
|
823
823
|
'description': ( localize(
|
|
824
|
-
|
|
824
|
+
4236,
|
|
825
825
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits have been undone."
|
|
826
826
|
)),
|
|
827
827
|
'properties': {
|
|
828
828
|
'sound': {
|
|
829
|
-
'description': ( localize(
|
|
829
|
+
'description': ( localize(4237, "Plays a sound when edits have been undone.")),
|
|
830
830
|
...soundFeatureBase
|
|
831
831
|
},
|
|
832
832
|
'announcement': {
|
|
833
|
-
'description': ( localize(
|
|
833
|
+
'description': ( localize(4238, "Announces when edits have been undone.")),
|
|
834
834
|
...announcementFeatureBase
|
|
835
835
|
},
|
|
836
836
|
},
|
|
@@ -838,16 +838,16 @@ const configuration = {
|
|
|
838
838
|
'accessibility.signals.editsKept': {
|
|
839
839
|
...signalFeatureBase,
|
|
840
840
|
'description': ( localize(
|
|
841
|
-
|
|
841
|
+
4239,
|
|
842
842
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when edits are kept."
|
|
843
843
|
)),
|
|
844
844
|
'properties': {
|
|
845
845
|
'sound': {
|
|
846
|
-
'description': ( localize(
|
|
846
|
+
'description': ( localize(4240, "Plays a sound when edits are kept.")),
|
|
847
847
|
...soundFeatureBase
|
|
848
848
|
},
|
|
849
849
|
'announcement': {
|
|
850
|
-
'description': ( localize(
|
|
850
|
+
'description': ( localize(4241, "Announces when edits are kept.")),
|
|
851
851
|
...announcementFeatureBase
|
|
852
852
|
},
|
|
853
853
|
},
|
|
@@ -857,30 +857,30 @@ const configuration = {
|
|
|
857
857
|
'tags': ['accessibility'],
|
|
858
858
|
additionalProperties: false,
|
|
859
859
|
'markdownDescription': ( localize(
|
|
860
|
-
|
|
860
|
+
4242,
|
|
861
861
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
|
|
862
862
|
)),
|
|
863
863
|
'properties': {
|
|
864
864
|
'sound': {
|
|
865
|
-
'description': ( localize(
|
|
865
|
+
'description': ( localize(4243, "Plays a sound when a file is saved.")),
|
|
866
866
|
'type': 'string',
|
|
867
867
|
'enum': ['userGesture', 'always', 'never'],
|
|
868
868
|
'default': 'never',
|
|
869
869
|
'enumDescriptions': [
|
|
870
|
-
( localize(
|
|
871
|
-
( localize(
|
|
872
|
-
( localize(
|
|
870
|
+
( localize(4244, "Plays the sound when a user explicitly saves a file.")),
|
|
871
|
+
( localize(4245, "Plays the sound whenever a file is saved, including auto save.")),
|
|
872
|
+
( localize(4246, "Never plays the sound."))
|
|
873
873
|
],
|
|
874
874
|
},
|
|
875
875
|
'announcement': {
|
|
876
|
-
'description': ( localize(
|
|
876
|
+
'description': ( localize(4247, "Announces when a file is saved.")),
|
|
877
877
|
'type': 'string',
|
|
878
878
|
'enum': ['userGesture', 'always', 'never'],
|
|
879
879
|
'default': 'never',
|
|
880
880
|
'enumDescriptions': [
|
|
881
|
-
( localize(
|
|
882
|
-
( localize(
|
|
883
|
-
( localize(
|
|
881
|
+
( localize(4248, "Announces when a user explicitly saves a file.")),
|
|
882
|
+
( localize(4249, "Announces whenever a file is saved, including auto save.")),
|
|
883
|
+
( localize(4250, "Never plays the announcement."))
|
|
884
884
|
],
|
|
885
885
|
},
|
|
886
886
|
},
|
|
@@ -894,36 +894,36 @@ const configuration = {
|
|
|
894
894
|
'tags': ['accessibility'],
|
|
895
895
|
additionalProperties: false,
|
|
896
896
|
'markdownDescription': ( localize(
|
|
897
|
-
|
|
897
|
+
4251,
|
|
898
898
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
|
|
899
899
|
)),
|
|
900
900
|
'properties': {
|
|
901
901
|
'sound': {
|
|
902
|
-
'description': ( localize(
|
|
902
|
+
'description': ( localize(4252, "Plays a sound when a file or notebook is formatted.")),
|
|
903
903
|
'type': 'string',
|
|
904
904
|
'enum': ['userGesture', 'always', 'never'],
|
|
905
905
|
'default': 'never',
|
|
906
906
|
'enumDescriptions': [
|
|
907
|
-
( localize(
|
|
907
|
+
( localize(4253, "Plays the sound when a user explicitly formats a file.")),
|
|
908
908
|
( localize(
|
|
909
|
-
|
|
909
|
+
4254,
|
|
910
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."
|
|
911
911
|
)),
|
|
912
|
-
( localize(
|
|
912
|
+
( localize(4255, "Never plays the sound."))
|
|
913
913
|
],
|
|
914
914
|
},
|
|
915
915
|
'announcement': {
|
|
916
|
-
'description': ( localize(
|
|
916
|
+
'description': ( localize(4256, "Announces when a file or notebook is formatted.")),
|
|
917
917
|
'type': 'string',
|
|
918
918
|
'enum': ['userGesture', 'always', 'never'],
|
|
919
919
|
'default': 'never',
|
|
920
920
|
'enumDescriptions': [
|
|
921
|
-
( localize(
|
|
921
|
+
( localize(4257, "Announces when a user explicitly formats a file.")),
|
|
922
922
|
( localize(
|
|
923
|
-
|
|
923
|
+
4258,
|
|
924
924
|
"Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
925
925
|
)),
|
|
926
|
-
( localize(
|
|
926
|
+
( localize(4259, "Never announces."))
|
|
927
927
|
],
|
|
928
928
|
},
|
|
929
929
|
},
|
|
@@ -935,23 +935,23 @@ const configuration = {
|
|
|
935
935
|
'accessibility.signals.chatUserActionRequired': {
|
|
936
936
|
...signalFeatureBase,
|
|
937
937
|
'markdownDescription': ( localize(
|
|
938
|
-
|
|
938
|
+
4260,
|
|
939
939
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat."
|
|
940
940
|
)),
|
|
941
941
|
'properties': {
|
|
942
942
|
'sound': {
|
|
943
|
-
'description': ( localize(
|
|
943
|
+
'description': ( localize(4261, "Plays a sound when user action is required in the chat.")),
|
|
944
944
|
'type': 'string',
|
|
945
945
|
'enum': ['auto', 'on', 'off'],
|
|
946
946
|
'enumDescriptions': [
|
|
947
|
-
( localize(
|
|
948
|
-
( localize(
|
|
949
|
-
( localize(
|
|
947
|
+
( localize(4262, "Enable sound when a screen reader is attached.")),
|
|
948
|
+
( localize(4127, "Enable sound.")),
|
|
949
|
+
( localize(4128, "Disable sound."))
|
|
950
950
|
],
|
|
951
951
|
},
|
|
952
952
|
'announcement': {
|
|
953
953
|
'description': ( localize(
|
|
954
|
-
|
|
954
|
+
4263,
|
|
955
955
|
"Announces when a user action is required in the chat - including information about the action and how to take it."
|
|
956
956
|
)),
|
|
957
957
|
...announcementFeatureBase
|
|
@@ -965,13 +965,13 @@ const configuration = {
|
|
|
965
965
|
},
|
|
966
966
|
'accessibility.underlineLinks': {
|
|
967
967
|
'type': 'boolean',
|
|
968
|
-
'description': ( localize(
|
|
968
|
+
'description': ( localize(4264, "Controls whether links should be underlined in the workbench.")),
|
|
969
969
|
'default': false,
|
|
970
970
|
},
|
|
971
971
|
'accessibility.debugWatchVariableAnnouncements': {
|
|
972
972
|
'type': 'boolean',
|
|
973
973
|
'description': ( localize(
|
|
974
|
-
|
|
974
|
+
4265,
|
|
975
975
|
"Controls whether variable changes should be announced in the debug watch view."
|
|
976
976
|
)),
|
|
977
977
|
'default': true,
|
|
@@ -979,7 +979,7 @@ const configuration = {
|
|
|
979
979
|
'accessibility.replEditor.readLastExecutionOutput': {
|
|
980
980
|
'type': 'boolean',
|
|
981
981
|
'description': ( localize(
|
|
982
|
-
|
|
982
|
+
4266,
|
|
983
983
|
"Controls whether the output from an execution in the native REPL will be announced."
|
|
984
984
|
)),
|
|
985
985
|
'default': true,
|
|
@@ -989,7 +989,7 @@ const configuration = {
|
|
|
989
989
|
enum: ['none', 'input', 'lastExecution'],
|
|
990
990
|
default: 'input',
|
|
991
991
|
description: ( localize(
|
|
992
|
-
|
|
992
|
+
4267,
|
|
993
993
|
"Control whether focus should automatically be sent to the REPL when code is executed."
|
|
994
994
|
)),
|
|
995
995
|
},
|
|
@@ -997,7 +997,7 @@ const configuration = {
|
|
|
997
997
|
'type': 'boolean',
|
|
998
998
|
'default': true,
|
|
999
999
|
'markdownDescription': ( localize(
|
|
1000
|
-
|
|
1000
|
+
4268,
|
|
1001
1001
|
"Controls whether the {0} should be optimized for screen readers when in screen reader mode. When enabled, the window title will have {1} appended to the end.",
|
|
1002
1002
|
'`#window.title#`',
|
|
1003
1003
|
'`activeEditorState`'
|
|
@@ -1007,7 +1007,7 @@ const configuration = {
|
|
|
1007
1007
|
'type': 'boolean',
|
|
1008
1008
|
'default': true,
|
|
1009
1009
|
'markdownDescription': ( localize(
|
|
1010
|
-
|
|
1010
|
+
4269,
|
|
1011
1011
|
"Controls whether files should be opened when the chat agent has applied edits to them."
|
|
1012
1012
|
))
|
|
1013
1013
|
},
|
|
@@ -1021,7 +1021,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1021
1021
|
properties: {
|
|
1022
1022
|
[AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
|
|
1023
1023
|
description: ( localize(
|
|
1024
|
-
|
|
1024
|
+
4270,
|
|
1025
1025
|
'Whether to dim unfocused editors and terminals, which makes it more clear where typed input will go to. This works with the majority of editors with the notable exceptions of those that utilize iframes like notebooks and extension webview editors.'
|
|
1026
1026
|
)),
|
|
1027
1027
|
type: 'boolean',
|
|
@@ -1031,7 +1031,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1031
1031
|
},
|
|
1032
1032
|
[AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
|
|
1033
1033
|
markdownDescription: ( localize(
|
|
1034
|
-
|
|
1034
|
+
4271,
|
|
1035
1035
|
'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
|
|
1036
1036
|
`\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
|
|
1037
1037
|
)),
|
|
@@ -1043,7 +1043,7 @@ function registerAccessibilityConfiguration() {
|
|
|
1043
1043
|
scope: ConfigurationScope.APPLICATION,
|
|
1044
1044
|
},
|
|
1045
1045
|
[AccessibilityWorkbenchSettingId.HideAccessibleView]: {
|
|
1046
|
-
description: ( localize(
|
|
1046
|
+
description: ( localize(4272, "Controls whether the Accessible View is hidden.")),
|
|
1047
1047
|
type: 'boolean',
|
|
1048
1048
|
default: false,
|
|
1049
1049
|
tags: ['accessibility']
|
|
@@ -1073,7 +1073,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1073
1073
|
properties: {
|
|
1074
1074
|
[AccessibilityVoiceSettingId.SpeechTimeout]: {
|
|
1075
1075
|
'markdownDescription': ( localize(
|
|
1076
|
-
|
|
1076
|
+
4273,
|
|
1077
1077
|
"The duration in milliseconds that voice speech recognition remains active after you stop speaking. For example in a chat session, the transcribed text is submitted automatically after the timeout is met. Set to `0` to disable this feature."
|
|
1078
1078
|
)),
|
|
1079
1079
|
'type': 'number',
|
|
@@ -1082,14 +1082,14 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1082
1082
|
'tags': ['accessibility']
|
|
1083
1083
|
},
|
|
1084
1084
|
[AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
|
|
1085
|
-
'markdownDescription': ( localize(
|
|
1085
|
+
'markdownDescription': ( localize(4274, "Whether to ignore code snippets in text-to-speech synthesis.")),
|
|
1086
1086
|
'type': 'boolean',
|
|
1087
1087
|
'default': false,
|
|
1088
1088
|
'tags': ['accessibility']
|
|
1089
1089
|
},
|
|
1090
1090
|
[AccessibilityVoiceSettingId.SpeechLanguage]: {
|
|
1091
1091
|
'markdownDescription': ( localize(
|
|
1092
|
-
|
|
1092
|
+
4275,
|
|
1093
1093
|
"The language that text-to-speech and speech-to-text should use. Select `auto` to use the configured display language if possible. Note that not all display languages maybe supported by speech recognition and synthesizers."
|
|
1094
1094
|
)),
|
|
1095
1095
|
'type': 'string',
|
|
@@ -1104,13 +1104,13 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1104
1104
|
'enum': ['on', 'off'],
|
|
1105
1105
|
'enumDescriptions': [
|
|
1106
1106
|
( localize(
|
|
1107
|
-
|
|
1107
|
+
4276,
|
|
1108
1108
|
"Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
|
|
1109
1109
|
)),
|
|
1110
|
-
( localize(
|
|
1110
|
+
( localize(4277, "Disable the feature.")),
|
|
1111
1111
|
],
|
|
1112
1112
|
'markdownDescription': ( localize(
|
|
1113
|
-
|
|
1113
|
+
4278,
|
|
1114
1114
|
"Whether a textual response should automatically be read out aloud when speech was used as input. For example in a chat session, a response is automatically synthesized when voice was used as chat request."
|
|
1115
1115
|
)),
|
|
1116
1116
|
'default': 'off',
|
|
@@ -1122,7 +1122,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1122
1122
|
getLanguages() {
|
|
1123
1123
|
return {
|
|
1124
1124
|
['auto']: {
|
|
1125
|
-
name: ( localize(
|
|
1125
|
+
name: ( localize(4279, "Auto (Use Display Language)"))
|
|
1126
1126
|
},
|
|
1127
1127
|
...SPEECH_LANGUAGES
|
|
1128
1128
|
};
|