@codingame/monaco-vscode-api 20.1.0 → 20.2.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/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/browser.d.ts +2 -0
- package/vscode/src/vs/base/browser/canIUse.d.ts +3 -0
- package/vscode/src/vs/base/browser/contextmenu.d.ts +14 -0
- package/vscode/src/vs/base/browser/cssValue.d.ts +8 -0
- package/vscode/src/vs/base/browser/dnd.d.ts +21 -0
- package/vscode/src/vs/base/browser/dom.d.ts +178 -0
- package/vscode/src/vs/base/browser/domSanitize.d.ts +26 -0
- package/vscode/src/vs/base/browser/domStylesheets.d.ts +3 -0
- package/vscode/src/vs/base/browser/dompurify/dompurify.d.ts +19 -0
- package/vscode/src/vs/base/browser/fonts.d.ts +8 -0
- package/vscode/src/vs/base/browser/iframe.d.ts +10 -0
- package/vscode/src/vs/base/browser/keyboardEvent.d.ts +3 -0
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +18 -0
- package/vscode/src/vs/base/browser/performance.d.ts +22 -0
- package/vscode/src/vs/base/browser/pixelRatio.d.ts +7 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +29 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +5 -0
- package/vscode/src/vs/base/browser/ui/aria/aria.css +6 -1
- package/vscode/src/vs/base/browser/ui/aria/aria.d.ts +6 -0
- package/vscode/src/vs/base/browser/ui/button/button.css +36 -1
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +9 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +11 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css +8 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css +6 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.d.ts +14 -0
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +6 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.css +12 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +11 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css +20 -0
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.d.ts +27 -0
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +258 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate.d.ts +37 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.d.ts +10 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +54 -0
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +34 -6
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +27 -2
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +10 -0
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/list/list.css +21 -0
- package/vscode/src/vs/base/browser/ui/list/list.d.ts +9 -0
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +17 -3
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +26 -0
- package/vscode/src/vs/base/browser/ui/list/rangeMap.d.ts +29 -0
- package/vscode/src/vs/base/browser/ui/list/rowCache.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css +5 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css +29 -1
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +33 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.css +31 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.d.ts +125 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/abstractScrollbar.d.ts +6 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +16 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +22 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElementOptions.d.ts +98 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarArrow.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarState.d.ts +43 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +11 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +29 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +7 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css +16 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.d.ts +289 -0
- package/vscode/src/vs/base/browser/ui/table/table.css +12 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +14 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +6 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +19 -0
- package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.d.ts +18 -0
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css +38 -3
- package/vscode/src/vs/base/browser/ui/tree/objectTree.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/tree.d.ts +43 -0
- package/vscode/src/vs/base/common/actions.d.ts +3 -0
- package/vscode/src/vs/base/common/arrays.d.ts +193 -1
- package/vscode/src/vs/base/common/arraysFind.d.ts +46 -0
- package/vscode/src/vs/base/common/assert.d.ts +28 -0
- package/vscode/src/vs/base/common/async.d.ts +361 -0
- package/vscode/src/vs/base/common/buffer.d.ts +31 -0
- package/vscode/src/vs/base/common/cache.d.ts +11 -0
- package/vscode/src/vs/base/common/cancellation.d.ts +11 -0
- package/vscode/src/vs/base/common/charCode.d.ts +319 -186
- package/vscode/src/vs/base/common/codicons.d.ts +14 -0
- package/vscode/src/vs/base/common/codiconsUtil.d.ts +3 -0
- package/vscode/src/vs/base/common/collections.d.ts +19 -0
- package/vscode/src/vs/base/common/color.d.ts +115 -0
- package/vscode/src/vs/base/common/comparers.d.ts +10 -0
- package/vscode/src/vs/base/common/dataTransfer.d.ts +38 -0
- package/vscode/src/vs/base/common/date.d.ts +15 -0
- package/vscode/src/vs/base/common/diff/diff.d.ts +90 -0
- package/vscode/src/vs/base/common/diff/diffChange.d.ts +29 -0
- package/vscode/src/vs/base/common/equals.d.ts +26 -0
- package/vscode/src/vs/base/common/errorMessage.d.ts +6 -0
- package/vscode/src/vs/base/common/errors.d.ts +26 -0
- package/vscode/src/vs/base/common/event.d.ts +356 -0
- package/vscode/src/vs/base/common/extpath.d.ts +34 -0
- package/vscode/src/vs/base/common/filters.d.ts +22 -0
- package/vscode/src/vs/base/common/functional.d.ts +3 -0
- package/vscode/src/vs/base/common/glob.d.ts +39 -0
- package/vscode/src/vs/base/common/hash.d.ts +12 -0
- package/vscode/src/vs/base/common/history.d.ts +7 -0
- package/vscode/src/vs/base/common/hotReload.d.ts +6 -0
- package/vscode/src/vs/base/common/htmlContent.d.ts +3 -0
- package/vscode/src/vs/base/common/iconLabels.d.ts +9 -0
- package/vscode/src/vs/base/common/ime.d.ts +6 -0
- package/vscode/src/vs/base/common/iterator.d.ts +7 -0
- package/vscode/src/vs/base/common/json.d.ts +98 -0
- package/vscode/src/vs/base/common/jsonSchema.d.ts +5 -0
- package/vscode/src/vs/base/common/keyCodes.d.ts +95 -18
- package/vscode/src/vs/base/common/keybindingLabels.d.ts +13 -0
- package/vscode/src/vs/base/common/keybindings.d.ts +54 -0
- package/vscode/src/vs/base/common/labels.d.ts +41 -0
- package/vscode/src/vs/base/common/lazy.d.ts +12 -0
- package/vscode/src/vs/base/common/lifecycle.d.ts +126 -0
- package/vscode/src/vs/base/common/map.d.ts +33 -0
- package/vscode/src/vs/base/common/marked/marked.d.ts +137 -0
- package/vscode/src/vs/base/common/naturalLanguage/korean.d.ts +8 -0
- package/vscode/src/vs/base/common/network.d.ts +85 -0
- package/vscode/src/vs/base/common/numbers.d.ts +45 -0
- package/vscode/src/vs/base/common/oauth.d.ts +369 -0
- package/vscode/src/vs/base/common/objects.d.ts +19 -0
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +128 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +11 -0
- package/vscode/src/vs/base/common/observableInternal/debugName.d.ts +16 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/reducer.d.ts +21 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/utils.d.ts +11 -0
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/observables/constObservable.d.ts +3 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +25 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +3 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.d.ts +5 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +10 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +27 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +7 -0
- package/vscode/src/vs/base/common/observableInternal/transaction.d.ts +9 -0
- package/vscode/src/vs/base/common/observableInternal/utils/promise.d.ts +47 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utils.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.d.ts +3 -0
- package/vscode/src/vs/base/common/performance.d.ts +3 -0
- package/vscode/src/vs/base/common/platform.d.ts +37 -0
- package/vscode/src/vs/base/common/prefixTree.d.ts +23 -0
- package/vscode/src/vs/base/common/process.d.ts +23 -0
- package/vscode/src/vs/base/common/range.d.ts +4 -0
- package/vscode/src/vs/base/common/resources.d.ts +115 -0
- package/vscode/src/vs/base/common/scrollable.d.ts +17 -0
- package/vscode/src/vs/base/common/severity.d.ts +4 -0
- package/vscode/src/vs/base/common/skipList.d.ts +4 -0
- package/vscode/src/vs/base/common/sseParser.d.ts +51 -0
- package/vscode/src/vs/base/common/stream.d.ts +148 -0
- package/vscode/src/vs/base/common/strings.d.ts +134 -0
- package/vscode/src/vs/base/common/symbols.d.ts +3 -0
- package/vscode/src/vs/base/common/ternarySearchTree.d.ts +6 -0
- package/vscode/src/vs/base/common/types.d.ts +135 -0
- package/vscode/src/vs/base/common/uint.d.ts +24 -3
- package/vscode/src/vs/base/common/uri.d.ts +131 -0
- package/vscode/src/vs/base/common/worker/webWorker.d.ts +6 -0
- package/vscode/src/vs/base/parts/sandbox/common/electronTypes.d.ts +179 -0
- package/vscode/src/vs/base/parts/sandbox/common/sandboxTypes.d.ts +39 -0
- package/vscode/src/vs/base/parts/storage/common/storage.d.ts +11 -0
- package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +20 -0
- package/vscode/src/vs/editor/browser/config/fontMeasurements.d.ts +15 -0
- package/vscode/src/vs/editor/browser/config/migrateOptions.d.ts +3 -0
- package/vscode/src/vs/editor/browser/config/tabFocus.d.ts +6 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.d.ts +9 -0
- package/vscode/src/vs/editor/browser/controller/editContext/clipboardUtils.d.ts +5 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/editContextFactory.d.ts +3 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +11 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderUtils.d.ts +18 -0
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +5 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +19 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +7 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.d.ts +8 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.d.ts +13 -1
- package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +9 -0
- package/vscode/src/vs/editor/browser/controller/mouseTarget.d.ts +6 -0
- package/vscode/src/vs/editor/browser/controller/pointerHandler.d.ts +3 -0
- package/vscode/src/vs/editor/browser/coreCommands.d.ts +24 -0
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +439 -0
- package/vscode/src/vs/editor/browser/editorDom.d.ts +39 -0
- package/vscode/src/vs/editor/browser/editorExtensions.d.ts +51 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +65 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +23 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasShelfAllocator.d.ts +5 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.d.ts +10 -0
- package/vscode/src/vs/editor/browser/gpu/bufferDirtyTracker.d.ts +20 -0
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +6 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +3 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +12 -0
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +5 -0
- package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +3 -0
- package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +33 -0
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +47 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.d.ts +20 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +10 -0
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +33 -0
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +22 -0
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +6 -0
- package/vscode/src/vs/editor/browser/services/codeEditorService.service.d.ts +3 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +32 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +4 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +16 -0
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +17 -1
- package/vscode/src/vs/editor/browser/view/viewController.d.ts +3 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +19 -0
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +7 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.d.ts +9 -0
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +16 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.d.ts +20 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +10 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +31 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharRendererFactory.d.ts +16 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharSheet.d.ts +3 -3
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapPreBaked.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/rulersGpu/rulersGpu.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css +14 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css +19 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/rangeUtil.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +34 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.d.ts +19 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewZones/viewZones.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorContributions.d.ts +12 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +32 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +27 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +20 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.d.ts +6 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.d.ts +7 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +10 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +3 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.d.ts +3 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.d.ts +6 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +92 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +6 -0
- package/vscode/src/vs/editor/common/commands/surroundSelectionCommand.d.ts +3 -0
- package/vscode/src/vs/editor/common/commands/trimTrailingWhitespaceCommand.d.ts +3 -0
- package/vscode/src/vs/editor/common/config/editorConfiguration.d.ts +41 -0
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +862 -0
- package/vscode/src/vs/editor/common/config/fontInfo.d.ts +34 -0
- package/vscode/src/vs/editor/common/coordinatesConverter.d.ts +7 -0
- package/vscode/src/vs/editor/common/core/characterClassifier.d.ts +9 -0
- package/vscode/src/vs/editor/common/core/cursorColumns.d.ts +44 -0
- package/vscode/src/vs/editor/common/core/editOperation.d.ts +14 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/edits/edit.d.ts +55 -1
- package/vscode/src/vs/editor/common/core/edits/lengthEdit.d.ts +6 -0
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +9 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +37 -0
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/misc/rgba.d.ts +16 -0
- package/vscode/src/vs/editor/common/core/position.d.ts +67 -0
- package/vscode/src/vs/editor/common/core/range.d.ts +140 -0
- package/vscode/src/vs/editor/common/core/ranges/columnRange.d.ts +8 -1
- package/vscode/src/vs/editor/common/core/ranges/lineRange.d.ts +57 -1
- package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +30 -0
- package/vscode/src/vs/editor/common/core/ranges/rangeSingleLine.d.ts +7 -1
- package/vscode/src/vs/editor/common/core/selection.d.ts +83 -0
- package/vscode/src/vs/editor/common/core/stringBuilder.d.ts +6 -0
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/text/textLength.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/wordHelper.d.ts +12 -0
- package/vscode/src/vs/editor/common/cursor/cursorAtomicMoveOperations.d.ts +15 -0
- package/vscode/src/vs/editor/common/cursor/cursorCollection.d.ts +7 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +15 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveOperations.d.ts +7 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.d.ts +14 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeOperations.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursor/oneCursor.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursorCommon.d.ts +25 -0
- package/vscode/src/vs/editor/common/cursorEvents.d.ts +63 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts +23 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.d.ts +4 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.d.ts +3 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +4 -0
- package/vscode/src/vs/editor/common/diff/legacyLinesDiffComputer.d.ts +16 -0
- package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +24 -1
- package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +41 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +218 -0
- package/vscode/src/vs/editor/common/editorContextKeys.d.ts +14 -0
- package/vscode/src/vs/editor/common/editorFeatures.d.ts +7 -0
- package/vscode/src/vs/editor/common/encodedTokenAttributes.d.ts +38 -0
- package/vscode/src/vs/editor/common/inputMode.d.ts +3 -0
- package/vscode/src/vs/editor/common/languageSelector.d.ts +6 -0
- package/vscode/src/vs/editor/common/languages/autoIndent.d.ts +16 -0
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/language.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/language.service.d.ts +77 -0
- package/vscode/src/vs/editor/common/languages/languageConfiguration.d.ts +195 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.d.ts +9 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.service.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/linkComputer.d.ts +5 -0
- package/vscode/src/vs/editor/common/languages/supports/electricCharacter.d.ts +4 -0
- package/vscode/src/vs/editor/common/languages/supports/indentationLineProcessor.d.ts +27 -0
- package/vscode/src/vs/editor/common/languages/supports/languageBracketsConfiguration.d.ts +22 -1
- package/vscode/src/vs/editor/common/languages/supports/richEditBrackets.d.ts +80 -0
- package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +12 -0
- package/vscode/src/vs/editor/common/languages.d.ts +955 -1
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsImpl.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/ast.d.ts +55 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper.d.ts +10 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/bracketPairsTree.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/brackets.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/concat23Trees.d.ts +6 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length.d.ts +16 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/nodeReader.d.ts +8 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/parser.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/smallImmutableSet.d.ts +7 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/tokenizer.d.ts +23 -1
- package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +13 -0
- package/vscode/src/vs/editor/common/model/fixedArray.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/indentationGuesser.d.ts +9 -0
- package/vscode/src/vs/editor/common/model/intervalTree.d.ts +13 -0
- package/vscode/src/vs/editor/common/model/mirrorTextModel.d.ts +18 -0
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.d.ts +29 -0
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.d.ts +7 -0
- package/vscode/src/vs/editor/common/model/prefixSumComputer.d.ts +34 -0
- package/vscode/src/vs/editor/common/model/textModel.d.ts +17 -0
- package/vscode/src/vs/editor/common/model/textModelSearch.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +19 -0
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +8 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.d.ts +22 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTokenizationImpl.d.ts +10 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.d.ts +4 -1
- package/vscode/src/vs/editor/common/model/utils.d.ts +5 -0
- package/vscode/src/vs/editor/common/model.d.ts +440 -0
- package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +52 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +19 -0
- package/vscode/src/vs/editor/common/services/findSectionHeaders.d.ts +19 -0
- package/vscode/src/vs/editor/common/services/languagesAssociations.d.ts +23 -0
- package/vscode/src/vs/editor/common/services/modelService.d.ts +6 -0
- package/vscode/src/vs/editor/common/services/resolverService.service.d.ts +10 -0
- package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +3 -0
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.d.ts +11 -0
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +35 -0
- package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.d.ts +10 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +377 -18
- package/vscode/src/vs/editor/common/textModelBracketPairs.d.ts +56 -3
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +4 -0
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +210 -0
- package/vscode/src/vs/editor/common/textModelGuides.d.ts +28 -1
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +53 -0
- package/vscode/src/vs/editor/common/tokens/contiguousMultilineTokens.d.ts +24 -0
- package/vscode/src/vs/editor/common/tokens/contiguousTokensStore.d.ts +3 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +20 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +9 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +3 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +11 -0
- package/vscode/src/vs/editor/common/viewEvents.d.ts +85 -2
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.d.ts +3 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +26 -0
- package/vscode/src/vs/editor/common/viewLayout/linePart.d.ts +8 -1
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +130 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLinesViewportData.d.ts +21 -0
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.d.ts +3 -0
- package/vscode/src/vs/editor/common/viewModel/overviewZoneManager.d.ts +6 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +12 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +15 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewModel.d.ts +104 -1
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +5 -0
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +5 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +16 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css +15 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +40 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/comment/browser/lineCommentCommand.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css +9 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/edit.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +8 -0
- package/vscode/src/vs/editor/contrib/editorState/browser/editorState.d.ts +8 -0
- package/vscode/src/vs/editor/contrib/find/browser/findDecorations.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +5 -0
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +62 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/find/browser/replacePattern.d.ts +18 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css +10 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +6 -0
- package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.d.ts +67 -0
- package/vscode/src/vs/editor/contrib/folding/browser/foldingRanges.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +20 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +5 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +22 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +19 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.d.ts +16 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +54 -0
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +6 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +11 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/graph.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +16 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +58 -7
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgress.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +9 -0
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLineCommand.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +7 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.css +5 -0
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css +18 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScroll.css +7 -0
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +29 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +18 -0
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +6 -0
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +16 -2
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.d.ts +27 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css +6 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +15 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollElement.d.ts +22 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +42 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +19 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/completionModel.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +118 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +8 -0
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +5 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css +19 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +5 -0
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +8 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +6 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +1 -0
- package/vscode/src/vs/editor/editor.worker.start.d.ts +5 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +6 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +14 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +73 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +10 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.d.ts +10 -0
- package/vscode/src/vs/nls.d.ts +96 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +31 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.service.d.ts +4 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +3 -0
- package/vscode/src/vs/platform/accessibility/common/accessibility.d.ts +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +16 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.service.d.ts +7 -0
- package/vscode/src/vs/platform/action/common/action.d.ts +32 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +36 -0
- package/vscode/src/vs/platform/actions/browser/floatingMenu.d.ts +4 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css +14 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +3 -0
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +67 -0
- package/vscode/src/vs/platform/actions/common/actions.d.ts +40 -0
- package/vscode/src/vs/platform/actions/common/actions.service.d.ts +20 -0
- package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +33 -0
- package/vscode/src/vs/platform/commands/common/commands.d.ts +7 -0
- package/vscode/src/vs/platform/configuration/common/configuration.d.ts +9 -0
- package/vscode/src/vs/platform/configuration/common/configuration.service.d.ts +26 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +126 -0
- package/vscode/src/vs/platform/contextkey/common/contextkey.d.ts +30 -0
- package/vscode/src/vs/platform/contextkey/common/scanner.d.ts +21 -1
- package/vscode/src/vs/platform/contextview/browser/contextView.d.ts +18 -0
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +87 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
- package/vscode/src/vs/platform/editor/common/editor.d.ts +231 -0
- package/vscode/src/vs/platform/environment/common/argv.d.ts +3 -0
- package/vscode/src/vs/platform/environment/common/environment.d.ts +5 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +16 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +25 -22
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +4 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +6 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +7 -0
- package/vscode/src/vs/platform/extensionManagement/common/implicitActivationEvents.d.ts +8 -0
- package/vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.d.ts +15 -0
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +944 -0
- package/vscode/src/vs/platform/files/browser/webFileSystemAccess.d.ts +25 -0
- package/vscode/src/vs/platform/files/common/files.d.ts +408 -0
- package/vscode/src/vs/platform/files/common/files.service.d.ts +168 -0
- package/vscode/src/vs/platform/files/common/watcher.d.ts +83 -0
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.d.ts +3 -0
- package/vscode/src/vs/platform/instantiation/common/extensions.d.ts +8 -0
- package/vscode/src/vs/platform/instantiation/common/graph.d.ts +4 -0
- package/vscode/src/vs/platform/instantiation/common/instantiation.d.ts +31 -0
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.d.ts +18 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.d.ts +7 -0
- package/vscode/src/vs/platform/keybinding/common/keybinding.service.d.ts +27 -0
- package/vscode/src/vs/platform/keybinding/common/keybindingResolver.d.ts +24 -1
- package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +3 -0
- package/vscode/src/vs/platform/keybinding/common/usLayoutResolvedKeybinding.d.ts +6 -0
- package/vscode/src/vs/platform/label/common/label.service.d.ts +12 -0
- package/vscode/src/vs/platform/layout/browser/layoutService.d.ts +6 -0
- package/vscode/src/vs/platform/layout/browser/layoutService.service.d.ts +51 -0
- package/vscode/src/vs/platform/list/browser/listService.service.d.ts +3 -0
- package/vscode/src/vs/platform/log/common/log.d.ts +30 -0
- package/vscode/src/vs/platform/log/common/log.service.d.ts +52 -0
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +3 -0
- package/vscode/src/vs/platform/markers/common/markers.d.ts +6 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +185 -0
- package/vscode/src/vs/platform/notification/common/notification.service.d.ts +63 -0
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +2 -0
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.d.ts +10 -0
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.d.ts +10 -0
- package/vscode/src/vs/platform/opener/browser/link.css +7 -0
- package/vscode/src/vs/platform/opener/common/opener.d.ts +33 -0
- package/vscode/src/vs/platform/opener/common/opener.service.d.ts +27 -0
- package/vscode/src/vs/platform/product/common/product.d.ts +5 -0
- package/vscode/src/vs/platform/product/common/product.js +2 -2
- package/vscode/src/vs/platform/progress/common/progress.d.ts +15 -0
- package/vscode/src/vs/platform/progress/common/progress.service.d.ts +6 -0
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +115 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +14 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/common/quickAccess.d.ts +121 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +574 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +63 -0
- package/vscode/src/vs/platform/registry/common/platform.d.ts +14 -0
- package/vscode/src/vs/platform/remote/common/remoteAuthorityResolver.service.d.ts +7 -0
- package/vscode/src/vs/platform/remote/common/remoteExtensionsScanner.service.d.ts +3 -0
- package/vscode/src/vs/platform/remote/common/remoteSocketFactoryService.service.d.ts +6 -0
- package/vscode/src/vs/platform/storage/common/storage.d.ts +45 -0
- package/vscode/src/vs/platform/storage/common/storage.service.d.ts +120 -0
- package/vscode/src/vs/platform/telemetry/common/telemetry.service.d.ts +13 -0
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +40 -0
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +342 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +28 -0
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +4 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +37 -0
- package/vscode/src/vs/platform/theme/common/iconRegistry.d.ts +32 -0
- package/vscode/src/vs/platform/theme/common/theme.d.ts +3 -0
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +30 -0
- package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +13 -1
- package/vscode/src/vs/platform/undoRedo/common/undoRedo.d.ts +32 -0
- package/vscode/src/vs/platform/undoRedo/common/undoRedo.service.d.ts +32 -0
- package/vscode/src/vs/platform/update/common/update.d.ts +17 -0
- package/vscode/src/vs/platform/uriIdentity/common/uriIdentity.service.d.ts +26 -0
- package/vscode/src/vs/platform/url/common/url.d.ts +6 -0
- package/vscode/src/vs/platform/url/common/url.service.d.ts +5 -0
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.d.ts +3 -0
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfileStorageService.service.d.ts +16 -0
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +12 -12
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +4 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +5 -0
- package/vscode/src/vs/platform/window/common/window.d.ts +39 -0
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +71 -1
- package/vscode/src/vs/platform/workspace/common/workspace.service.d.ts +36 -0
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +93 -3
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionActivator.d.ts +13 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +11 -0
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostTestItem.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHostTesting.d.ts +96 -2
- package/vscode/src/vs/workbench/api/common/extHostTestingPrivateApi.d.ts +5 -0
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.d.ts +8 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +123 -0
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +3 -0
- package/vscode/src/vs/workbench/browser/actions/media/actions.css +12 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editor.d.ts +69 -0
- package/vscode/src/vs/workbench/common/composite.d.ts +24 -0
- package/vscode/src/vs/workbench/common/contributions.d.ts +62 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +181 -0
- package/vscode/src/vs/workbench/common/editor/editorModel.d.ts +17 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.d.ts +3 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.d.ts +15 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +617 -0
- package/vscode/src/vs/workbench/common/panecomposite.d.ts +3 -0
- package/vscode/src/vs/workbench/common/views.d.ts +74 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +58 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +64 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +78 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +9 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/editorLineNumberMenu.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/menuPreventer.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +161 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +130 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/logs/common/defaultLogLevels.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +124 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +787 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookKernelService.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/search/browser/replace.service.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.service.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/tags/common/workspaceTags.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +224 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +508 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +92 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm-private.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +79 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testItemCollection.d.ts +49 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testProfileService.service.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testResultService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testResultStorage.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testService.service.d.ts +62 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.d.ts +150 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingDecorations.service.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/timeline/common/timeline.d.ts +29 -0
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/webview/common/webview.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +21 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationAccessService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.d.ts +41 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +107 -0
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +124 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.d.ts +267 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.service.d.ts +33 -0
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.d.ts +3 -0
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +39 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +20 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +29 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +511 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +49 -0
- package/vscode/src/vs/workbench/services/editor/common/editorPaneService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +12 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +41 -0
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +45 -0
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +174 -0
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +4 -0
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +44 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +3 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProxy.d.ts +3 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +64 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +94 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.d.ts +4 -0
- package/vscode/src/vs/workbench/services/extensions/common/proxyIdentifier.d.ts +18 -0
- package/vscode/src/vs/workbench/services/files/common/elevatedFileService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/services/history/common/history.d.ts +28 -0
- package/vscode/src/vs/workbench/services/history/common/history.service.d.ts +51 -0
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +69 -0
- package/vscode/src/vs/workbench/services/keybinding/common/fallbackKeyboardMapper.d.ts +3 -0
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +119 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.d.ts +116 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.d.ts +54 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.d.ts +3 -0
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +57 -0
- package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +45 -0
- package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +30 -0
- package/vscode/src/vs/workbench/services/path/common/pathService.service.d.ts +42 -0
- package/vscode/src/vs/workbench/services/remote/common/remoteAgentService.service.d.ts +16 -0
- package/vscode/src/vs/workbench/services/search/common/folderQuerySearchTree.d.ts +4 -0
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.d.ts +28 -0
- package/vscode/src/vs/workbench/services/search/common/search.d.ts +32 -0
- package/vscode/src/vs/workbench/services/search/common/search.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtConversionTypes.d.ts +273 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +327 -0
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +6 -0
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +91 -0
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.service.d.ts +10 -0
- package/vscode/src/vs/workbench/services/terminal/common/embedderTerminalService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +9 -0
- package/vscode/src/vs/workbench/services/textfile/common/textEditorService.service.d.ts +17 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +179 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +74 -0
- package/vscode/src/vs/workbench/services/timer/browser/timerService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +46 -0
- package/vscode/src/vs/workbench/services/userActivity/common/userActivityService.service.d.ts +14 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +11 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +32 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +84 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyHistory.service.d.ts +43 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +63 -0
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +28 -0
|
@@ -10,170 +10,479 @@ export declare const USER_MANIFEST_CACHE_FILE = "extensions.user.cache";
|
|
|
10
10
|
export declare const BUILTIN_MANIFEST_CACHE_FILE = "extensions.builtin.cache";
|
|
11
11
|
export declare const UNDEFINED_PUBLISHER = "undefined_publisher";
|
|
12
12
|
export interface ICommand {
|
|
13
|
+
/**
|
|
14
|
+
* Identifier of the command to execute
|
|
15
|
+
*/
|
|
13
16
|
readonly command: string;
|
|
17
|
+
/**
|
|
18
|
+
* Title by which the command is represented in the UI
|
|
19
|
+
*/
|
|
14
20
|
readonly title: string | ILocalizedString;
|
|
15
21
|
readonly shortTitle?: string;
|
|
22
|
+
/**
|
|
23
|
+
* (Optional) Category string by which the command is grouped in the UI
|
|
24
|
+
*/
|
|
16
25
|
readonly category?: string | ILocalizedString;
|
|
26
|
+
/**
|
|
27
|
+
* (Optional) Condition which must be true to enable the command in the UI (menu and keybindings). Does not prevent executing the command by other means, like the `executeCommand`-api.
|
|
28
|
+
*/
|
|
17
29
|
readonly enablement?: string;
|
|
30
|
+
/**
|
|
31
|
+
* (Optional) Icon which is used to represent the command in the UI. Either a file path, an object with file paths for dark and light themes, or a theme icon references, like `\$(zap)`
|
|
32
|
+
*/
|
|
18
33
|
readonly icon?: string | {
|
|
34
|
+
/**
|
|
35
|
+
* Icon path when a light theme is used
|
|
36
|
+
*/
|
|
19
37
|
readonly light?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Icon path when a dark theme is used
|
|
40
|
+
*/
|
|
20
41
|
readonly dark?: string;
|
|
21
42
|
};
|
|
22
43
|
}
|
|
23
44
|
export interface IDebugger {
|
|
45
|
+
/**
|
|
46
|
+
* Unique identifier for this debug adapter.
|
|
47
|
+
*/
|
|
24
48
|
readonly type: string;
|
|
49
|
+
/**
|
|
50
|
+
* Display name for this debug adapter.
|
|
51
|
+
*/
|
|
25
52
|
readonly label?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Path to the debug adapter program. Path is either absolute or relative to the extension folder.
|
|
55
|
+
*/
|
|
26
56
|
readonly program?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Optional arguments to pass to the adapter.
|
|
59
|
+
*/
|
|
27
60
|
readonly args?: unknown[];
|
|
61
|
+
/**
|
|
62
|
+
* Optional runtime in case the program attribute is not an executable but requires a runtime.
|
|
63
|
+
*/
|
|
28
64
|
readonly runtime?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Optional runtime arguments.
|
|
67
|
+
*/
|
|
29
68
|
readonly runtimeArgs?: unknown[];
|
|
69
|
+
/**
|
|
70
|
+
* Mapping from interactive variables (e.g. ${action.pickProcess}) in `launch.json` to a command.
|
|
71
|
+
*/
|
|
30
72
|
readonly variables?: {};
|
|
73
|
+
/**
|
|
74
|
+
* Configurations for generating the initial 'launch.json'.
|
|
75
|
+
*/
|
|
31
76
|
readonly initialConfigurations?: unknown[] | string;
|
|
77
|
+
/**
|
|
78
|
+
* List of languages for which the debug extension could be considered the "default debugger".
|
|
79
|
+
*/
|
|
32
80
|
readonly languages?: unknown[];
|
|
81
|
+
/**
|
|
82
|
+
* Snippets for adding new configurations in 'launch.json'.
|
|
83
|
+
*/
|
|
33
84
|
readonly configurationSnippets?: unknown[];
|
|
85
|
+
/**
|
|
86
|
+
* JSON schema configurations for validating 'launch.json'.
|
|
87
|
+
*/
|
|
34
88
|
readonly configurationAttributes?: {};
|
|
89
|
+
/**
|
|
90
|
+
* Condition which must be true to enable this type of debugger. Consider using 'shellExecutionSupported', 'virtualWorkspace', 'resourceScheme' or an extension-defined context key as appropriate for this.
|
|
91
|
+
*/
|
|
35
92
|
readonly when?: string;
|
|
93
|
+
/**
|
|
94
|
+
* When this condition is true, this debugger type is hidden from the debugger list, but is still enabled.
|
|
95
|
+
*/
|
|
36
96
|
readonly hiddenWhen?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Optional message to mark this debug type as being deprecated.
|
|
99
|
+
*/
|
|
37
100
|
readonly deprecated?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Windows specific settings.
|
|
103
|
+
*/
|
|
38
104
|
readonly windows?: {
|
|
105
|
+
/**
|
|
106
|
+
* Runtime used for Windows.
|
|
107
|
+
*/
|
|
39
108
|
runtime?: string;
|
|
40
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* macOS specific settings.
|
|
112
|
+
*/
|
|
41
113
|
readonly osx?: {
|
|
114
|
+
/**
|
|
115
|
+
* Runtime used for macOS.
|
|
116
|
+
*/
|
|
42
117
|
runtime?: string;
|
|
43
118
|
};
|
|
119
|
+
/**
|
|
120
|
+
* Linux specific settings.
|
|
121
|
+
*/
|
|
44
122
|
readonly linux?: {
|
|
123
|
+
/**
|
|
124
|
+
* Runtime used for Linux.
|
|
125
|
+
*/
|
|
45
126
|
readonly runtime?: string;
|
|
46
127
|
};
|
|
128
|
+
/**
|
|
129
|
+
* UI strings contributed by this debug adapter.
|
|
130
|
+
*/
|
|
47
131
|
readonly strings?: {
|
|
132
|
+
/**
|
|
133
|
+
* When there are unverified breakpoints in a language supported by this debug adapter, this message will appear on the breakpoint hover and in the breakpoints view. Markdown and command links are supported.
|
|
134
|
+
*/
|
|
48
135
|
readonly unverifiedBreakpoints?: string;
|
|
49
136
|
};
|
|
50
137
|
}
|
|
51
138
|
export interface IGrammar {
|
|
139
|
+
/**
|
|
140
|
+
* Language identifier for which this syntax is contributed to.
|
|
141
|
+
*/
|
|
52
142
|
readonly language?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Textmate scope name used by the tmLanguage file.
|
|
145
|
+
*/
|
|
53
146
|
readonly scopeName: string;
|
|
147
|
+
/**
|
|
148
|
+
* Path of the tmLanguage file. The path is relative to the extension folder and typically starts with './syntaxes/'.
|
|
149
|
+
*/
|
|
54
150
|
readonly path: string;
|
|
151
|
+
/**
|
|
152
|
+
* A map of scope name to language id if this grammar contains embedded languages.
|
|
153
|
+
*/
|
|
55
154
|
readonly embeddedLanguages?: {};
|
|
155
|
+
/**
|
|
156
|
+
* A map of scope name to token types.
|
|
157
|
+
*/
|
|
56
158
|
readonly tokenTypes?: {
|
|
57
159
|
[k: string]: "string" | "comment" | "other";
|
|
58
160
|
};
|
|
161
|
+
/**
|
|
162
|
+
* List of language scope names to which this grammar is injected to.
|
|
163
|
+
*/
|
|
59
164
|
readonly injectTo?: string[];
|
|
165
|
+
/**
|
|
166
|
+
* Defines which scope names contain balanced brackets.
|
|
167
|
+
*/
|
|
60
168
|
readonly balancedBracketScopes?: string[];
|
|
169
|
+
/**
|
|
170
|
+
* Defines which scope names do not contain balanced brackets.
|
|
171
|
+
*/
|
|
61
172
|
readonly unbalancedBracketScopes?: string[];
|
|
62
173
|
}
|
|
63
174
|
export interface IJSONValidation {
|
|
175
|
+
/**
|
|
176
|
+
* The file pattern (or an array of patterns) to match, for example "package.json" or "*.launch". Exclusion patterns start with '!'
|
|
177
|
+
*/
|
|
64
178
|
readonly fileMatch?: string | string[];
|
|
179
|
+
/**
|
|
180
|
+
* A schema URL ('http:', 'https:') or relative path to the extension folder ('./').
|
|
181
|
+
*/
|
|
65
182
|
readonly url: string;
|
|
66
183
|
}
|
|
67
184
|
export interface IKeyBinding {
|
|
185
|
+
/**
|
|
186
|
+
* Identifier of the command to run when keybinding is triggered.
|
|
187
|
+
*/
|
|
68
188
|
readonly command: string;
|
|
189
|
+
/**
|
|
190
|
+
* Arguments to pass to the command to execute.
|
|
191
|
+
*/
|
|
69
192
|
readonly args?: {
|
|
70
193
|
[k: string]: unknown;
|
|
71
194
|
};
|
|
195
|
+
/**
|
|
196
|
+
* Key or key sequence (separate keys with plus-sign and sequences with space, e.g. Ctrl+O and Ctrl+L L for a chord).
|
|
197
|
+
*/
|
|
72
198
|
readonly key: string;
|
|
199
|
+
/**
|
|
200
|
+
* Mac specific key or key sequence.
|
|
201
|
+
*/
|
|
73
202
|
readonly mac?: string;
|
|
203
|
+
/**
|
|
204
|
+
* Linux specific key or key sequence.
|
|
205
|
+
*/
|
|
74
206
|
readonly linux?: string;
|
|
207
|
+
/**
|
|
208
|
+
* Windows specific key or key sequence.
|
|
209
|
+
*/
|
|
75
210
|
readonly win?: string;
|
|
211
|
+
/**
|
|
212
|
+
* Condition when the key is active.
|
|
213
|
+
*/
|
|
76
214
|
readonly when?: string;
|
|
77
215
|
}
|
|
78
216
|
export interface ILanguage {
|
|
217
|
+
/**
|
|
218
|
+
* ID of the language.
|
|
219
|
+
*/
|
|
79
220
|
readonly id: string;
|
|
221
|
+
/**
|
|
222
|
+
* Name aliases for the language.
|
|
223
|
+
*/
|
|
80
224
|
readonly aliases?: string[];
|
|
225
|
+
/**
|
|
226
|
+
* File extensions associated to the language.
|
|
227
|
+
*/
|
|
81
228
|
readonly extensions?: string[];
|
|
229
|
+
/**
|
|
230
|
+
* File names associated to the language.
|
|
231
|
+
*/
|
|
82
232
|
readonly filenames?: string[];
|
|
233
|
+
/**
|
|
234
|
+
* File name glob patterns associated to the language.
|
|
235
|
+
*/
|
|
83
236
|
readonly filenamePatterns?: string[];
|
|
237
|
+
/**
|
|
238
|
+
* Mime types associated to the language.
|
|
239
|
+
*/
|
|
84
240
|
readonly mimetypes?: string[];
|
|
241
|
+
/**
|
|
242
|
+
* A regular expression matching the first line of a file of the language.
|
|
243
|
+
*/
|
|
85
244
|
readonly firstLine?: string;
|
|
245
|
+
/**
|
|
246
|
+
* A relative path to a file containing configuration options for the language.
|
|
247
|
+
*/
|
|
86
248
|
readonly configuration?: string;
|
|
249
|
+
/**
|
|
250
|
+
* A icon to use as file icon, if no icon theme provides one for the language.
|
|
251
|
+
*/
|
|
87
252
|
readonly icon?: {
|
|
253
|
+
/**
|
|
254
|
+
* Icon path when a light theme is used
|
|
255
|
+
*/
|
|
88
256
|
readonly light?: string;
|
|
257
|
+
/**
|
|
258
|
+
* Icon path when a dark theme is used
|
|
259
|
+
*/
|
|
89
260
|
readonly dark?: string;
|
|
90
261
|
};
|
|
91
262
|
}
|
|
92
263
|
export interface IMenu {
|
|
264
|
+
/**
|
|
265
|
+
* Identifier of the command to execute. The command must be declared in the 'commands'-section
|
|
266
|
+
*/
|
|
93
267
|
readonly command: string;
|
|
268
|
+
/**
|
|
269
|
+
* Identifier of an alternative command to execute. The command must be declared in the 'commands'-section
|
|
270
|
+
*/
|
|
94
271
|
readonly alt?: string;
|
|
272
|
+
/**
|
|
273
|
+
* Condition which must be true to show this item
|
|
274
|
+
*/
|
|
95
275
|
readonly when?: string;
|
|
276
|
+
/**
|
|
277
|
+
* Group into which this item belongs
|
|
278
|
+
*/
|
|
96
279
|
readonly group?: string;
|
|
97
280
|
}
|
|
98
281
|
export interface ISubMenu {
|
|
282
|
+
/**
|
|
283
|
+
* Identifier of the submenu to display in this item.
|
|
284
|
+
*/
|
|
99
285
|
readonly submenu: string;
|
|
286
|
+
/**
|
|
287
|
+
* Condition which must be true to show this item
|
|
288
|
+
*/
|
|
100
289
|
readonly when?: string;
|
|
290
|
+
/**
|
|
291
|
+
* Group into which this item belongs
|
|
292
|
+
*/
|
|
101
293
|
readonly group?: string;
|
|
102
294
|
}
|
|
103
295
|
export interface ISnippet {
|
|
296
|
+
/**
|
|
297
|
+
* Language identifier for which this snippet is contributed to.
|
|
298
|
+
*/
|
|
104
299
|
readonly language: string;
|
|
300
|
+
/**
|
|
301
|
+
* Path of the snippets file. The path is relative to the extension folder and typically starts with './snippets/'.
|
|
302
|
+
*/
|
|
105
303
|
readonly path: string;
|
|
106
304
|
}
|
|
107
305
|
export interface IColorTheme {
|
|
306
|
+
/**
|
|
307
|
+
* Id of the color theme as used in the user settings.
|
|
308
|
+
*/
|
|
108
309
|
readonly id: string;
|
|
310
|
+
/**
|
|
311
|
+
* Label of the color theme as shown in the UI.
|
|
312
|
+
*/
|
|
109
313
|
readonly label: string;
|
|
314
|
+
/**
|
|
315
|
+
* Base theme defining the colors around the editor: 'vs' is the light color theme, 'vs-dark' is the dark color theme. 'hc-black' is the dark high contrast theme, 'hc-light' is the light high contrast theme.
|
|
316
|
+
*/
|
|
110
317
|
readonly uiTheme: "vs" | "vs-dark" | "hc-black" | "hc-light";
|
|
318
|
+
/**
|
|
319
|
+
* Path of the tmTheme file. The path is relative to the extension folder and is typically './colorthemes/awesome-color-theme.json'.
|
|
320
|
+
*/
|
|
111
321
|
readonly path: string;
|
|
112
322
|
}
|
|
113
323
|
export interface IIconTheme {
|
|
324
|
+
/**
|
|
325
|
+
* Id of the file icon theme as used in the user settings.
|
|
326
|
+
*/
|
|
114
327
|
readonly id: string;
|
|
328
|
+
/**
|
|
329
|
+
* Label of the file icon theme as shown in the UI.
|
|
330
|
+
*/
|
|
115
331
|
readonly label: string;
|
|
332
|
+
/**
|
|
333
|
+
* Path of the file icon theme definition file. The path is relative to the extension folder and is typically './fileicons/awesome-icon-theme.json'.
|
|
334
|
+
*/
|
|
116
335
|
readonly path: string;
|
|
117
336
|
}
|
|
118
337
|
export interface IProductTheme {
|
|
338
|
+
/**
|
|
339
|
+
* Id of the product icon theme as used in the user settings.
|
|
340
|
+
*/
|
|
119
341
|
readonly id: string;
|
|
342
|
+
/**
|
|
343
|
+
* Label of the product icon theme as shown in the UI.
|
|
344
|
+
*/
|
|
120
345
|
readonly label: string;
|
|
346
|
+
/**
|
|
347
|
+
* Path of the product icon theme definition file. The path is relative to the extension folder and is typically './producticons/awesome-product-icon-theme.json'.
|
|
348
|
+
*/
|
|
121
349
|
readonly path: string;
|
|
122
350
|
}
|
|
123
351
|
export interface IViewContainer {
|
|
352
|
+
/**
|
|
353
|
+
* Unique id used to identify the container in which views can be contributed using 'views' contribution point
|
|
354
|
+
*/
|
|
124
355
|
readonly id: string;
|
|
356
|
+
/**
|
|
357
|
+
* Human readable string used to render the container
|
|
358
|
+
*/
|
|
125
359
|
readonly title: string;
|
|
360
|
+
/**
|
|
361
|
+
* Path to the container icon. Icons are 24x24 centered on a 50x40 block and have a fill color of 'rgb(215, 218, 224)' or '#d7dae0'. It is recommended that icons be in SVG, though any image file type is accepted.
|
|
362
|
+
*/
|
|
126
363
|
readonly icon: string;
|
|
127
364
|
}
|
|
128
365
|
export interface IView {
|
|
129
366
|
readonly type?: "tree" | "webview";
|
|
130
367
|
readonly id: string;
|
|
368
|
+
/**
|
|
369
|
+
* The human-readable name of the view. Will be shown
|
|
370
|
+
*/
|
|
131
371
|
readonly name: string;
|
|
372
|
+
/**
|
|
373
|
+
* Condition which must be true to show this view
|
|
374
|
+
*/
|
|
132
375
|
readonly when?: string;
|
|
376
|
+
/**
|
|
377
|
+
* Path to the view icon. View icons are displayed when the name of the view cannot be shown. It is recommended that icons be in SVG, though any image file type is accepted.
|
|
378
|
+
*/
|
|
133
379
|
readonly icon?: string;
|
|
380
|
+
/**
|
|
381
|
+
* Human-readable context for when the view is moved out of its original location. By default, the view's container name will be used.
|
|
382
|
+
*/
|
|
134
383
|
readonly contextualTitle?: string;
|
|
384
|
+
/**
|
|
385
|
+
* Initial state of the view when the extension is first installed. Once the user has changed the view state by collapsing, moving, or hiding the view, the initial state will not be used again.
|
|
386
|
+
*/
|
|
135
387
|
readonly visibility?: "visible" | "hidden" | "collapsed";
|
|
388
|
+
/**
|
|
389
|
+
* The initial size of the view. The size will behave like the css 'flex' property, and will set the initial size when the view is first shown. In the side bar, this is the height of the view. This value is only respected when the same extension owns both the view and the view container.
|
|
390
|
+
*/
|
|
136
391
|
readonly initialSize?: number;
|
|
137
392
|
}
|
|
138
393
|
export interface IColor {
|
|
394
|
+
/**
|
|
395
|
+
* The identifier of the themable color
|
|
396
|
+
*/
|
|
139
397
|
readonly id: string;
|
|
398
|
+
/**
|
|
399
|
+
* The description of the themable color
|
|
400
|
+
*/
|
|
140
401
|
readonly description: string;
|
|
141
402
|
readonly defaults: {
|
|
403
|
+
/**
|
|
404
|
+
* The default color for light themes. Either a color value in hex (#RRGGBB[AA]) or the identifier of a themable color which provides the default.
|
|
405
|
+
*/
|
|
142
406
|
readonly light: string;
|
|
407
|
+
/**
|
|
408
|
+
* The default color for dark themes. Either a color value in hex (#RRGGBB[AA]) or the identifier of a themable color which provides the default.
|
|
409
|
+
*/
|
|
143
410
|
readonly dark: string;
|
|
411
|
+
/**
|
|
412
|
+
* The default color for high contrast dark themes. Either a color value in hex (#RRGGBB[AA]) or the identifier of a themable color which provides the default. If not provided, the `dark` color is used as default for high contrast dark themes.
|
|
413
|
+
*/
|
|
144
414
|
readonly highContrast?: string;
|
|
415
|
+
/**
|
|
416
|
+
* The default color for high contrast light themes. Either a color value in hex (#RRGGBB[AA]) or the identifier of a themable color which provides the default. If not provided, the `light` color is used as default for high contrast light themes.
|
|
417
|
+
*/
|
|
145
418
|
readonly highContrastLight?: string;
|
|
146
419
|
};
|
|
147
420
|
}
|
|
148
421
|
interface IWebviewEditor {
|
|
149
422
|
readonly viewType: string;
|
|
150
423
|
readonly priority: string;
|
|
424
|
+
/**
|
|
425
|
+
* Human readable name of the custom editor. This is displayed to users when selecting which editor to use.
|
|
426
|
+
*/
|
|
151
427
|
readonly displayName: string;
|
|
428
|
+
/**
|
|
429
|
+
* Set of globs that the custom editor is enabled for.
|
|
430
|
+
*/
|
|
152
431
|
readonly selector: {
|
|
432
|
+
/**
|
|
433
|
+
* Glob that the custom editor is enabled for.
|
|
434
|
+
*/
|
|
153
435
|
readonly filenamePattern?: string;
|
|
154
436
|
}[];
|
|
155
437
|
}
|
|
156
438
|
export interface ICodeActionContributionAction {
|
|
157
439
|
readonly kind: string;
|
|
440
|
+
/**
|
|
441
|
+
* Label for the code action used in the UI.
|
|
442
|
+
*/
|
|
158
443
|
readonly title: string;
|
|
444
|
+
/**
|
|
445
|
+
* Description of what the code action does.
|
|
446
|
+
*/
|
|
159
447
|
readonly description?: string;
|
|
160
448
|
}
|
|
161
449
|
export interface ICodeActionContribution {
|
|
450
|
+
/**
|
|
451
|
+
* Language modes that the code actions are enabled for.
|
|
452
|
+
*/
|
|
162
453
|
readonly languages: string[];
|
|
163
454
|
readonly actions: readonly ICodeActionContributionAction[];
|
|
164
455
|
}
|
|
165
456
|
export interface IAuthenticationContribution {
|
|
457
|
+
/**
|
|
458
|
+
* The id of the authentication provider.
|
|
459
|
+
*/
|
|
166
460
|
readonly id: string;
|
|
461
|
+
/**
|
|
462
|
+
* The human readable name of the authentication provider.
|
|
463
|
+
*/
|
|
167
464
|
readonly label: string;
|
|
168
465
|
readonly authorizationServerGlobs?: string[];
|
|
169
466
|
}
|
|
170
467
|
export interface IWalkthroughStep {
|
|
468
|
+
/**
|
|
469
|
+
* Unique identifier for this step. This is used to keep track of which steps have been completed.
|
|
470
|
+
*/
|
|
171
471
|
readonly id: string;
|
|
472
|
+
/**
|
|
473
|
+
* Title of step.
|
|
474
|
+
*/
|
|
172
475
|
readonly title: string;
|
|
476
|
+
/**
|
|
477
|
+
* Description of step. Supports ``preformatted``, __italic__, and **bold** text. Use markdown-style links for commands or external links: [Title](command:myext.command), [Title](command:toSide:myext.command), or [Title](https://aka.ms). Links on their own line will be rendered as buttons.
|
|
478
|
+
*/
|
|
173
479
|
readonly description?: string;
|
|
174
480
|
readonly button?: {
|
|
175
481
|
[k: string]: unknown;
|
|
176
482
|
};
|
|
483
|
+
/**
|
|
484
|
+
* Media to show alongside this step, either an image or markdown content.
|
|
485
|
+
*/
|
|
177
486
|
readonly media: {
|
|
178
487
|
image: string | {
|
|
179
488
|
dark: string;
|
|
@@ -211,18 +520,46 @@ export interface IWalkthroughStep {
|
|
|
211
520
|
image?: never;
|
|
212
521
|
svg?: never;
|
|
213
522
|
};
|
|
523
|
+
/**
|
|
524
|
+
* Events that should trigger this step to become checked off. If empty or not defined, the step will check off when any of the step's buttons or links are clicked; if the step has no buttons or links it will check on when it is selected.
|
|
525
|
+
*/
|
|
214
526
|
readonly completionEvents?: string[];
|
|
527
|
+
/**
|
|
528
|
+
* Signal to mark step as complete.
|
|
529
|
+
* @deprecated use `completionEvents: 'onCommand:...'`
|
|
530
|
+
**/
|
|
215
531
|
readonly doneOn?: {
|
|
216
532
|
command: string;
|
|
217
533
|
};
|
|
534
|
+
/**
|
|
535
|
+
* Context key expression to control the visibility of this step.
|
|
536
|
+
*/
|
|
218
537
|
readonly when?: string;
|
|
219
538
|
}
|
|
220
539
|
export interface IWalkthrough {
|
|
540
|
+
/**
|
|
541
|
+
* Unique identifier for this walkthrough.
|
|
542
|
+
*/
|
|
221
543
|
readonly id: string;
|
|
544
|
+
/**
|
|
545
|
+
* Title of walkthrough.
|
|
546
|
+
*/
|
|
222
547
|
readonly title: string;
|
|
548
|
+
/**
|
|
549
|
+
* Relative path to the icon of the walkthrough. The path is relative to the extension location. If not specified, the icon defaults to the extension icon if available.
|
|
550
|
+
*/
|
|
223
551
|
readonly icon?: string;
|
|
552
|
+
/**
|
|
553
|
+
* Description of walkthrough.
|
|
554
|
+
*/
|
|
224
555
|
readonly description: string;
|
|
556
|
+
/**
|
|
557
|
+
* Walkthroughs that match one of these glob patterns appear as 'featured' in workspaces with the specified files. For example, a walkthrough for TypeScript projects might specify `tsconfig.json` here.
|
|
558
|
+
*/
|
|
225
559
|
readonly featuredFor?: string[];
|
|
560
|
+
/**
|
|
561
|
+
* Context key expression to control the visibility of this walkthrough.
|
|
562
|
+
*/
|
|
226
563
|
readonly when?: string;
|
|
227
564
|
readonly steps: IWalkthroughStep[];
|
|
228
565
|
}
|
|
@@ -234,20 +571,47 @@ export interface IStartEntry {
|
|
|
234
571
|
readonly category: "file" | "folder" | "notebook";
|
|
235
572
|
}
|
|
236
573
|
export interface INotebookEntry {
|
|
574
|
+
/**
|
|
575
|
+
* Type of the notebook.
|
|
576
|
+
*/
|
|
237
577
|
readonly type: string;
|
|
578
|
+
/**
|
|
579
|
+
* Human readable name of the notebook.
|
|
580
|
+
*/
|
|
238
581
|
readonly displayName: string;
|
|
582
|
+
/**
|
|
583
|
+
* Set of globs that the notebook is for.
|
|
584
|
+
*/
|
|
239
585
|
readonly selector: {
|
|
586
|
+
/**
|
|
587
|
+
* Glob that the notebook is enabled for.
|
|
588
|
+
*/
|
|
240
589
|
readonly filenamePattern?: string;
|
|
590
|
+
/**
|
|
591
|
+
* Glob that the notebook is disabled for.
|
|
592
|
+
*/
|
|
241
593
|
readonly excludeFileNamePattern?: string;
|
|
242
594
|
}[];
|
|
243
595
|
readonly priority?: "default" | "option";
|
|
244
596
|
}
|
|
245
597
|
export interface INotebookRendererContribution {
|
|
598
|
+
/**
|
|
599
|
+
* Unique identifier of the notebook output renderer.
|
|
600
|
+
*/
|
|
246
601
|
readonly id: string;
|
|
602
|
+
/**
|
|
603
|
+
* Human readable name of the notebook output renderer.
|
|
604
|
+
*/
|
|
247
605
|
readonly displayName: string;
|
|
248
606
|
readonly dependencies?: string[];
|
|
249
607
|
readonly optionalDependencies?: string[];
|
|
608
|
+
/**
|
|
609
|
+
* Defines how and if the renderer needs to communicate with an extension host, via `createRendererMessaging`. Renderers with stronger messaging requirements may not work in all environments.
|
|
610
|
+
*/
|
|
250
611
|
readonly requiresMessaging?: "always" | "optional" | "never";
|
|
612
|
+
/**
|
|
613
|
+
* Set of globs that the notebook is for.
|
|
614
|
+
*/
|
|
251
615
|
readonly mimeTypes: string[];
|
|
252
616
|
readonly entrypoint: string | {
|
|
253
617
|
readonly extends: string;
|
|
@@ -259,13 +623,31 @@ export interface IDebugVisualizationContribution {
|
|
|
259
623
|
readonly when: string;
|
|
260
624
|
}
|
|
261
625
|
export interface ITranslation {
|
|
626
|
+
/**
|
|
627
|
+
* Id of VS Code or Extension for which this translation is contributed to. Id of VS Code is always `vscode` and of extension should be in format `publisherId.extensionName`.
|
|
628
|
+
*/
|
|
262
629
|
readonly id: string;
|
|
630
|
+
/**
|
|
631
|
+
* A relative path to a file containing translations for the language.
|
|
632
|
+
*/
|
|
263
633
|
readonly path: string;
|
|
264
634
|
}
|
|
265
635
|
export interface ILocalizationContribution {
|
|
636
|
+
/**
|
|
637
|
+
* Id of the language into which the display strings are translated.
|
|
638
|
+
*/
|
|
266
639
|
readonly languageId: string;
|
|
640
|
+
/**
|
|
641
|
+
* Name of the language in English.
|
|
642
|
+
*/
|
|
267
643
|
readonly languageName?: string;
|
|
644
|
+
/**
|
|
645
|
+
* Name of the language in contributed language.
|
|
646
|
+
*/
|
|
268
647
|
readonly localizedLanguageName?: string;
|
|
648
|
+
/**
|
|
649
|
+
*
|
|
650
|
+
*/
|
|
269
651
|
readonly translations: ITranslation[];
|
|
270
652
|
}
|
|
271
653
|
export interface ITerminal {
|
|
@@ -273,7 +655,13 @@ export interface ITerminal {
|
|
|
273
655
|
readonly id: string;
|
|
274
656
|
readonly title: string;
|
|
275
657
|
readonly icon?: (string | {
|
|
658
|
+
/**
|
|
659
|
+
* Icon path when a light theme is used
|
|
660
|
+
*/
|
|
276
661
|
readonly light?: string;
|
|
662
|
+
/**
|
|
663
|
+
* Icon path when a dark theme is used
|
|
664
|
+
*/
|
|
277
665
|
readonly dark?: string;
|
|
278
666
|
[k: string]: unknown;
|
|
279
667
|
});
|
|
@@ -281,178 +669,573 @@ export interface ITerminal {
|
|
|
281
669
|
}
|
|
282
670
|
export interface IStatusBarItem {
|
|
283
671
|
readonly id: string;
|
|
672
|
+
/**
|
|
673
|
+
* The name of the entry, like 'Python Language Indicator', 'Git Status' etc. Try to keep the length of the name short, yet descriptive enough that users can understand what the status bar item is about.
|
|
674
|
+
*/
|
|
284
675
|
readonly name: string;
|
|
676
|
+
/**
|
|
677
|
+
* The text to show for the entry. You can embed icons in the text by leveraging the `$(<name>)`-syntax, like 'Hello $(globe)!'
|
|
678
|
+
*/
|
|
285
679
|
readonly text: string;
|
|
680
|
+
/**
|
|
681
|
+
* The tooltip text for the entry.
|
|
682
|
+
*/
|
|
286
683
|
readonly tooltip?: string;
|
|
684
|
+
/**
|
|
685
|
+
* The command to execute when the status bar entry is clicked.
|
|
686
|
+
*/
|
|
287
687
|
readonly command?: string;
|
|
688
|
+
/**
|
|
689
|
+
* The alignment of the status bar entry.
|
|
690
|
+
*/
|
|
288
691
|
readonly alignment: "left" | "right";
|
|
692
|
+
/**
|
|
693
|
+
* The priority of the status bar entry. Higher value means the item should be shown more to the left.
|
|
694
|
+
*/
|
|
289
695
|
readonly priority?: number;
|
|
696
|
+
/**
|
|
697
|
+
* Defines the role and aria label to be used when the status bar entry is focused.
|
|
698
|
+
*/
|
|
290
699
|
readonly accessibilityInformation?: {
|
|
700
|
+
/**
|
|
701
|
+
* The role of the status bar entry which defines how a screen reader interacts with it. More about aria roles can be found here https://w3c.github.io/aria/#widget_roles
|
|
702
|
+
*/
|
|
291
703
|
readonly role?: string;
|
|
704
|
+
/**
|
|
705
|
+
* The aria label of the status bar entry. Defaults to the entry's text.
|
|
706
|
+
*/
|
|
292
707
|
readonly label?: string;
|
|
293
708
|
};
|
|
294
709
|
}
|
|
295
710
|
export interface IRemoteHelp {
|
|
711
|
+
/**
|
|
712
|
+
* The url, or a command that returns the url, to your project's Getting Started page, or a walkthrough ID contributed by your project's extension
|
|
713
|
+
*/
|
|
296
714
|
readonly getStarted?: string | {
|
|
715
|
+
/**
|
|
716
|
+
* The ID of a Get Started walkthrough to open.
|
|
717
|
+
*/
|
|
297
718
|
id: string;
|
|
298
719
|
};
|
|
720
|
+
/**
|
|
721
|
+
* The url, or a command that returns the url, to your project's documentation page
|
|
722
|
+
*/
|
|
299
723
|
readonly documentation?: string;
|
|
724
|
+
/**
|
|
725
|
+
* The url, or a command that returns the url, to your project's feedback reporter
|
|
726
|
+
*/
|
|
300
727
|
readonly feedback?: string;
|
|
728
|
+
/**
|
|
729
|
+
* The url, or a command that returns the url, to your project's issue reporter
|
|
730
|
+
*/
|
|
301
731
|
readonly reportIssue?: string;
|
|
732
|
+
/**
|
|
733
|
+
* The url, or a command that returns the url, to your project's issues list
|
|
734
|
+
*/
|
|
302
735
|
readonly issues?: string;
|
|
303
736
|
}
|
|
304
737
|
export interface ITaskDefinitions {
|
|
738
|
+
/**
|
|
739
|
+
* The actual task type. Please note that types starting with a '$' are reserved for internal usage.
|
|
740
|
+
*/
|
|
305
741
|
readonly type?: string;
|
|
306
742
|
readonly required?: string[];
|
|
743
|
+
/**
|
|
744
|
+
* Additional properties of the task type
|
|
745
|
+
*/
|
|
307
746
|
readonly properties?: {
|
|
308
747
|
[k: string]: IJSONSchema;
|
|
309
748
|
};
|
|
310
749
|
readonly when?: string;
|
|
311
750
|
}
|
|
312
751
|
export interface IIcon {
|
|
752
|
+
/**
|
|
753
|
+
* The description of the themable icon
|
|
754
|
+
*/
|
|
313
755
|
readonly description: string;
|
|
756
|
+
/**
|
|
757
|
+
* The default of the icon. Either a reference to an extisting ThemeIcon or an icon in an icon font.
|
|
758
|
+
*/
|
|
314
759
|
readonly default: string | {
|
|
760
|
+
/**
|
|
761
|
+
* The path of the icon font that defines the icon.
|
|
762
|
+
*/
|
|
315
763
|
readonly fontPath: string;
|
|
764
|
+
/**
|
|
765
|
+
* The character for the icon in the icon font.
|
|
766
|
+
*/
|
|
316
767
|
readonly fontCharacter: string;
|
|
317
768
|
};
|
|
318
769
|
}
|
|
319
770
|
export interface IDocumentationRefactoring {
|
|
771
|
+
/**
|
|
772
|
+
* Label for the documentation used in the UI.
|
|
773
|
+
*/
|
|
320
774
|
readonly title: string;
|
|
775
|
+
/**
|
|
776
|
+
* When clause.
|
|
777
|
+
*/
|
|
321
778
|
readonly when: string;
|
|
779
|
+
/**
|
|
780
|
+
* Command executed.
|
|
781
|
+
*/
|
|
322
782
|
readonly command: string;
|
|
323
783
|
}
|
|
324
784
|
export interface IDocumentation {
|
|
785
|
+
/**
|
|
786
|
+
* Contributed documentation for refactorings.
|
|
787
|
+
*/
|
|
325
788
|
readonly refactoring?: IDocumentationRefactoring[];
|
|
326
789
|
}
|
|
327
790
|
export interface ISubMenu {
|
|
791
|
+
/**
|
|
792
|
+
* Identifier of the menu to display as a submenu.
|
|
793
|
+
*/
|
|
328
794
|
readonly id: string;
|
|
795
|
+
/**
|
|
796
|
+
* The label of the menu item which leads to this submenu.
|
|
797
|
+
*/
|
|
329
798
|
readonly label: string;
|
|
799
|
+
/**
|
|
800
|
+
* (Optional) Icon which is used to represent the submenu in the UI. Either a file path, an object with file paths for dark and light themes, or a theme icon references, like `\$(zap)`
|
|
801
|
+
*/
|
|
330
802
|
readonly icon?: string | {
|
|
803
|
+
/**
|
|
804
|
+
* Icon path when a light theme is used
|
|
805
|
+
*/
|
|
331
806
|
readonly light?: string;
|
|
807
|
+
/**
|
|
808
|
+
* Icon path when a dark theme is used
|
|
809
|
+
*/
|
|
332
810
|
readonly dark?: string;
|
|
333
811
|
};
|
|
334
812
|
}
|
|
335
813
|
interface IResourceLabelFormatters {
|
|
814
|
+
/**
|
|
815
|
+
* URI scheme on which to match the formatter on. For example "file". Simple glob patterns are supported.
|
|
816
|
+
*/
|
|
336
817
|
readonly scheme: string;
|
|
818
|
+
/**
|
|
819
|
+
* URI authority on which to match the formatter on. Simple glob patterns are supported.
|
|
820
|
+
*/
|
|
337
821
|
readonly authority?: string;
|
|
822
|
+
/**
|
|
823
|
+
* Rules for formatting uri resource labels.
|
|
824
|
+
*/
|
|
338
825
|
readonly formatting: {
|
|
826
|
+
/**
|
|
827
|
+
* Label rules to display. For example: myLabel:/${path}. ${path}, ${scheme}, ${authority} and ${authoritySuffix} are supported as variables.
|
|
828
|
+
*/
|
|
339
829
|
readonly label?: string;
|
|
830
|
+
/**
|
|
831
|
+
* Separator to be used in the uri label display. '/' or '' as an example.
|
|
832
|
+
*/
|
|
340
833
|
readonly separator?: string;
|
|
834
|
+
/**
|
|
835
|
+
* Controls whether `${path}` substitutions should have starting separator characters stripped.
|
|
836
|
+
*/
|
|
341
837
|
readonly stripPathStartingSeparator?: boolean;
|
|
838
|
+
/**
|
|
839
|
+
* Controls if the start of the uri label should be tildified when possible.
|
|
840
|
+
*/
|
|
342
841
|
readonly tildify?: boolean;
|
|
842
|
+
/**
|
|
843
|
+
* Suffix appended to the workspace label.
|
|
844
|
+
*/
|
|
343
845
|
readonly workspaceSuffix?: string;
|
|
344
846
|
};
|
|
345
847
|
}
|
|
346
848
|
export interface ISemanticTokenTypes {
|
|
849
|
+
/**
|
|
850
|
+
* The identifier of the semantic token type
|
|
851
|
+
*/
|
|
347
852
|
readonly id?: string;
|
|
853
|
+
/**
|
|
854
|
+
* The super type of the semantic token type
|
|
855
|
+
*/
|
|
348
856
|
readonly superType?: string;
|
|
857
|
+
/**
|
|
858
|
+
* The description of the semantic token type
|
|
859
|
+
*/
|
|
349
860
|
readonly description?: string;
|
|
350
861
|
}
|
|
351
862
|
export interface ISemanticTokenModifiers {
|
|
863
|
+
/**
|
|
864
|
+
* The identifier of the semantic token modifier
|
|
865
|
+
*/
|
|
352
866
|
readonly id?: string;
|
|
867
|
+
/**
|
|
868
|
+
* The description of the semantic token modifier
|
|
869
|
+
*/
|
|
353
870
|
readonly description?: string;
|
|
354
871
|
}
|
|
355
872
|
export interface ISemanticTokenScopes {
|
|
873
|
+
/**
|
|
874
|
+
* Lists the languge for which the defaults are.
|
|
875
|
+
*/
|
|
356
876
|
readonly language?: string;
|
|
877
|
+
/**
|
|
878
|
+
* Maps a semantic token (described by semantic token selector) to one or more textMate scopes used to represent that token.
|
|
879
|
+
*/
|
|
357
880
|
readonly scopes?: {
|
|
358
881
|
[k: string]: string[];
|
|
359
882
|
};
|
|
360
883
|
}
|
|
361
884
|
export interface IBreakpoint {
|
|
885
|
+
/**
|
|
886
|
+
* Allow breakpoints for this language.
|
|
887
|
+
*/
|
|
362
888
|
readonly language?: string;
|
|
889
|
+
/**
|
|
890
|
+
* Condition which must be true to enable breakpoints in this language. Consider matching this to the debugger when clause as appropriate.
|
|
891
|
+
*/
|
|
363
892
|
readonly when?: string;
|
|
364
893
|
}
|
|
365
894
|
export interface ITerminalQuickFix {
|
|
895
|
+
/**
|
|
896
|
+
* The ID of the quick fix provider
|
|
897
|
+
*/
|
|
366
898
|
readonly id: string;
|
|
899
|
+
/**
|
|
900
|
+
* A regular expression or string to test the command line against
|
|
901
|
+
*/
|
|
367
902
|
readonly commandLineMatcher: string;
|
|
368
903
|
readonly outputMatcher: {
|
|
904
|
+
/**
|
|
905
|
+
* A regular expression or string to test the command line against
|
|
906
|
+
*/
|
|
369
907
|
readonly lineMatcher: string;
|
|
908
|
+
/**
|
|
909
|
+
* Where the search should begin in the buffer
|
|
910
|
+
*/
|
|
370
911
|
readonly anchor: "top" | "bottom";
|
|
912
|
+
/**
|
|
913
|
+
* The number of lines vertically from the anchor in the buffer to start matching against
|
|
914
|
+
*/
|
|
371
915
|
readonly offset: number;
|
|
916
|
+
/**
|
|
917
|
+
* The number of rows to match against, this should be as small as possible for performance reasons
|
|
918
|
+
*/
|
|
372
919
|
readonly length: number;
|
|
373
920
|
};
|
|
921
|
+
/**
|
|
922
|
+
* The command exit result to match on
|
|
923
|
+
*/
|
|
374
924
|
readonly commandExitResult: "success" | "error";
|
|
925
|
+
/**
|
|
926
|
+
* The kind of the resulting quick fix. This changes how the quick fix is presented. Defaults to `"fix"`.
|
|
927
|
+
*/
|
|
375
928
|
readonly kind?: "default" | "explain";
|
|
376
929
|
}
|
|
377
930
|
export interface IInteractiveSession {
|
|
931
|
+
/**
|
|
932
|
+
* Unique identifier for this Interactive Session provider.
|
|
933
|
+
*/
|
|
378
934
|
readonly id: string;
|
|
935
|
+
/**
|
|
936
|
+
* Display name for this Interactive Session provider.
|
|
937
|
+
*/
|
|
379
938
|
readonly label: string;
|
|
939
|
+
/**
|
|
940
|
+
* An icon for this Interactive Session provider.
|
|
941
|
+
*/
|
|
380
942
|
readonly icon?: string;
|
|
943
|
+
/**
|
|
944
|
+
* A condition which must be true to enable this Interactive Session provider.
|
|
945
|
+
*/
|
|
381
946
|
readonly when?: string;
|
|
382
947
|
}
|
|
383
948
|
export interface INotebook {
|
|
949
|
+
/**
|
|
950
|
+
* Type of the notebook.
|
|
951
|
+
*/
|
|
384
952
|
readonly type: string;
|
|
953
|
+
/**
|
|
954
|
+
* Human readable name of the notebook.
|
|
955
|
+
*/
|
|
385
956
|
readonly displayName: string;
|
|
957
|
+
/**
|
|
958
|
+
* Set of globs that the notebook is for.
|
|
959
|
+
*/
|
|
386
960
|
readonly selector: {
|
|
961
|
+
/**
|
|
962
|
+
* Glob that the notebook is enabled for.
|
|
963
|
+
*/
|
|
387
964
|
readonly filenamePattern?: string;
|
|
965
|
+
/**
|
|
966
|
+
* Glob that the notebook is disabled for.
|
|
967
|
+
*/
|
|
388
968
|
readonly excludeFileNamePattern?: string;
|
|
389
969
|
}[];
|
|
390
970
|
readonly priority?: "default" | "option";
|
|
391
971
|
}
|
|
392
972
|
export interface NotebookPreload {
|
|
973
|
+
/**
|
|
974
|
+
* Type of the notebook.
|
|
975
|
+
*/
|
|
393
976
|
readonly type: string;
|
|
977
|
+
/**
|
|
978
|
+
* Path to file loaded in the webview.
|
|
979
|
+
*/
|
|
394
980
|
readonly entrypoint: string;
|
|
981
|
+
/**
|
|
982
|
+
* Paths to additional resources that should be allowed in the webview.
|
|
983
|
+
*/
|
|
395
984
|
readonly localResourceRoots?: string[];
|
|
396
985
|
}
|
|
397
986
|
export interface IViewsWelcome {
|
|
398
987
|
readonly view: string;
|
|
988
|
+
/**
|
|
989
|
+
* Welcome content to be displayed. The format of the contents is a subset of Markdown, with support for links only.
|
|
990
|
+
*/
|
|
399
991
|
readonly contents: string;
|
|
992
|
+
/**
|
|
993
|
+
* Condition when the welcome content should be displayed.
|
|
994
|
+
*/
|
|
400
995
|
readonly when?: string;
|
|
996
|
+
/**
|
|
997
|
+
* Group to which this welcome content belongs. Proposed API.
|
|
998
|
+
*/
|
|
401
999
|
readonly group?: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* Condition when the welcome content buttons and command links should be enabled.
|
|
1002
|
+
*/
|
|
402
1003
|
readonly enablement?: string;
|
|
403
1004
|
}
|
|
404
1005
|
export interface INamedProblemPattern extends IProblemPattern {
|
|
1006
|
+
/**
|
|
1007
|
+
* The name of the problem pattern.
|
|
1008
|
+
*/
|
|
405
1009
|
name: string;
|
|
1010
|
+
/**
|
|
1011
|
+
* A human readable label
|
|
1012
|
+
*/
|
|
406
1013
|
label?: string;
|
|
407
1014
|
}
|
|
408
1015
|
export interface ICheckedProblemPattern extends IProblemPattern {
|
|
1016
|
+
/**
|
|
1017
|
+
* The regular expression to find a problem in the console output of an
|
|
1018
|
+
* executed task.
|
|
1019
|
+
*/
|
|
409
1020
|
regexp: string;
|
|
410
1021
|
}
|
|
411
1022
|
export type MultiLineCheckedProblemPattern = ICheckedProblemPattern[];
|
|
412
1023
|
export interface INamedMultiLineCheckedProblemPattern {
|
|
1024
|
+
/**
|
|
1025
|
+
* The name of the problem pattern.
|
|
1026
|
+
*/
|
|
413
1027
|
name: string;
|
|
1028
|
+
/**
|
|
1029
|
+
* A human readable label
|
|
1030
|
+
*/
|
|
414
1031
|
label?: string;
|
|
1032
|
+
/**
|
|
1033
|
+
* The actual patterns
|
|
1034
|
+
*/
|
|
415
1035
|
patterns: MultiLineCheckedProblemPattern;
|
|
416
1036
|
}
|
|
417
1037
|
export type NamedProblemPatterns = (INamedProblemPattern | INamedMultiLineCheckedProblemPattern)[];
|
|
418
1038
|
export interface IProblemPattern {
|
|
1039
|
+
/**
|
|
1040
|
+
* The regular expression to find a problem in the console output of an
|
|
1041
|
+
* executed task.
|
|
1042
|
+
*/
|
|
419
1043
|
regexp?: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* Whether the pattern matches a whole file, or a location (file/line)
|
|
1046
|
+
*
|
|
1047
|
+
* The default is to match for a location. Only valid on the
|
|
1048
|
+
* first problem pattern in a multi line problem matcher.
|
|
1049
|
+
*/
|
|
420
1050
|
kind?: string;
|
|
1051
|
+
/**
|
|
1052
|
+
* The match group index of the filename.
|
|
1053
|
+
* If omitted 1 is used.
|
|
1054
|
+
*/
|
|
421
1055
|
file?: number;
|
|
1056
|
+
/**
|
|
1057
|
+
* The match group index of the problem's location. Valid location
|
|
1058
|
+
* patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn).
|
|
1059
|
+
* If omitted the line and column properties are used.
|
|
1060
|
+
*/
|
|
422
1061
|
location?: number;
|
|
1062
|
+
/**
|
|
1063
|
+
* The match group index of the problem's line in the source file.
|
|
1064
|
+
*
|
|
1065
|
+
* Defaults to 2.
|
|
1066
|
+
*/
|
|
423
1067
|
line?: number;
|
|
1068
|
+
/**
|
|
1069
|
+
* The match group index of the problem's column in the source file.
|
|
1070
|
+
*
|
|
1071
|
+
* Defaults to 3.
|
|
1072
|
+
*/
|
|
424
1073
|
column?: number;
|
|
1074
|
+
/**
|
|
1075
|
+
* The match group index of the problem's end line in the source file.
|
|
1076
|
+
*
|
|
1077
|
+
* Defaults to undefined. No end line is captured.
|
|
1078
|
+
*/
|
|
425
1079
|
endLine?: number;
|
|
1080
|
+
/**
|
|
1081
|
+
* The match group index of the problem's end column in the source file.
|
|
1082
|
+
*
|
|
1083
|
+
* Defaults to undefined. No end column is captured.
|
|
1084
|
+
*/
|
|
426
1085
|
endColumn?: number;
|
|
1086
|
+
/**
|
|
1087
|
+
* The match group index of the problem's severity.
|
|
1088
|
+
*
|
|
1089
|
+
* Defaults to undefined. In this case the problem matcher's severity
|
|
1090
|
+
* is used.
|
|
1091
|
+
*/
|
|
427
1092
|
severity?: number;
|
|
1093
|
+
/**
|
|
1094
|
+
* The match group index of the problem's code.
|
|
1095
|
+
*
|
|
1096
|
+
* Defaults to undefined. No code is captured.
|
|
1097
|
+
*/
|
|
428
1098
|
code?: number;
|
|
1099
|
+
/**
|
|
1100
|
+
* The match group index of the message. If omitted it defaults
|
|
1101
|
+
* to 4 if location is specified. Otherwise it defaults to 5.
|
|
1102
|
+
*/
|
|
429
1103
|
message?: number;
|
|
1104
|
+
/**
|
|
1105
|
+
* Specifies if the last pattern in a multi line problem matcher should
|
|
1106
|
+
* loop as long as it does match a line consequently. Only valid on the
|
|
1107
|
+
* last problem pattern in a multi line problem matcher.
|
|
1108
|
+
*/
|
|
430
1109
|
loop?: boolean;
|
|
431
1110
|
}
|
|
1111
|
+
/**
|
|
1112
|
+
* A watching pattern
|
|
1113
|
+
*/
|
|
432
1114
|
export interface IWatchingPattern {
|
|
1115
|
+
/**
|
|
1116
|
+
* The actual regular expression
|
|
1117
|
+
*/
|
|
433
1118
|
regexp?: string;
|
|
1119
|
+
/**
|
|
1120
|
+
* The match group index of the filename. If provided the expression
|
|
1121
|
+
* is matched for that file only.
|
|
1122
|
+
*/
|
|
434
1123
|
file?: number;
|
|
435
1124
|
}
|
|
1125
|
+
/**
|
|
1126
|
+
* A description to track the start and end of a watching task.
|
|
1127
|
+
*/
|
|
436
1128
|
export interface IBackgroundMonitor {
|
|
1129
|
+
/**
|
|
1130
|
+
* If set to true the watcher is in active mode when the task
|
|
1131
|
+
* starts. This is equals of issuing a line that matches the
|
|
1132
|
+
* beginsPattern.
|
|
1133
|
+
*/
|
|
437
1134
|
activeOnStart?: boolean;
|
|
1135
|
+
/**
|
|
1136
|
+
* If matched in the output the start of a watching task is signaled.
|
|
1137
|
+
*/
|
|
438
1138
|
beginsPattern?: string | IWatchingPattern;
|
|
1139
|
+
/**
|
|
1140
|
+
* If matched in the output the end of a watching task is signaled.
|
|
1141
|
+
*/
|
|
439
1142
|
endsPattern?: string | IWatchingPattern;
|
|
440
1143
|
}
|
|
441
1144
|
export interface INamedProblemMatcher {
|
|
1145
|
+
/**
|
|
1146
|
+
* This name can be used to refer to the
|
|
1147
|
+
* problem matcher from within a task.
|
|
1148
|
+
*/
|
|
442
1149
|
name: string;
|
|
1150
|
+
/**
|
|
1151
|
+
* A human readable label.
|
|
1152
|
+
*/
|
|
443
1153
|
label?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* The name of a base problem matcher to use. If specified the
|
|
1156
|
+
* base problem matcher will be used as a template and properties
|
|
1157
|
+
* specified here will replace properties of the base problem
|
|
1158
|
+
* matcher
|
|
1159
|
+
*/
|
|
444
1160
|
base?: string;
|
|
1161
|
+
/**
|
|
1162
|
+
* The owner of the produced VSCode problem. This is typically
|
|
1163
|
+
* the identifier of a VSCode language service if the problems are
|
|
1164
|
+
* to be merged with the one produced by the language service
|
|
1165
|
+
* or a generated internal id. Defaults to the generated internal id.
|
|
1166
|
+
*/
|
|
445
1167
|
owner?: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* A human-readable string describing the source of this problem.
|
|
1170
|
+
* E.g. 'typescript' or 'super lint'.
|
|
1171
|
+
*/
|
|
446
1172
|
source?: string;
|
|
1173
|
+
/**
|
|
1174
|
+
* Specifies to which kind of documents the problems found by this
|
|
1175
|
+
* matcher are applied. Valid values are:
|
|
1176
|
+
*
|
|
1177
|
+
* "allDocuments": problems found in all documents are applied.
|
|
1178
|
+
* "openDocuments": problems found in documents that are open
|
|
1179
|
+
* are applied.
|
|
1180
|
+
* "closedDocuments": problems found in closed documents are
|
|
1181
|
+
* applied.
|
|
1182
|
+
*/
|
|
447
1183
|
applyTo?: string;
|
|
1184
|
+
/**
|
|
1185
|
+
* The severity of the VSCode problem produced by this problem matcher.
|
|
1186
|
+
*
|
|
1187
|
+
* Valid values are:
|
|
1188
|
+
* "error": to produce errors.
|
|
1189
|
+
* "warning": to produce warnings.
|
|
1190
|
+
* "info": to produce infos.
|
|
1191
|
+
*
|
|
1192
|
+
* The value is used if a pattern doesn't specify a severity match group.
|
|
1193
|
+
* Defaults to "error" if omitted.
|
|
1194
|
+
*/
|
|
448
1195
|
severity?: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* Defines how filename reported in a problem pattern
|
|
1198
|
+
* should be read. Valid values are:
|
|
1199
|
+
* - "absolute": the filename is always treated absolute.
|
|
1200
|
+
* - "relative": the filename is always treated relative to
|
|
1201
|
+
* the current working directory. This is the default.
|
|
1202
|
+
* - ["relative", "path value"]: the filename is always
|
|
1203
|
+
* treated relative to the given path value.
|
|
1204
|
+
* - "autodetect": the filename is treated relative to
|
|
1205
|
+
* the current workspace directory, and if the file
|
|
1206
|
+
* does not exist, it is treated as absolute.
|
|
1207
|
+
* - ["autodetect", "path value"]: the filename is treated
|
|
1208
|
+
* relative to the given path value, and if it does not
|
|
1209
|
+
* exist, it is treated as absolute.
|
|
1210
|
+
* - ["search", { include?: "" | []; exclude?: "" | [] }]: The filename
|
|
1211
|
+
* needs to be searched under the directories named by the "include"
|
|
1212
|
+
* property and their nested subdirectories. With "exclude" property
|
|
1213
|
+
* present, the directories should be removed from the search. When
|
|
1214
|
+
* `include` is not unprovided, the current workspace directory should
|
|
1215
|
+
* be used as the default.
|
|
1216
|
+
*/
|
|
449
1217
|
fileLocation?: string | string[] | [
|
|
450
1218
|
"search",
|
|
451
1219
|
ISearchFileLocationArgs
|
|
452
1220
|
];
|
|
1221
|
+
/**
|
|
1222
|
+
* The name of a predefined problem pattern, the inline definition
|
|
1223
|
+
* of a problem pattern or an array of problem patterns to match
|
|
1224
|
+
* problems spread over multiple lines.
|
|
1225
|
+
*/
|
|
453
1226
|
pattern?: string | IProblemPattern | IProblemPattern[];
|
|
1227
|
+
/**
|
|
1228
|
+
* A regular expression signaling that a watched tasks begins executing
|
|
1229
|
+
* triggered through file watching.
|
|
1230
|
+
*/
|
|
454
1231
|
watchedTaskBeginsRegExp?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* A regular expression signaling that a watched tasks ends executing.
|
|
1234
|
+
*/
|
|
455
1235
|
watchedTaskEndsRegExp?: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* @deprecated Use background instead.
|
|
1238
|
+
*/
|
|
456
1239
|
watching?: IBackgroundMonitor;
|
|
457
1240
|
background?: IBackgroundMonitor;
|
|
458
1241
|
}
|
|
@@ -461,11 +1244,23 @@ export type ISearchFileLocationArgs = {
|
|
|
461
1244
|
exclude?: string | string[];
|
|
462
1245
|
};
|
|
463
1246
|
export interface ITypescriptServerPlugin {
|
|
1247
|
+
/**
|
|
1248
|
+
* Name of the plugin as listed in the package.json.
|
|
1249
|
+
*/
|
|
464
1250
|
name: string;
|
|
1251
|
+
/**
|
|
1252
|
+
* Should the plugin be loaded when using workspace versions of TypeScript?
|
|
1253
|
+
*/
|
|
465
1254
|
enableForWorkspaceTypeScriptVersions: boolean;
|
|
466
1255
|
}
|
|
467
1256
|
export interface IHtmlLanguageParticipant {
|
|
1257
|
+
/**
|
|
1258
|
+
* The id of the language that participates with HTML language server.
|
|
1259
|
+
*/
|
|
468
1260
|
languageId: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* Whether the language participates with HTML auto insertions. If not specified, defaults to <code>true</code>.
|
|
1263
|
+
*/
|
|
469
1264
|
autoInsert: boolean;
|
|
470
1265
|
}
|
|
471
1266
|
export interface IChatParticipantContribution {
|
|
@@ -496,37 +1291,109 @@ export interface IMcpCollectionContribution {
|
|
|
496
1291
|
readonly label: string;
|
|
497
1292
|
}
|
|
498
1293
|
export interface IExtensionContributions {
|
|
1294
|
+
/**
|
|
1295
|
+
* Contributes terminal functionality.
|
|
1296
|
+
*/
|
|
499
1297
|
readonly terminal?: ITerminal;
|
|
1298
|
+
/**
|
|
1299
|
+
* Contributes commands to the command palette.
|
|
1300
|
+
*/
|
|
500
1301
|
readonly commands?: ICommand[];
|
|
1302
|
+
/**
|
|
1303
|
+
* Contributes configuration settings.
|
|
1304
|
+
*/
|
|
501
1305
|
readonly configuration?: any;
|
|
1306
|
+
/**
|
|
1307
|
+
* Contributes debug adapters.
|
|
1308
|
+
*/
|
|
502
1309
|
readonly debuggers?: IDebugger[];
|
|
1310
|
+
/**
|
|
1311
|
+
* Contributes breakpoints.
|
|
1312
|
+
*/
|
|
503
1313
|
readonly breakpoints?: IBreakpoint[];
|
|
1314
|
+
/**
|
|
1315
|
+
* Contributes textmate tokenizers.
|
|
1316
|
+
*/
|
|
504
1317
|
readonly grammars?: IGrammar[];
|
|
1318
|
+
/**
|
|
1319
|
+
* Contributes json schema configuration.
|
|
1320
|
+
*/
|
|
505
1321
|
readonly jsonValidation?: IJSONValidation[];
|
|
1322
|
+
/**
|
|
1323
|
+
* Contributes keybindings.
|
|
1324
|
+
*/
|
|
506
1325
|
readonly keybindings?: IKeyBinding[];
|
|
1326
|
+
/**
|
|
1327
|
+
* Contributes language declarations.
|
|
1328
|
+
*/
|
|
507
1329
|
readonly languages?: ILanguage[];
|
|
1330
|
+
/**
|
|
1331
|
+
* Contributes menu items to the editor
|
|
1332
|
+
*/
|
|
508
1333
|
readonly menus?: {
|
|
509
1334
|
[context: string]: IMenu[];
|
|
510
1335
|
};
|
|
1336
|
+
/**
|
|
1337
|
+
* Contributes submenu items to the editor
|
|
1338
|
+
*/
|
|
511
1339
|
readonly submenus?: ISubMenu[];
|
|
1340
|
+
/**
|
|
1341
|
+
* Contributes snippets.
|
|
1342
|
+
*/
|
|
512
1343
|
readonly snippets?: ISnippet[];
|
|
1344
|
+
/**
|
|
1345
|
+
* Contributes textmate color themes.
|
|
1346
|
+
*/
|
|
513
1347
|
readonly themes?: IColorTheme[];
|
|
1348
|
+
/**
|
|
1349
|
+
* Contributes file icon themes.
|
|
1350
|
+
*/
|
|
514
1351
|
readonly iconThemes?: IIconTheme[];
|
|
1352
|
+
/**
|
|
1353
|
+
* Contributes product icon themes.
|
|
1354
|
+
*/
|
|
515
1355
|
readonly productIconThemes?: IProductTheme[];
|
|
1356
|
+
/**
|
|
1357
|
+
* Contributes views containers to the editor
|
|
1358
|
+
*/
|
|
516
1359
|
readonly viewsContainers?: {
|
|
517
1360
|
[location: string]: IViewContainer[];
|
|
518
1361
|
};
|
|
1362
|
+
/**
|
|
1363
|
+
* Contributes views to the editor
|
|
1364
|
+
*/
|
|
519
1365
|
readonly views?: {
|
|
520
1366
|
[location: string]: IView[];
|
|
521
1367
|
};
|
|
1368
|
+
/**
|
|
1369
|
+
* Contributes extension defined themable colors
|
|
1370
|
+
*/
|
|
522
1371
|
readonly colors?: IColor[];
|
|
1372
|
+
/**
|
|
1373
|
+
* Contributes localizations to the editor
|
|
1374
|
+
*/
|
|
523
1375
|
readonly localizations?: ILocalizationContribution[];
|
|
1376
|
+
/**
|
|
1377
|
+
* Contributed custom editors.
|
|
1378
|
+
*/
|
|
524
1379
|
readonly customEditors?: readonly IWebviewEditor[];
|
|
525
1380
|
readonly codeActions?: readonly ICodeActionContribution[];
|
|
1381
|
+
/**
|
|
1382
|
+
* Contributes authentication
|
|
1383
|
+
*/
|
|
526
1384
|
readonly authentication?: IAuthenticationContribution[];
|
|
1385
|
+
/**
|
|
1386
|
+
* Contribute walkthroughs to help users getting started with your extension.
|
|
1387
|
+
*/
|
|
527
1388
|
readonly walkthroughs?: IWalkthrough[];
|
|
528
1389
|
readonly startEntries?: IStartEntry[];
|
|
1390
|
+
/**
|
|
1391
|
+
* Contributes notebook document provider.
|
|
1392
|
+
*/
|
|
529
1393
|
readonly notebooks?: INotebookEntry[];
|
|
1394
|
+
/**
|
|
1395
|
+
* Contributes notebook output renderer provider.
|
|
1396
|
+
*/
|
|
530
1397
|
readonly notebookRenderer?: INotebookRendererContribution[];
|
|
531
1398
|
readonly debugVisualizers?: IDebugVisualizationContribution[];
|
|
532
1399
|
readonly chatParticipants?: ReadonlyArray<IChatParticipantContribution>;
|
|
@@ -534,27 +1401,78 @@ export interface IExtensionContributions {
|
|
|
534
1401
|
readonly languageModelToolSets?: ReadonlyArray<IToolSetContribution>;
|
|
535
1402
|
readonly mcpServerDefinitionProviders?: ReadonlyArray<IMcpCollectionContribution>;
|
|
536
1403
|
readonly modelContextServerCollections?: ReadonlyArray<IMcpCollectionContribution>;
|
|
1404
|
+
/**
|
|
1405
|
+
* Contributes notebook preloads.
|
|
1406
|
+
*/
|
|
537
1407
|
readonly notebookPreload?: NotebookPreload[];
|
|
1408
|
+
/**
|
|
1409
|
+
* Contributes items to the status bar.
|
|
1410
|
+
*/
|
|
538
1411
|
readonly statusBarItems?: IStatusBarItem[];
|
|
1412
|
+
/**
|
|
1413
|
+
* Contributes help information for Remote
|
|
1414
|
+
*/
|
|
539
1415
|
readonly remoteHelp?: IRemoteHelp;
|
|
1416
|
+
/**
|
|
1417
|
+
* Contributes task kinds
|
|
1418
|
+
*/
|
|
540
1419
|
readonly taskDefinitions?: ITaskDefinitions[];
|
|
1420
|
+
/**
|
|
1421
|
+
* Contributes extension defined themable icons
|
|
1422
|
+
*/
|
|
541
1423
|
readonly icons?: {
|
|
542
1424
|
[id: string]: IIcon;
|
|
543
1425
|
};
|
|
1426
|
+
/**
|
|
1427
|
+
* Contributed documentation.
|
|
1428
|
+
*/
|
|
544
1429
|
readonly documentation?: IDocumentation;
|
|
1430
|
+
/**
|
|
1431
|
+
* Contributes resource label formatting rules.
|
|
1432
|
+
*/
|
|
545
1433
|
readonly resourceLabelFormatters?: IResourceLabelFormatters[];
|
|
546
1434
|
readonly configurationDefaults?: {
|
|
547
1435
|
[id: string]: any;
|
|
548
1436
|
};
|
|
1437
|
+
/**
|
|
1438
|
+
* Contributes semantic token types.
|
|
1439
|
+
*/
|
|
549
1440
|
readonly semanticTokenTypes?: ISemanticTokenTypes[];
|
|
1441
|
+
/**
|
|
1442
|
+
* Contributes semantic token modifiers.
|
|
1443
|
+
*/
|
|
550
1444
|
readonly semanticTokenModifiers?: ISemanticTokenModifiers[];
|
|
1445
|
+
/**
|
|
1446
|
+
* Contributes semantic token scope maps.
|
|
1447
|
+
*/
|
|
551
1448
|
readonly semanticTokenScopes?: ISemanticTokenScopes[];
|
|
1449
|
+
/**
|
|
1450
|
+
* Contributes terminal quick fixes.
|
|
1451
|
+
*/
|
|
552
1452
|
readonly terminalQuickFixes?: ITerminalQuickFix[];
|
|
1453
|
+
/**
|
|
1454
|
+
* Contributes an Interactive Session provider
|
|
1455
|
+
*/
|
|
553
1456
|
readonly interactiveSession?: IInteractiveSession[];
|
|
1457
|
+
/**
|
|
1458
|
+
* Contributed views welcome content. Welcome content will be rendered in tree based views whenever they have no meaningful content to display, ie. the File Explorer when no folder is open. Such content is useful as in-product documentation to drive users to use certain features before they are available. A good example would be a `Clone Repository` button in the File Explorer welcome view.
|
|
1459
|
+
*/
|
|
554
1460
|
readonly viewsWelcome?: IViewsWelcome[];
|
|
1461
|
+
/**
|
|
1462
|
+
* Contributes problem matchers
|
|
1463
|
+
*/
|
|
555
1464
|
readonly problemMatchers?: INamedProblemMatcher[];
|
|
1465
|
+
/**
|
|
1466
|
+
* Contributes problem patterns
|
|
1467
|
+
*/
|
|
556
1468
|
readonly problemPatterns?: NamedProblemPatterns;
|
|
1469
|
+
/**
|
|
1470
|
+
* Contributed TypeScript server plugins.
|
|
1471
|
+
*/
|
|
557
1472
|
readonly typescriptServerPlugins?: ITypescriptServerPlugin[];
|
|
1473
|
+
/**
|
|
1474
|
+
* A list of languages that participate with the HTML language server.
|
|
1475
|
+
*/
|
|
558
1476
|
readonly htmlLanguageParticipants?: IHtmlLanguageParticipant[];
|
|
559
1477
|
readonly html?: {
|
|
560
1478
|
customData?: string[];
|
|
@@ -666,11 +1584,34 @@ export interface IExtension {
|
|
|
666
1584
|
][];
|
|
667
1585
|
readonly preRelease: boolean;
|
|
668
1586
|
}
|
|
1587
|
+
/**
|
|
1588
|
+
* **!Do not construct directly!**
|
|
1589
|
+
*
|
|
1590
|
+
* **!Only static methods because it gets serialized!**
|
|
1591
|
+
*
|
|
1592
|
+
* This represents the "canonical" version for an extension identifier. Extension ids
|
|
1593
|
+
* have to be case-insensitive (due to the marketplace), but we must ensure case
|
|
1594
|
+
* preservation because the extension API is already public at this time.
|
|
1595
|
+
*
|
|
1596
|
+
* For example, given an extension with the publisher `"Hello"` and the name `"World"`,
|
|
1597
|
+
* its canonical extension identifier is `"Hello.World"`. This extension could be
|
|
1598
|
+
* referenced in some other extension's dependencies using the string `"hello.world"`.
|
|
1599
|
+
*
|
|
1600
|
+
* To make matters more complicated, an extension can optionally have an UUID. When two
|
|
1601
|
+
* extensions have the same UUID, they are considered equal even if their identifier is different.
|
|
1602
|
+
*/
|
|
669
1603
|
export declare class ExtensionIdentifier {
|
|
670
1604
|
readonly value: string;
|
|
1605
|
+
/**
|
|
1606
|
+
* Do not use directly. This is public to avoid mangling and thus
|
|
1607
|
+
* allow compatibility between running from source and a built version.
|
|
1608
|
+
*/
|
|
671
1609
|
readonly _lower: string;
|
|
672
1610
|
constructor(value: string);
|
|
673
1611
|
static equals(a: ExtensionIdentifier | string | null | undefined, b: ExtensionIdentifier | string | null | undefined): boolean;
|
|
1612
|
+
/**
|
|
1613
|
+
* Gives the value by which to index (for equality).
|
|
1614
|
+
*/
|
|
674
1615
|
static toKey(id: ExtensionIdentifier | string): string;
|
|
675
1616
|
}
|
|
676
1617
|
export declare class ExtensionIdentifierSet {
|
|
@@ -695,6 +1636,9 @@ export declare class ExtensionIdentifierMap<T> {
|
|
|
695
1636
|
T
|
|
696
1637
|
]>;
|
|
697
1638
|
}
|
|
1639
|
+
/**
|
|
1640
|
+
* An error that is clearly from an extension, identified by the `ExtensionIdentifier`
|
|
1641
|
+
*/
|
|
698
1642
|
export declare class ExtensionError extends Error {
|
|
699
1643
|
readonly extension: ExtensionIdentifier;
|
|
700
1644
|
constructor(extensionIdentifier: ExtensionIdentifier, cause: Error, message?: string);
|