@codingame/monaco-vscode-api 13.1.6 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions.d.ts +3 -2
- package/missing-services.js +177 -63
- package/monaco.d.ts +1 -1
- package/package.json +8 -8
- package/services.d.ts +2 -2
- package/services.js +2 -3
- package/vscode/src/vs/base/browser/cssValue.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +4 -1
- package/vscode/src/vs/base/browser/markdownRenderer.js +12 -0
- package/vscode/src/vs/base/browser/touch.js +2 -1
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/button/button.js +10 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +2 -2
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +10 -0
- package/vscode/src/vs/base/browser/ui/list/listView.js +102 -6
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/menu/menu.js +4 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +6 -6
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +1 -2
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +18 -8
- package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.js +2 -2
- package/vscode/src/vs/base/common/actions.d.ts +1 -1
- package/vscode/src/vs/base/common/arrays.d.ts +1 -2
- package/vscode/src/vs/base/common/arrays.js +2 -2
- package/vscode/src/vs/base/common/assert.d.ts +1 -1
- package/vscode/src/vs/base/common/assert.js +5 -2
- package/vscode/src/vs/base/common/async.js +16 -2
- package/vscode/src/vs/base/common/codicons.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
- package/vscode/src/vs/base/common/color.d.ts +2 -2
- package/vscode/src/vs/base/common/color.js +4 -4
- package/vscode/src/vs/base/common/decorators.d.ts +1 -0
- package/vscode/src/vs/base/common/decorators.js +2 -0
- package/vscode/src/vs/base/common/errors.d.ts +2 -0
- package/vscode/src/vs/base/common/errors.js +10 -2
- package/vscode/src/vs/base/common/event.d.ts +3 -3
- package/vscode/src/vs/base/common/event.js +3 -3
- package/vscode/src/vs/base/common/filters.js +1 -1
- package/vscode/src/vs/base/common/iterator.d.ts +1 -1
- package/vscode/src/vs/base/common/iterator.js +8 -2
- package/vscode/src/vs/base/common/lifecycle.d.ts +7 -0
- package/vscode/src/vs/base/common/map.d.ts +8 -16
- package/vscode/src/vs/base/common/map.js +43 -30
- package/vscode/src/vs/base/common/network.d.ts +2 -2
- package/vscode/src/vs/base/common/network.js +4 -4
- package/vscode/src/vs/base/common/numbers.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/autorun.js +14 -1
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +13 -9
- package/vscode/src/vs/base/common/observableInternal/base.js +7 -1
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +5 -3
- package/vscode/src/vs/base/common/observableInternal/derived.js +31 -4
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/lazyObservableValue.js +5 -2
- package/vscode/src/vs/base/common/observableInternal/logging.d.ts +10 -4
- package/vscode/src/vs/base/common/observableInternal/logging.js +310 -1
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +9 -9
- package/vscode/src/vs/base/common/observableInternal/utils.js +13 -4
- package/vscode/src/vs/base/common/path.js +1 -2
- package/vscode/src/vs/base/common/product.d.ts +5 -0
- package/vscode/src/vs/base/common/stream.d.ts +1 -1
- package/vscode/src/vs/base/common/stream.js +13 -5
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +19 -9
- package/vscode/src/vs/base/common/types.d.ts +2 -1
- package/vscode/src/vs/base/common/types.js +9 -4
- package/vscode/src/vs/base/common/uuid.js +1 -50
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +26 -12
- package/vscode/src/vs/editor/browser/editorDom.js +3 -3
- package/vscode/src/vs/editor/browser/editorExtensions.js +15 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +7 -2
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +34 -27
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.js +8 -8
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.js +3 -3
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +7 -0
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.js +49 -0
- package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.d.ts → css/decorationCssRuleExtractor.d.ts} +1 -1
- package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.js → css/decorationCssRuleExtractor.js} +2 -2
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +15 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +37 -0
- package/vscode/src/vs/editor/browser/gpu/{media → css/media}/decorationCssRuleExtractor.css.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +6 -2
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +5 -2
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +57 -14
- package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +2 -1
- package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.d.ts +4 -1
- package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.js +5 -1
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.d.ts +25 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.js +16 -0
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.d.ts → renderStrategy/fullFileRenderStrategy.d.ts} +14 -13
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.js → renderStrategy/fullFileRenderStrategy.js} +100 -57
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.js → renderStrategy/fullFileRenderStrategy.wgsl.js} +3 -3
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +40 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +287 -0
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +4 -3
- package/vscode/src/vs/editor/browser/gpu/taskQueue.js +17 -2
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +8 -9
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +45 -34
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +28 -21
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +68 -2
- package/vscode/src/vs/editor/browser/point.d.ts +9 -0
- package/vscode/src/vs/editor/browser/point.js +22 -0
- package/vscode/src/vs/editor/browser/rect.d.ts +30 -0
- package/vscode/src/vs/editor/browser/rect.js +131 -0
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +1 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.js +8 -1
- package/vscode/src/vs/editor/browser/view.d.ts +1 -0
- package/vscode/src/vs/editor/browser/view.js +9 -5
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +7 -3
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +140 -56
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +5 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.d.ts +2 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.js +8 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +14 -9
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.d.ts +12 -10
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +12 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +4 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +29 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +28 -28
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +0 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +3 -6
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +3 -10
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +8 -6
- package/vscode/src/vs/editor/common/config/editorOptions.js +409 -392
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.js +9 -0
- package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
- package/vscode/src/vs/editor/common/core/position.js +1 -1
- package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/positionToOffset.js +20 -1
- package/vscode/src/vs/editor/common/core/range.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/range.js +3 -0
- package/vscode/src/vs/editor/common/core/textEdit.d.ts +0 -6
- package/vscode/src/vs/editor/common/core/textEdit.js +0 -1
- package/vscode/src/vs/editor/common/core/textLength.js +1 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +10 -7
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts +2 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js +6 -6
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +1 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js +20 -0
- package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +1 -0
- package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +1 -1
- package/vscode/src/vs/editor/common/diff/rangeMapping.js +1 -22
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +1 -1
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js +5 -5
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +21 -25
- package/vscode/src/vs/editor/common/languages.js +27 -27
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/textModel.js +6 -3
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/textModelTokens.js +11 -18
- package/vscode/src/vs/editor/common/model/tokenStore.d.ts +59 -0
- package/vscode/src/vs/editor/common/model/tokenStore.js +384 -0
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.d.ts +5 -5
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +10 -15
- package/vscode/src/vs/editor/common/model/tokens.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.d.ts +44 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.js +114 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +4 -5
- package/vscode/src/vs/editor/common/model/treeSitterTokens.js +18 -10
- package/vscode/src/vs/editor/common/services/editorSimpleWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/languageFeatures.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.js +0 -1
- package/vscode/src/vs/editor/common/services/treeSitterParserService.d.ts +18 -5
- package/vscode/src/vs/editor/common/standaloneStrings.d.ts +3 -0
- package/vscode/src/vs/editor/common/standaloneStrings.js +54 -38
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +1 -13
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.js +1 -13
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +5 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +24 -0
- 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 +17 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +1 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.js +1 -1
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.js +7 -5
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css.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/hoverColorPicker.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPicker.js +12 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.js +2 -9
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +3 -5
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.d.ts +12 -8
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.js +41 -41
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +13 -8
- 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 +32 -33
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +20 -17
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +32 -30
- package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.d.ts +21 -0
- package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.js +76 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +40 -36
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.js +56 -30
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +43 -41
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +3 -2
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +5 -4
- 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 +5 -5
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +54 -59
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +47 -16
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.js +27 -15
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +10 -1
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverWidget.js +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +4 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +38 -25
- package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.js +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +65 -33
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +38 -24
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +7 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +50 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +8 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +18 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +55 -27
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +22 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +199 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.js +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +5 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +38 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +10 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +16 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +65 -30
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.d.ts +6 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +7 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.d.ts +29 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.js +141 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.d.ts +19 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.js +143 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.d.ts +37 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.js +259 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.d.ts → indicatorView.d.ts} +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.js → indicatorView.js} +9 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.js +39 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.d.ts +32 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.js +204 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.d.ts +71 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.js +584 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.d.ts +123 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.js +348 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css.js +6 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.d.ts +41 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.js +365 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsViewAndDiffProducer.d.ts → viewAndDiffProducer.d.ts} +7 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/viewAndDiffProducer.js +92 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.d.ts +58 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.js +520 -0
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.js +16 -12
- package/vscode/src/vs/editor/contrib/links/browser/links.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.js +13 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -26
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css.js +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.d.ts +2 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +19 -15
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +14 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +48 -19
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +25 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css.js +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +20 -20
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +9 -7
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +3 -7
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +5 -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/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +8 -3
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +4 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +3 -7
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.js +1 -1
- package/vscode/src/vs/nls.js +1 -1
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +1 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +4 -4
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +52 -52
- 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/dropdownWithPrimaryActionViewItem.d.ts +39 -0
- package/vscode/src/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem.js +145 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +1 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +6 -6
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -1
- package/vscode/src/vs/platform/actions/common/actions.js +9 -6
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/commands/common/commands.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configuration.d.ts +4 -1
- package/vscode/src/vs/platform/configuration/common/configuration.js +3 -0
- package/vscode/src/vs/platform/configuration/common/configurationModels.d.ts +2 -2
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +39 -21
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +9 -4
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +25 -15
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/contextview/browser/contextView.service.d.ts +2 -2
- 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 +2 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +5 -3
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +17 -6
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +5 -5
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +2 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +3 -5
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +8 -13
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.service.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +20 -14
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +127 -125
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.service.d.ts +8 -9
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +56 -25
- package/vscode/src/vs/platform/extensions/common/extensions.js +8 -1
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +11 -8
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -9
- 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/extensions.d.ts +3 -2
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/label/common/label.service.d.ts +2 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -0
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +6 -0
- package/vscode/src/vs/platform/log/common/log.js +18 -9
- package/vscode/src/vs/platform/markers/common/markers.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +5 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +19 -9
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +11 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +241 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +4 -0
- package/vscode/src/vs/platform/request/common/request.d.ts +2 -2
- package/vscode/src/vs/platform/request/common/request.js +171 -112
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +2 -0
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +3 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -2
- package/vscode/src/vs/platform/terminal/common/terminal.js +5 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +96 -96
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +45 -45
- 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.d.ts +7 -0
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +17 -7
- package/vscode/src/vs/platform/theme/common/theme.d.ts +6 -0
- package/vscode/src/vs/platform/theme/common/theme.js +8 -1
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +12 -3
- package/vscode/src/vs/platform/theme/common/themeService.js +5 -5
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +7 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +3 -3
- package/vscode/src/vs/platform/window/common/window.d.ts +6 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +3 -2
- package/vscode/src/vs/workbench/api/browser/statusBarService.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +10 -14
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +18 -11
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -20
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +37 -10
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +4 -18
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostComments.js +3 -5
- package/vscode/src/vs/workbench/api/common/extHostConfiguration.d.ts +16 -0
- package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +4 -0
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDialogs.d.ts +1 -2
- package/vscode/src/vs/workbench/api/common/extHostDialogs.js +1 -5
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +0 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +29 -65
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +33 -13
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMemento.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.d.ts +10 -2
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +47 -7
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +12 -8
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +3 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +67 -6
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +18 -1
- package/vscode/src/vs/workbench/api/common/extHostTimeline.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +4 -13
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +7 -61
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +24 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +37 -5
- package/vscode/src/vs/workbench/api/common/extHostVariableResolverService.js +22 -2
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -2
- package/vscode/src/vs/workbench/api/common/extensionHostMain.js +17 -8
- 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/parts/titlebar/titlebarActions.d.ts +12 -0
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +247 -0
- package/vscode/src/vs/workbench/common/activity.d.ts +2 -0
- package/vscode/src/vs/workbench/common/activity.js +6 -0
- package/vscode/src/vs/workbench/common/configuration.js +12 -12
- package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/resourceEditorInput.d.ts +44 -0
- package/vscode/src/vs/workbench/common/editor/resourceEditorInput.js +166 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +159 -164
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +152 -142
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +14 -14
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +16 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +521 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +136 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.js +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.d.ts +23 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.js +309 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.d.ts +81 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.js +681 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.d.ts +57 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.js +169 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.js +296 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.js +198 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.js +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorController.css.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorOverlay.css.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/annotations.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/common/annotations.js +134 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +16 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +48 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatCodeMapperService.service.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +15 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +61 -29
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +17 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +3 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +444 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +991 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +112 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +181 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.d.ts +35 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.d.ts +234 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.js +375 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.js +38 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +42 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +10 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +168 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +9 -19
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +14 -10
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/editSessions/common/editSessions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +167 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +2 -2
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +4 -3
- 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/logs/common/defaultLogLevels.service.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.js +7 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +602 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.js +143 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +2 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.d.ts +60 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +316 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.js +73 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.js +11 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/scm/browser/{diff.service.js → quickDiffModel.service.js} +2 -2
- package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.d.ts +30 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +95 -0
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +82 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.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.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +30 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testId.js +3 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +26 -15
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +5 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +10 -4
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +3 -2
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +83 -83
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +63 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +164 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.d.ts +2 -0
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +3 -1
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +51 -8
- package/vscode/src/vs/workbench/services/output/common/output.js +30 -4
- package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +8 -1
- package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +2 -2
- 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 +9 -4
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.js +5 -1
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +15 -21
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +21 -2
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.service.d.ts +3 -3
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +11 -11
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +375 -32
- package/vscode-dts/vscode.proposed.aiRelatedInformation.d.ts +1 -1
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +11 -0
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +9 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +4 -0
- package/vscode-dts/vscode.proposed.chatReadonlyPromptReference.d.ts +17 -0
- package/vscode-dts/vscode.proposed.chatReferenceBinaryData.d.ts +5 -0
- package/vscode-dts/vscode.proposed.d.ts +132 -131
- package/vscode-dts/vscode.proposed.externalUriOpener.d.ts +3 -3
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +2 -0
- package/vscode-dts/vscode.proposed.inlineEdit.d.ts +14 -3
- package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +21 -1
- package/vscode-dts/vscode.proposed.notebookVariableProvider.d.ts +3 -3
- package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +1 -1
- package/vscode-dts/vscode.proposed.resolvers.d.ts +3 -3
- package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +4 -2
- package/vscode-dts/vscode.proposed.statusBarItemTooltip.d.ts +19 -0
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +10 -0
- package/vscode-dts/vscode.proposed.terminalQuickFixProvider.d.ts +2 -2
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +18 -0
- package/vscode-dts/vscode.proposed.terminalShellType.d.ts +40 -0
- package/vscode/src/vs/base/common/observableInternal/index.js +0 -8
- package/vscode/src/vs/base/common/observableInternal/promise.d.ts +0 -28
- package/vscode/src/vs/base/common/observableInternal/promise.js +0 -65
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +0 -45
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +0 -426
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewAndDiffProducer.js +0 -116
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.d.ts +0 -6
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.js +0 -24
- package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/scm/browser/diff.service.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.d.ts +0 -22
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.js +0 -66
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.d.ts +0 -155
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.js +0 -1454
- package/vscode/src/vs/workbench/contrib/scm/browser/media/dirtydiffDecorator.css.js +0 -6
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +0 -164
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +0 -74
- package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.d.ts +0 -8
- package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.js +0 -93
- package/vscode-dts/vscode.proposed.documentPaste.d.ts +0 -316
- package/vscode-dts/vscode.proposed.fileComments.d.ts +0 -42
- package/vscode-dts/vscode.proposed.showLocal.d.ts +0 -19
- /package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.d.ts → renderStrategy/fullFileRenderStrategy.wgsl.d.ts} +0 -0
|
@@ -56,6 +56,7 @@ var AccessibilityVerbositySettingId;
|
|
|
56
56
|
AccessibilityVerbositySettingId["DiffEditorActive"] = "accessibility.verbosity.diffEditorActive";
|
|
57
57
|
AccessibilityVerbositySettingId["Debug"] = "accessibility.verbosity.debug";
|
|
58
58
|
AccessibilityVerbositySettingId["Walkthrough"] = "accessibility.verbosity.walkthrough";
|
|
59
|
+
AccessibilityVerbositySettingId["SourceControl"] = "accessibility.verbosity.sourceControl";
|
|
59
60
|
})(AccessibilityVerbositySettingId || (AccessibilityVerbositySettingId = {}));
|
|
60
61
|
const baseVerbosityProperty = {
|
|
61
62
|
type: 'boolean',
|
|
@@ -64,7 +65,7 @@ const baseVerbosityProperty = {
|
|
|
64
65
|
};
|
|
65
66
|
const accessibilityConfigurationNodeBase = ( Object.freeze({
|
|
66
67
|
id: 'accessibility',
|
|
67
|
-
title: ( localize(
|
|
68
|
+
title: ( localize(3932, "Accessibility")),
|
|
68
69
|
type: 'object'
|
|
69
70
|
}));
|
|
70
71
|
const soundFeatureBase = {
|
|
@@ -72,9 +73,9 @@ const soundFeatureBase = {
|
|
|
72
73
|
'enum': ['auto', 'on', 'off'],
|
|
73
74
|
'default': 'auto',
|
|
74
75
|
'enumDescriptions': [
|
|
75
|
-
( localize(
|
|
76
|
-
( localize(
|
|
77
|
-
( localize(
|
|
76
|
+
( localize(3933, "Enable sound when a screen reader is attached.")),
|
|
77
|
+
( localize(3934, "Enable sound.")),
|
|
78
|
+
( localize(3935, "Disable sound."))
|
|
78
79
|
],
|
|
79
80
|
tags: ['accessibility'],
|
|
80
81
|
};
|
|
@@ -93,10 +94,10 @@ const announcementFeatureBase = {
|
|
|
93
94
|
'default': 'auto',
|
|
94
95
|
'enumDescriptions': [
|
|
95
96
|
( localize(
|
|
96
|
-
|
|
97
|
+
3936,
|
|
97
98
|
"Enable announcement, will only play when in screen reader optimized mode."
|
|
98
99
|
)),
|
|
99
|
-
( localize(
|
|
100
|
+
( localize(3937, "Disable announcement."))
|
|
100
101
|
],
|
|
101
102
|
tags: ['accessibility'],
|
|
102
103
|
};
|
|
@@ -114,116 +115,123 @@ const configuration = {
|
|
|
114
115
|
properties: {
|
|
115
116
|
[AccessibilityVerbositySettingId.Terminal]: {
|
|
116
117
|
description: ( localize(
|
|
117
|
-
|
|
118
|
+
3938,
|
|
118
119
|
'Provide information about how to access the terminal accessibility help menu when the terminal is focused.'
|
|
119
120
|
)),
|
|
120
121
|
...baseVerbosityProperty
|
|
121
122
|
},
|
|
122
123
|
[AccessibilityVerbositySettingId.DiffEditor]: {
|
|
123
124
|
description: ( localize(
|
|
124
|
-
|
|
125
|
+
3939,
|
|
125
126
|
'Provide information about how to navigate changes in the diff editor when it is focused.'
|
|
126
127
|
)),
|
|
127
128
|
...baseVerbosityProperty
|
|
128
129
|
},
|
|
129
130
|
[AccessibilityVerbositySettingId.Chat]: {
|
|
130
131
|
description: ( localize(
|
|
131
|
-
|
|
132
|
+
3940,
|
|
132
133
|
'Provide information about how to access the chat help menu when the chat input is focused.'
|
|
133
134
|
)),
|
|
134
135
|
...baseVerbosityProperty
|
|
135
136
|
},
|
|
136
137
|
[AccessibilityVerbositySettingId.InlineChat]: {
|
|
137
138
|
description: ( localize(
|
|
138
|
-
|
|
139
|
+
3941,
|
|
139
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.'
|
|
140
141
|
)),
|
|
141
142
|
...baseVerbosityProperty
|
|
142
143
|
},
|
|
143
144
|
[AccessibilityVerbositySettingId.InlineCompletions]: {
|
|
144
145
|
description: ( localize(
|
|
145
|
-
|
|
146
|
+
3942,
|
|
146
147
|
'Provide information about how to access the inline completions hover and Accessible View.'
|
|
147
148
|
)),
|
|
148
149
|
...baseVerbosityProperty
|
|
149
150
|
},
|
|
150
151
|
[AccessibilityVerbositySettingId.KeybindingsEditor]: {
|
|
151
152
|
description: ( localize(
|
|
152
|
-
|
|
153
|
+
3943,
|
|
153
154
|
'Provide information about how to change a keybinding in the keybindings editor when a row is focused.'
|
|
154
155
|
)),
|
|
155
156
|
...baseVerbosityProperty
|
|
156
157
|
},
|
|
157
158
|
[AccessibilityVerbositySettingId.Notebook]: {
|
|
158
159
|
description: ( localize(
|
|
159
|
-
|
|
160
|
+
3944,
|
|
160
161
|
'Provide information about how to focus the cell container or inner editor when a notebook cell is focused.'
|
|
161
162
|
)),
|
|
162
163
|
...baseVerbosityProperty
|
|
163
164
|
},
|
|
164
165
|
[AccessibilityVerbositySettingId.Hover]: {
|
|
165
166
|
description: ( localize(
|
|
166
|
-
|
|
167
|
+
3945,
|
|
167
168
|
'Provide information about how to open the hover in an Accessible View.'
|
|
168
169
|
)),
|
|
169
170
|
...baseVerbosityProperty
|
|
170
171
|
},
|
|
171
172
|
[AccessibilityVerbositySettingId.Notification]: {
|
|
172
173
|
description: ( localize(
|
|
173
|
-
|
|
174
|
+
3946,
|
|
174
175
|
'Provide information about how to open the notification in an Accessible View.'
|
|
175
176
|
)),
|
|
176
177
|
...baseVerbosityProperty
|
|
177
178
|
},
|
|
178
179
|
[AccessibilityVerbositySettingId.EmptyEditorHint]: {
|
|
179
180
|
description: ( localize(
|
|
180
|
-
|
|
181
|
+
3947,
|
|
181
182
|
'Provide information about relevant actions in an empty text editor.'
|
|
182
183
|
)),
|
|
183
184
|
...baseVerbosityProperty
|
|
184
185
|
},
|
|
185
186
|
[AccessibilityVerbositySettingId.ReplEditor]: {
|
|
186
187
|
description: ( localize(
|
|
187
|
-
|
|
188
|
+
3948,
|
|
188
189
|
'Provide information about how to access the REPL editor accessibility help menu when the REPL editor is focused.'
|
|
189
190
|
)),
|
|
190
191
|
...baseVerbosityProperty
|
|
191
192
|
},
|
|
192
193
|
[AccessibilityVerbositySettingId.Comments]: {
|
|
193
194
|
description: ( localize(
|
|
194
|
-
|
|
195
|
+
3949,
|
|
195
196
|
'Provide information about actions that can be taken in the comment widget or in a file which contains comments.'
|
|
196
197
|
)),
|
|
197
198
|
...baseVerbosityProperty
|
|
198
199
|
},
|
|
199
200
|
[AccessibilityVerbositySettingId.DiffEditorActive]: {
|
|
200
|
-
description: ( localize(
|
|
201
|
+
description: ( localize(3950, 'Indicate when a diff editor becomes the active editor.')),
|
|
201
202
|
...baseVerbosityProperty
|
|
202
203
|
},
|
|
203
204
|
[AccessibilityVerbositySettingId.Debug]: {
|
|
204
205
|
description: ( localize(
|
|
205
|
-
|
|
206
|
+
3951,
|
|
206
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.'
|
|
207
208
|
)),
|
|
208
209
|
...baseVerbosityProperty
|
|
209
210
|
},
|
|
210
211
|
[AccessibilityVerbositySettingId.Walkthrough]: {
|
|
211
212
|
description: ( localize(
|
|
212
|
-
|
|
213
|
+
3952,
|
|
213
214
|
'Provide information about how to open the walkthrough in an Accessible View.'
|
|
214
215
|
)),
|
|
215
216
|
...baseVerbosityProperty
|
|
216
217
|
},
|
|
217
218
|
[AccessibilityWorkbenchSettingId.AccessibleViewCloseOnKeyPress]: {
|
|
218
219
|
markdownDescription: ( localize(
|
|
219
|
-
|
|
220
|
+
3953,
|
|
220
221
|
"On keypress, close the Accessible View and focus the element from which it was invoked."
|
|
221
222
|
)),
|
|
222
223
|
type: 'boolean',
|
|
223
224
|
default: true
|
|
224
225
|
},
|
|
226
|
+
[AccessibilityVerbositySettingId.SourceControl]: {
|
|
227
|
+
description: ( localize(
|
|
228
|
+
3954,
|
|
229
|
+
'Provide information about how to access the source control accessibility help menu when the input is focused.'
|
|
230
|
+
)),
|
|
231
|
+
...baseVerbosityProperty
|
|
232
|
+
},
|
|
225
233
|
'accessibility.signalOptions.volume': {
|
|
226
|
-
'description': ( localize(
|
|
234
|
+
'description': ( localize(3955, "The volume of the sounds in percent (0-100).")),
|
|
227
235
|
'type': 'number',
|
|
228
236
|
'minimum': 0,
|
|
229
237
|
'maximum': 100,
|
|
@@ -231,7 +239,7 @@ const configuration = {
|
|
|
231
239
|
'tags': ['accessibility']
|
|
232
240
|
},
|
|
233
241
|
'accessibility.signalOptions.debouncePositionChanges': {
|
|
234
|
-
'description': ( localize(
|
|
242
|
+
'description': ( localize(3956, "Whether or not position changes should be debounced")),
|
|
235
243
|
'type': 'boolean',
|
|
236
244
|
'default': false,
|
|
237
245
|
'tags': ['accessibility']
|
|
@@ -242,13 +250,13 @@ const configuration = {
|
|
|
242
250
|
'additionalProperties': false,
|
|
243
251
|
'properties': {
|
|
244
252
|
'announcement': {
|
|
245
|
-
'description': ( localize(
|
|
253
|
+
'description': ( localize(3957, "The delay in milliseconds before an announcement is made.")),
|
|
246
254
|
'type': 'number',
|
|
247
255
|
'minimum': 0,
|
|
248
256
|
'default': 3000
|
|
249
257
|
},
|
|
250
258
|
'sound': {
|
|
251
|
-
'description': ( localize(
|
|
259
|
+
'description': ( localize(3958, "The delay in milliseconds before a sound is played.")),
|
|
252
260
|
'type': 'number',
|
|
253
261
|
'minimum': 0,
|
|
254
262
|
'default': 400
|
|
@@ -262,7 +270,7 @@ const configuration = {
|
|
|
262
270
|
'properties': {
|
|
263
271
|
'announcement': {
|
|
264
272
|
'description': ( localize(
|
|
265
|
-
|
|
273
|
+
3959,
|
|
266
274
|
"The delay in milliseconds before an announcement is made when there's a warning at the position."
|
|
267
275
|
)),
|
|
268
276
|
'type': 'number',
|
|
@@ -271,7 +279,7 @@ const configuration = {
|
|
|
271
279
|
},
|
|
272
280
|
'sound': {
|
|
273
281
|
'description': ( localize(
|
|
274
|
-
|
|
282
|
+
3960,
|
|
275
283
|
"The delay in milliseconds before a sound is played when there's a warning at the position."
|
|
276
284
|
)),
|
|
277
285
|
'type': 'number',
|
|
@@ -287,7 +295,7 @@ const configuration = {
|
|
|
287
295
|
'properties': {
|
|
288
296
|
'announcement': {
|
|
289
297
|
'description': ( localize(
|
|
290
|
-
|
|
298
|
+
3961,
|
|
291
299
|
"The delay in milliseconds before an announcement is made when there's an error at the position."
|
|
292
300
|
)),
|
|
293
301
|
'type': 'number',
|
|
@@ -296,7 +304,7 @@ const configuration = {
|
|
|
296
304
|
},
|
|
297
305
|
'sound': {
|
|
298
306
|
'description': ( localize(
|
|
299
|
-
|
|
307
|
+
3962,
|
|
300
308
|
"The delay in milliseconds before a sound is played when there's an error at the position."
|
|
301
309
|
)),
|
|
302
310
|
'type': 'number',
|
|
@@ -309,16 +317,16 @@ const configuration = {
|
|
|
309
317
|
'accessibility.signals.lineHasBreakpoint': {
|
|
310
318
|
...signalFeatureBase,
|
|
311
319
|
'description': ( localize(
|
|
312
|
-
|
|
320
|
+
3963,
|
|
313
321
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a breakpoint."
|
|
314
322
|
)),
|
|
315
323
|
'properties': {
|
|
316
324
|
'sound': {
|
|
317
|
-
'description': ( localize(
|
|
325
|
+
'description': ( localize(3964, "Plays a sound when the active line has a breakpoint.")),
|
|
318
326
|
...soundFeatureBase
|
|
319
327
|
},
|
|
320
328
|
'announcement': {
|
|
321
|
-
'description': ( localize(
|
|
329
|
+
'description': ( localize(3965, "Announces when the active line has a breakpoint.")),
|
|
322
330
|
...announcementFeatureBase
|
|
323
331
|
},
|
|
324
332
|
},
|
|
@@ -326,12 +334,12 @@ const configuration = {
|
|
|
326
334
|
'accessibility.signals.lineHasInlineSuggestion': {
|
|
327
335
|
...defaultNoAnnouncement,
|
|
328
336
|
'description': ( localize(
|
|
329
|
-
|
|
337
|
+
3966,
|
|
330
338
|
"Plays a sound / audio cue when the active line has an inline suggestion."
|
|
331
339
|
)),
|
|
332
340
|
'properties': {
|
|
333
341
|
'sound': {
|
|
334
|
-
'description': ( localize(
|
|
342
|
+
'description': ( localize(3967, "Plays a sound when the active line has an inline suggestion.")),
|
|
335
343
|
...soundFeatureBase,
|
|
336
344
|
'default': 'off'
|
|
337
345
|
}
|
|
@@ -340,16 +348,16 @@ const configuration = {
|
|
|
340
348
|
'accessibility.signals.lineHasError': {
|
|
341
349
|
...signalFeatureBase,
|
|
342
350
|
'description': ( localize(
|
|
343
|
-
|
|
351
|
+
3968,
|
|
344
352
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has an error."
|
|
345
353
|
)),
|
|
346
354
|
'properties': {
|
|
347
355
|
'sound': {
|
|
348
|
-
'description': ( localize(
|
|
356
|
+
'description': ( localize(3969, "Plays a sound when the active line has an error.")),
|
|
349
357
|
...soundFeatureBase
|
|
350
358
|
},
|
|
351
359
|
'announcement': {
|
|
352
|
-
'description': ( localize(
|
|
360
|
+
'description': ( localize(3970, "Announces when the active line has an error.")),
|
|
353
361
|
...announcementFeatureBase,
|
|
354
362
|
default: 'off'
|
|
355
363
|
},
|
|
@@ -358,13 +366,13 @@ const configuration = {
|
|
|
358
366
|
'accessibility.signals.lineHasFoldedArea': {
|
|
359
367
|
...signalFeatureBase,
|
|
360
368
|
'description': ( localize(
|
|
361
|
-
|
|
369
|
+
3971,
|
|
362
370
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - the active line has a folded area that can be unfolded."
|
|
363
371
|
)),
|
|
364
372
|
'properties': {
|
|
365
373
|
'sound': {
|
|
366
374
|
'description': ( localize(
|
|
367
|
-
|
|
375
|
+
3972,
|
|
368
376
|
"Plays a sound when the active line has a folded area that can be unfolded."
|
|
369
377
|
)),
|
|
370
378
|
...soundFeatureBase,
|
|
@@ -372,7 +380,7 @@ const configuration = {
|
|
|
372
380
|
},
|
|
373
381
|
'announcement': {
|
|
374
382
|
'description': ( localize(
|
|
375
|
-
|
|
383
|
+
3973,
|
|
376
384
|
"Announces when the active line has a folded area that can be unfolded."
|
|
377
385
|
)),
|
|
378
386
|
...announcementFeatureBase
|
|
@@ -382,16 +390,16 @@ const configuration = {
|
|
|
382
390
|
'accessibility.signals.lineHasWarning': {
|
|
383
391
|
...signalFeatureBase,
|
|
384
392
|
'description': ( localize(
|
|
385
|
-
|
|
393
|
+
3974,
|
|
386
394
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
387
395
|
)),
|
|
388
396
|
'properties': {
|
|
389
397
|
'sound': {
|
|
390
|
-
'description': ( localize(
|
|
398
|
+
'description': ( localize(3975, "Plays a sound when the active line has a warning.")),
|
|
391
399
|
...soundFeatureBase
|
|
392
400
|
},
|
|
393
401
|
'announcement': {
|
|
394
|
-
'description': ( localize(
|
|
402
|
+
'description': ( localize(3976, "Announces when the active line has a warning.")),
|
|
395
403
|
...announcementFeatureBase,
|
|
396
404
|
default: 'off'
|
|
397
405
|
},
|
|
@@ -400,16 +408,16 @@ const configuration = {
|
|
|
400
408
|
'accessibility.signals.positionHasError': {
|
|
401
409
|
...signalFeatureBase,
|
|
402
410
|
'description': ( localize(
|
|
403
|
-
|
|
411
|
+
3977,
|
|
404
412
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
405
413
|
)),
|
|
406
414
|
'properties': {
|
|
407
415
|
'sound': {
|
|
408
|
-
'description': ( localize(
|
|
416
|
+
'description': ( localize(3978, "Plays a sound when the active line has a warning.")),
|
|
409
417
|
...soundFeatureBase
|
|
410
418
|
},
|
|
411
419
|
'announcement': {
|
|
412
|
-
'description': ( localize(
|
|
420
|
+
'description': ( localize(3979, "Announces when the active line has a warning.")),
|
|
413
421
|
...announcementFeatureBase,
|
|
414
422
|
default: 'on'
|
|
415
423
|
},
|
|
@@ -418,16 +426,16 @@ const configuration = {
|
|
|
418
426
|
'accessibility.signals.positionHasWarning': {
|
|
419
427
|
...signalFeatureBase,
|
|
420
428
|
'description': ( localize(
|
|
421
|
-
|
|
429
|
+
3980,
|
|
422
430
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the active line has a warning."
|
|
423
431
|
)),
|
|
424
432
|
'properties': {
|
|
425
433
|
'sound': {
|
|
426
|
-
'description': ( localize(
|
|
434
|
+
'description': ( localize(3981, "Plays a sound when the active line has a warning.")),
|
|
427
435
|
...soundFeatureBase
|
|
428
436
|
},
|
|
429
437
|
'announcement': {
|
|
430
|
-
'description': ( localize(
|
|
438
|
+
'description': ( localize(3982, "Announces when the active line has a warning.")),
|
|
431
439
|
...announcementFeatureBase,
|
|
432
440
|
default: 'on'
|
|
433
441
|
},
|
|
@@ -436,16 +444,16 @@ const configuration = {
|
|
|
436
444
|
'accessibility.signals.onDebugBreak': {
|
|
437
445
|
...signalFeatureBase,
|
|
438
446
|
'description': ( localize(
|
|
439
|
-
|
|
447
|
+
3983,
|
|
440
448
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the debugger stopped on a breakpoint."
|
|
441
449
|
)),
|
|
442
450
|
'properties': {
|
|
443
451
|
'sound': {
|
|
444
|
-
'description': ( localize(
|
|
452
|
+
'description': ( localize(3984, "Plays a sound when the debugger stopped on a breakpoint.")),
|
|
445
453
|
...soundFeatureBase
|
|
446
454
|
},
|
|
447
455
|
'announcement': {
|
|
448
|
-
'description': ( localize(
|
|
456
|
+
'description': ( localize(3985, "Announces when the debugger stopped on a breakpoint.")),
|
|
449
457
|
...announcementFeatureBase
|
|
450
458
|
},
|
|
451
459
|
}
|
|
@@ -453,20 +461,20 @@ const configuration = {
|
|
|
453
461
|
'accessibility.signals.noInlayHints': {
|
|
454
462
|
...signalFeatureBase,
|
|
455
463
|
'description': ( localize(
|
|
456
|
-
|
|
464
|
+
3986,
|
|
457
465
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when trying to read a line with inlay hints that has no inlay hints."
|
|
458
466
|
)),
|
|
459
467
|
'properties': {
|
|
460
468
|
'sound': {
|
|
461
469
|
'description': ( localize(
|
|
462
|
-
|
|
470
|
+
3987,
|
|
463
471
|
"Plays a sound when trying to read a line with inlay hints that has no inlay hints."
|
|
464
472
|
)),
|
|
465
473
|
...soundFeatureBase
|
|
466
474
|
},
|
|
467
475
|
'announcement': {
|
|
468
476
|
'description': ( localize(
|
|
469
|
-
|
|
477
|
+
3988,
|
|
470
478
|
"Announces when trying to read a line with inlay hints that has no inlay hints."
|
|
471
479
|
)),
|
|
472
480
|
...announcementFeatureBase
|
|
@@ -476,16 +484,16 @@ const configuration = {
|
|
|
476
484
|
'accessibility.signals.taskCompleted': {
|
|
477
485
|
...signalFeatureBase,
|
|
478
486
|
'description': ( localize(
|
|
479
|
-
|
|
487
|
+
3989,
|
|
480
488
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task is completed."
|
|
481
489
|
)),
|
|
482
490
|
'properties': {
|
|
483
491
|
'sound': {
|
|
484
|
-
'description': ( localize(
|
|
492
|
+
'description': ( localize(3990, "Plays a sound when a task is completed.")),
|
|
485
493
|
...soundFeatureBase
|
|
486
494
|
},
|
|
487
495
|
'announcement': {
|
|
488
|
-
'description': ( localize(
|
|
496
|
+
'description': ( localize(3991, "Announces when a task is completed.")),
|
|
489
497
|
...announcementFeatureBase
|
|
490
498
|
},
|
|
491
499
|
}
|
|
@@ -493,16 +501,16 @@ const configuration = {
|
|
|
493
501
|
'accessibility.signals.taskFailed': {
|
|
494
502
|
...signalFeatureBase,
|
|
495
503
|
'description': ( localize(
|
|
496
|
-
|
|
504
|
+
3992,
|
|
497
505
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a task fails (non-zero exit code)."
|
|
498
506
|
)),
|
|
499
507
|
'properties': {
|
|
500
508
|
'sound': {
|
|
501
|
-
'description': ( localize(
|
|
509
|
+
'description': ( localize(3993, "Plays a sound when a task fails (non-zero exit code).")),
|
|
502
510
|
...soundFeatureBase
|
|
503
511
|
},
|
|
504
512
|
'announcement': {
|
|
505
|
-
'description': ( localize(
|
|
513
|
+
'description': ( localize(3994, "Announces when a task fails (non-zero exit code).")),
|
|
506
514
|
...announcementFeatureBase
|
|
507
515
|
},
|
|
508
516
|
}
|
|
@@ -510,20 +518,20 @@ const configuration = {
|
|
|
510
518
|
'accessibility.signals.terminalCommandFailed': {
|
|
511
519
|
...signalFeatureBase,
|
|
512
520
|
'description': ( localize(
|
|
513
|
-
|
|
521
|
+
3995,
|
|
514
522
|
"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."
|
|
515
523
|
)),
|
|
516
524
|
'properties': {
|
|
517
525
|
'sound': {
|
|
518
526
|
'description': ( localize(
|
|
519
|
-
|
|
527
|
+
3996,
|
|
520
528
|
"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."
|
|
521
529
|
)),
|
|
522
530
|
...soundFeatureBase
|
|
523
531
|
},
|
|
524
532
|
'announcement': {
|
|
525
533
|
'description': ( localize(
|
|
526
|
-
|
|
534
|
+
3997,
|
|
527
535
|
"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."
|
|
528
536
|
)),
|
|
529
537
|
...announcementFeatureBase
|
|
@@ -533,20 +541,20 @@ const configuration = {
|
|
|
533
541
|
'accessibility.signals.terminalCommandSucceeded': {
|
|
534
542
|
...signalFeatureBase,
|
|
535
543
|
'description': ( localize(
|
|
536
|
-
|
|
544
|
+
3998,
|
|
537
545
|
"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."
|
|
538
546
|
)),
|
|
539
547
|
'properties': {
|
|
540
548
|
'sound': {
|
|
541
549
|
'description': ( localize(
|
|
542
|
-
|
|
550
|
+
3999,
|
|
543
551
|
"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."
|
|
544
552
|
)),
|
|
545
553
|
...soundFeatureBase
|
|
546
554
|
},
|
|
547
555
|
'announcement': {
|
|
548
556
|
'description': ( localize(
|
|
549
|
-
|
|
557
|
+
4000,
|
|
550
558
|
"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."
|
|
551
559
|
)),
|
|
552
560
|
...announcementFeatureBase
|
|
@@ -556,16 +564,16 @@ const configuration = {
|
|
|
556
564
|
'accessibility.signals.terminalQuickFix': {
|
|
557
565
|
...signalFeatureBase,
|
|
558
566
|
'description': ( localize(
|
|
559
|
-
|
|
567
|
+
4001,
|
|
560
568
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when terminal Quick Fixes are available."
|
|
561
569
|
)),
|
|
562
570
|
'properties': {
|
|
563
571
|
'sound': {
|
|
564
|
-
'description': ( localize(
|
|
572
|
+
'description': ( localize(4002, "Plays a sound when terminal Quick Fixes are available.")),
|
|
565
573
|
...soundFeatureBase
|
|
566
574
|
},
|
|
567
575
|
'announcement': {
|
|
568
|
-
'description': ( localize(
|
|
576
|
+
'description': ( localize(4003, "Announces when terminal Quick Fixes are available.")),
|
|
569
577
|
...announcementFeatureBase
|
|
570
578
|
},
|
|
571
579
|
}
|
|
@@ -573,16 +581,16 @@ const configuration = {
|
|
|
573
581
|
'accessibility.signals.terminalBell': {
|
|
574
582
|
...signalFeatureBase,
|
|
575
583
|
'description': ( localize(
|
|
576
|
-
|
|
584
|
+
4004,
|
|
577
585
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when the terminal bell is ringing."
|
|
578
586
|
)),
|
|
579
587
|
'properties': {
|
|
580
588
|
'sound': {
|
|
581
|
-
'description': ( localize(
|
|
589
|
+
'description': ( localize(4005, "Plays a sound when the terminal bell is ringing.")),
|
|
582
590
|
...soundFeatureBase
|
|
583
591
|
},
|
|
584
592
|
'announcement': {
|
|
585
|
-
'description': ( localize(
|
|
593
|
+
'description': ( localize(4006, "Announces when the terminal bell is ringing.")),
|
|
586
594
|
...announcementFeatureBase
|
|
587
595
|
},
|
|
588
596
|
}
|
|
@@ -590,13 +598,13 @@ const configuration = {
|
|
|
590
598
|
'accessibility.signals.diffLineInserted': {
|
|
591
599
|
...defaultNoAnnouncement,
|
|
592
600
|
'description': ( localize(
|
|
593
|
-
|
|
601
|
+
4007,
|
|
594
602
|
"Plays a sound / audio cue when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
595
603
|
)),
|
|
596
604
|
'properties': {
|
|
597
605
|
'sound': {
|
|
598
606
|
'description': ( localize(
|
|
599
|
-
|
|
607
|
+
4008,
|
|
600
608
|
"Plays a sound when the focus moves to an inserted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
601
609
|
)),
|
|
602
610
|
...soundFeatureBase
|
|
@@ -606,13 +614,13 @@ const configuration = {
|
|
|
606
614
|
'accessibility.signals.diffLineModified': {
|
|
607
615
|
...defaultNoAnnouncement,
|
|
608
616
|
'description': ( localize(
|
|
609
|
-
|
|
617
|
+
4009,
|
|
610
618
|
"Plays a sound / audio cue when the focus moves to an modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
611
619
|
)),
|
|
612
620
|
'properties': {
|
|
613
621
|
'sound': {
|
|
614
622
|
'description': ( localize(
|
|
615
|
-
|
|
623
|
+
4010,
|
|
616
624
|
"Plays a sound when the focus moves to a modified line in Accessible Diff Viewer mode or to the next/previous change."
|
|
617
625
|
)),
|
|
618
626
|
...soundFeatureBase
|
|
@@ -622,13 +630,13 @@ const configuration = {
|
|
|
622
630
|
'accessibility.signals.diffLineDeleted': {
|
|
623
631
|
...defaultNoAnnouncement,
|
|
624
632
|
'description': ( localize(
|
|
625
|
-
|
|
633
|
+
4011,
|
|
626
634
|
"Plays a sound / audio cue when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
627
635
|
)),
|
|
628
636
|
'properties': {
|
|
629
637
|
'sound': {
|
|
630
638
|
'description': ( localize(
|
|
631
|
-
|
|
639
|
+
4012,
|
|
632
640
|
"Plays a sound when the focus moves to an deleted line in Accessible Diff Viewer mode or to the next/previous change."
|
|
633
641
|
)),
|
|
634
642
|
...soundFeatureBase
|
|
@@ -638,20 +646,20 @@ const configuration = {
|
|
|
638
646
|
'accessibility.signals.notebookCellCompleted': {
|
|
639
647
|
...signalFeatureBase,
|
|
640
648
|
'description': ( localize(
|
|
641
|
-
|
|
649
|
+
4013,
|
|
642
650
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution is successfully completed."
|
|
643
651
|
)),
|
|
644
652
|
'properties': {
|
|
645
653
|
'sound': {
|
|
646
654
|
'description': ( localize(
|
|
647
|
-
|
|
655
|
+
4014,
|
|
648
656
|
"Plays a sound when a notebook cell execution is successfully completed."
|
|
649
657
|
)),
|
|
650
658
|
...soundFeatureBase
|
|
651
659
|
},
|
|
652
660
|
'announcement': {
|
|
653
661
|
'description': ( localize(
|
|
654
|
-
|
|
662
|
+
4015,
|
|
655
663
|
"Announces when a notebook cell execution is successfully completed."
|
|
656
664
|
)),
|
|
657
665
|
...announcementFeatureBase
|
|
@@ -661,16 +669,16 @@ const configuration = {
|
|
|
661
669
|
'accessibility.signals.notebookCellFailed': {
|
|
662
670
|
...signalFeatureBase,
|
|
663
671
|
'description': ( localize(
|
|
664
|
-
|
|
672
|
+
4016,
|
|
665
673
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a notebook cell execution fails."
|
|
666
674
|
)),
|
|
667
675
|
'properties': {
|
|
668
676
|
'sound': {
|
|
669
|
-
'description': ( localize(
|
|
677
|
+
'description': ( localize(4017, "Plays a sound when a notebook cell execution fails.")),
|
|
670
678
|
...soundFeatureBase
|
|
671
679
|
},
|
|
672
680
|
'announcement': {
|
|
673
|
-
'description': ( localize(
|
|
681
|
+
'description': ( localize(4018, "Announces when a notebook cell execution fails.")),
|
|
674
682
|
...announcementFeatureBase
|
|
675
683
|
},
|
|
676
684
|
}
|
|
@@ -678,16 +686,16 @@ const configuration = {
|
|
|
678
686
|
'accessibility.signals.progress': {
|
|
679
687
|
...signalFeatureBase,
|
|
680
688
|
'description': ( localize(
|
|
681
|
-
|
|
689
|
+
4019,
|
|
682
690
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - on loop while progress is occurring."
|
|
683
691
|
)),
|
|
684
692
|
'properties': {
|
|
685
693
|
'sound': {
|
|
686
|
-
'description': ( localize(
|
|
694
|
+
'description': ( localize(4020, "Plays a sound on loop while progress is occurring.")),
|
|
687
695
|
...soundFeatureBase
|
|
688
696
|
},
|
|
689
697
|
'announcement': {
|
|
690
|
-
'description': ( localize(
|
|
698
|
+
'description': ( localize(4021, "Alerts on loop while progress is occurring.")),
|
|
691
699
|
...announcementFeatureBase
|
|
692
700
|
},
|
|
693
701
|
},
|
|
@@ -695,56 +703,56 @@ const configuration = {
|
|
|
695
703
|
'accessibility.signals.chatRequestSent': {
|
|
696
704
|
...signalFeatureBase,
|
|
697
705
|
'description': ( localize(
|
|
698
|
-
|
|
706
|
+
4022,
|
|
699
707
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a chat request is made."
|
|
700
708
|
)),
|
|
701
709
|
'properties': {
|
|
702
710
|
'sound': {
|
|
703
|
-
'description': ( localize(
|
|
711
|
+
'description': ( localize(4023, "Plays a sound when a chat request is made.")),
|
|
704
712
|
...soundFeatureBase
|
|
705
713
|
},
|
|
706
714
|
'announcement': {
|
|
707
|
-
'description': ( localize(
|
|
715
|
+
'description': ( localize(4024, "Announces when a chat request is made.")),
|
|
708
716
|
...announcementFeatureBase
|
|
709
717
|
},
|
|
710
718
|
}
|
|
711
719
|
},
|
|
712
720
|
'accessibility.signals.chatResponseReceived': {
|
|
713
721
|
...defaultNoAnnouncement,
|
|
714
|
-
'description': ( localize(
|
|
722
|
+
'description': ( localize(4025, "Plays a sound / audio cue when the response has been received.")),
|
|
715
723
|
'properties': {
|
|
716
724
|
'sound': {
|
|
717
|
-
'description': ( localize(
|
|
725
|
+
'description': ( localize(4026, "Plays a sound on when the response has been received.")),
|
|
718
726
|
...soundFeatureBase
|
|
719
727
|
},
|
|
720
728
|
}
|
|
721
729
|
},
|
|
722
730
|
'accessibility.signals.codeActionTriggered': {
|
|
723
731
|
...defaultNoAnnouncement,
|
|
724
|
-
'description': ( localize(
|
|
732
|
+
'description': ( localize(4027, "Plays a sound / audio cue - when a code action has been triggered.")),
|
|
725
733
|
'properties': {
|
|
726
734
|
'sound': {
|
|
727
|
-
'description': ( localize(
|
|
735
|
+
'description': ( localize(4028, "Plays a sound when a code action has been triggered.")),
|
|
728
736
|
...soundFeatureBase
|
|
729
737
|
}
|
|
730
738
|
}
|
|
731
739
|
},
|
|
732
740
|
'accessibility.signals.codeActionApplied': {
|
|
733
741
|
...defaultNoAnnouncement,
|
|
734
|
-
'description': ( localize(
|
|
742
|
+
'description': ( localize(4029, "Plays a sound / audio cue when the code action has been applied.")),
|
|
735
743
|
'properties': {
|
|
736
744
|
'sound': {
|
|
737
|
-
'description': ( localize(
|
|
745
|
+
'description': ( localize(4030, "Plays a sound when the code action has been applied.")),
|
|
738
746
|
...soundFeatureBase
|
|
739
747
|
},
|
|
740
748
|
}
|
|
741
749
|
},
|
|
742
750
|
'accessibility.signals.voiceRecordingStarted': {
|
|
743
751
|
...defaultNoAnnouncement,
|
|
744
|
-
'description': ( localize(
|
|
752
|
+
'description': ( localize(4031, "Plays a sound / audio cue when the voice recording has started.")),
|
|
745
753
|
'properties': {
|
|
746
754
|
'sound': {
|
|
747
|
-
'description': ( localize(
|
|
755
|
+
'description': ( localize(4032, "Plays a sound when the voice recording has started.")),
|
|
748
756
|
...soundFeatureBase,
|
|
749
757
|
},
|
|
750
758
|
},
|
|
@@ -754,10 +762,10 @@ const configuration = {
|
|
|
754
762
|
},
|
|
755
763
|
'accessibility.signals.voiceRecordingStopped': {
|
|
756
764
|
...defaultNoAnnouncement,
|
|
757
|
-
'description': ( localize(
|
|
765
|
+
'description': ( localize(4033, "Plays a sound / audio cue when the voice recording has stopped.")),
|
|
758
766
|
'properties': {
|
|
759
767
|
'sound': {
|
|
760
|
-
'description': ( localize(
|
|
768
|
+
'description': ( localize(4034, "Plays a sound when the voice recording has stopped.")),
|
|
761
769
|
...soundFeatureBase,
|
|
762
770
|
default: 'off'
|
|
763
771
|
},
|
|
@@ -766,16 +774,16 @@ const configuration = {
|
|
|
766
774
|
'accessibility.signals.clear': {
|
|
767
775
|
...signalFeatureBase,
|
|
768
776
|
'description': ( localize(
|
|
769
|
-
|
|
777
|
+
4035,
|
|
770
778
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a feature is cleared (for example, the terminal, Debug Console, or Output channel)."
|
|
771
779
|
)),
|
|
772
780
|
'properties': {
|
|
773
781
|
'sound': {
|
|
774
|
-
'description': ( localize(
|
|
782
|
+
'description': ( localize(4036, "Plays a sound when a feature is cleared.")),
|
|
775
783
|
...soundFeatureBase
|
|
776
784
|
},
|
|
777
785
|
'announcement': {
|
|
778
|
-
'description': ( localize(
|
|
786
|
+
'description': ( localize(4037, "Announces when a feature is cleared.")),
|
|
779
787
|
...announcementFeatureBase
|
|
780
788
|
},
|
|
781
789
|
},
|
|
@@ -785,30 +793,30 @@ const configuration = {
|
|
|
785
793
|
'tags': ['accessibility'],
|
|
786
794
|
additionalProperties: false,
|
|
787
795
|
'markdownDescription': ( localize(
|
|
788
|
-
|
|
796
|
+
4038,
|
|
789
797
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file is saved."
|
|
790
798
|
)),
|
|
791
799
|
'properties': {
|
|
792
800
|
'sound': {
|
|
793
|
-
'description': ( localize(
|
|
801
|
+
'description': ( localize(4039, "Plays a sound when a file is saved.")),
|
|
794
802
|
'type': 'string',
|
|
795
803
|
'enum': ['userGesture', 'always', 'never'],
|
|
796
804
|
'default': 'never',
|
|
797
805
|
'enumDescriptions': [
|
|
798
|
-
( localize(
|
|
799
|
-
( localize(
|
|
800
|
-
( localize(
|
|
806
|
+
( localize(4040, "Plays the sound when a user explicitly saves a file.")),
|
|
807
|
+
( localize(4041, "Plays the sound whenever a file is saved, including auto save.")),
|
|
808
|
+
( localize(4042, "Never plays the sound."))
|
|
801
809
|
],
|
|
802
810
|
},
|
|
803
811
|
'announcement': {
|
|
804
|
-
'description': ( localize(
|
|
812
|
+
'description': ( localize(4043, "Announces when a file is saved.")),
|
|
805
813
|
'type': 'string',
|
|
806
814
|
'enum': ['userGesture', 'always', 'never'],
|
|
807
815
|
'default': 'never',
|
|
808
816
|
'enumDescriptions': [
|
|
809
|
-
( localize(
|
|
810
|
-
( localize(
|
|
811
|
-
( localize(
|
|
817
|
+
( localize(4044, "Announces when a user explicitly saves a file.")),
|
|
818
|
+
( localize(4045, "Announces whenever a file is saved, including auto save.")),
|
|
819
|
+
( localize(4046, "Never plays the announcement."))
|
|
812
820
|
],
|
|
813
821
|
},
|
|
814
822
|
},
|
|
@@ -822,36 +830,36 @@ const configuration = {
|
|
|
822
830
|
'tags': ['accessibility'],
|
|
823
831
|
additionalProperties: false,
|
|
824
832
|
'markdownDescription': ( localize(
|
|
825
|
-
|
|
833
|
+
4047,
|
|
826
834
|
"Plays a signal - sound (audio cue) and/or announcement (alert) - when a file or notebook is formatted."
|
|
827
835
|
)),
|
|
828
836
|
'properties': {
|
|
829
837
|
'sound': {
|
|
830
|
-
'description': ( localize(
|
|
838
|
+
'description': ( localize(4048, "Plays a sound when a file or notebook is formatted.")),
|
|
831
839
|
'type': 'string',
|
|
832
840
|
'enum': ['userGesture', 'always', 'never'],
|
|
833
841
|
'default': 'never',
|
|
834
842
|
'enumDescriptions': [
|
|
835
|
-
( localize(
|
|
843
|
+
( localize(4049, "Plays the sound when a user explicitly formats a file.")),
|
|
836
844
|
( localize(
|
|
837
|
-
|
|
845
|
+
4050,
|
|
838
846
|
"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."
|
|
839
847
|
)),
|
|
840
|
-
( localize(
|
|
848
|
+
( localize(4051, "Never plays the sound."))
|
|
841
849
|
],
|
|
842
850
|
},
|
|
843
851
|
'announcement': {
|
|
844
|
-
'description': ( localize(
|
|
852
|
+
'description': ( localize(4052, "Announces when a file or notebook is formatted.")),
|
|
845
853
|
'type': 'string',
|
|
846
854
|
'enum': ['userGesture', 'always', 'never'],
|
|
847
855
|
'default': 'never',
|
|
848
856
|
'enumDescriptions': [
|
|
849
|
-
( localize(
|
|
857
|
+
( localize(4053, "Announces when a user explicitly formats a file.")),
|
|
850
858
|
( localize(
|
|
851
|
-
|
|
859
|
+
4054,
|
|
852
860
|
"Announces whenever a file is formatted, including if it is set to format on save, type, or, paste, or run of a cell."
|
|
853
861
|
)),
|
|
854
|
-
( localize(
|
|
862
|
+
( localize(4055, "Never announces."))
|
|
855
863
|
],
|
|
856
864
|
},
|
|
857
865
|
},
|
|
@@ -862,13 +870,13 @@ const configuration = {
|
|
|
862
870
|
},
|
|
863
871
|
'accessibility.underlineLinks': {
|
|
864
872
|
'type': 'boolean',
|
|
865
|
-
'description': ( localize(
|
|
873
|
+
'description': ( localize(4056, "Controls whether links should be underlined in the workbench.")),
|
|
866
874
|
'default': false,
|
|
867
875
|
},
|
|
868
876
|
'accessibility.debugWatchVariableAnnouncements': {
|
|
869
877
|
'type': 'boolean',
|
|
870
878
|
'description': ( localize(
|
|
871
|
-
|
|
879
|
+
4057,
|
|
872
880
|
"Controls whether variable changes should be announced in the debug watch view."
|
|
873
881
|
)),
|
|
874
882
|
'default': true,
|
|
@@ -876,7 +884,7 @@ const configuration = {
|
|
|
876
884
|
'accessibility.replEditor.readLastExecutionOutput': {
|
|
877
885
|
'type': 'boolean',
|
|
878
886
|
'description': ( localize(
|
|
879
|
-
|
|
887
|
+
4058,
|
|
880
888
|
"Controls whether the output from an execution in the native REPL will be announced."
|
|
881
889
|
)),
|
|
882
890
|
'default': true,
|
|
@@ -886,7 +894,7 @@ const configuration = {
|
|
|
886
894
|
enum: ['none', 'input', 'lastExecution'],
|
|
887
895
|
default: 'input',
|
|
888
896
|
description: ( localize(
|
|
889
|
-
|
|
897
|
+
4059,
|
|
890
898
|
"Control whether focus should automatically be sent to the REPL when code is executed."
|
|
891
899
|
)),
|
|
892
900
|
}
|
|
@@ -900,7 +908,7 @@ function registerAccessibilityConfiguration() {
|
|
|
900
908
|
properties: {
|
|
901
909
|
[AccessibilityWorkbenchSettingId.DimUnfocusedEnabled]: {
|
|
902
910
|
description: ( localize(
|
|
903
|
-
|
|
911
|
+
4060,
|
|
904
912
|
'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.'
|
|
905
913
|
)),
|
|
906
914
|
type: 'boolean',
|
|
@@ -910,7 +918,7 @@ function registerAccessibilityConfiguration() {
|
|
|
910
918
|
},
|
|
911
919
|
[AccessibilityWorkbenchSettingId.DimUnfocusedOpacity]: {
|
|
912
920
|
markdownDescription: ( localize(
|
|
913
|
-
|
|
921
|
+
4061,
|
|
914
922
|
'The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when {0} is enabled.',
|
|
915
923
|
`\`#${AccessibilityWorkbenchSettingId.DimUnfocusedEnabled}#\``
|
|
916
924
|
)),
|
|
@@ -922,7 +930,7 @@ function registerAccessibilityConfiguration() {
|
|
|
922
930
|
scope: ConfigurationScope.APPLICATION,
|
|
923
931
|
},
|
|
924
932
|
[AccessibilityWorkbenchSettingId.HideAccessibleView]: {
|
|
925
|
-
description: ( localize(
|
|
933
|
+
description: ( localize(4062, "Controls whether the Accessible View is hidden.")),
|
|
926
934
|
type: 'boolean',
|
|
927
935
|
default: false,
|
|
928
936
|
tags: ['accessibility']
|
|
@@ -953,7 +961,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
953
961
|
properties: {
|
|
954
962
|
[AccessibilityVoiceSettingId.SpeechTimeout]: {
|
|
955
963
|
'markdownDescription': ( localize(
|
|
956
|
-
|
|
964
|
+
4063,
|
|
957
965
|
"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."
|
|
958
966
|
)),
|
|
959
967
|
'type': 'number',
|
|
@@ -961,9 +969,15 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
961
969
|
'minimum': 0,
|
|
962
970
|
'tags': ['accessibility']
|
|
963
971
|
},
|
|
972
|
+
[AccessibilityVoiceSettingId.IgnoreCodeBlocks]: {
|
|
973
|
+
'markdownDescription': ( localize(4064, "Whether to ignore code snippets in text-to-speech synthesis.")),
|
|
974
|
+
'type': 'boolean',
|
|
975
|
+
'default': false,
|
|
976
|
+
'tags': ['accessibility']
|
|
977
|
+
},
|
|
964
978
|
[AccessibilityVoiceSettingId.SpeechLanguage]: {
|
|
965
979
|
'markdownDescription': ( localize(
|
|
966
|
-
|
|
980
|
+
4065,
|
|
967
981
|
"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."
|
|
968
982
|
)),
|
|
969
983
|
'type': 'string',
|
|
@@ -975,23 +989,19 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
975
989
|
},
|
|
976
990
|
[AccessibilityVoiceSettingId.AutoSynthesize]: {
|
|
977
991
|
'type': 'string',
|
|
978
|
-
'enum': ['on', 'off'
|
|
992
|
+
'enum': ['on', 'off'],
|
|
979
993
|
'enumDescriptions': [
|
|
980
994
|
( localize(
|
|
981
|
-
|
|
995
|
+
4066,
|
|
982
996
|
"Enable the feature. When a screen reader is enabled, note that this will disable aria updates."
|
|
983
997
|
)),
|
|
984
|
-
( localize(
|
|
985
|
-
( localize(
|
|
986
|
-
4020,
|
|
987
|
-
"When a screen reader is detected, disable the feature. Otherwise, enable the feature."
|
|
988
|
-
))
|
|
998
|
+
( localize(4067, "Disable the feature.")),
|
|
989
999
|
],
|
|
990
1000
|
'markdownDescription': ( localize(
|
|
991
|
-
|
|
1001
|
+
4068,
|
|
992
1002
|
"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."
|
|
993
1003
|
)),
|
|
994
|
-
'default': this.productService.quality !== 'stable' ? '
|
|
1004
|
+
'default': this.productService.quality !== 'stable' ? 'on' : 'off',
|
|
995
1005
|
'tags': ['accessibility']
|
|
996
1006
|
}
|
|
997
1007
|
}
|
|
@@ -1000,7 +1010,7 @@ let DynamicSpeechAccessibilityConfiguration = class DynamicSpeechAccessibilityCo
|
|
|
1000
1010
|
getLanguages() {
|
|
1001
1011
|
return {
|
|
1002
1012
|
['auto']: {
|
|
1003
|
-
name: ( localize(
|
|
1013
|
+
name: ( localize(4069, "Auto (Use Display Language)"))
|
|
1004
1014
|
},
|
|
1005
1015
|
...SPEECH_LANGUAGES
|
|
1006
1016
|
};
|