@codingame/monaco-vscode-api 16.1.0 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +107 -2
- package/monaco.d.ts +2 -2
- package/package.json +10 -9
- package/services.d.ts +4 -4
- package/services.js +7 -18
- package/vscode/src/vs/base/browser/dom.d.ts +1 -0
- package/vscode/src/vs/base/browser/dom.js +6 -1
- package/vscode/src/vs/base/browser/mouseEvent.d.ts +2 -0
- package/vscode/src/vs/base/browser/mouseEvent.js +1 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +2 -3
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +6 -1
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +1 -3
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +5 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +17 -4
- package/vscode/src/vs/base/common/arrays.d.ts +1 -0
- package/vscode/src/vs/base/common/arrays.js +5 -2
- package/vscode/src/vs/base/common/async.js +9 -2
- package/vscode/src/vs/base/common/codicons.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +5 -0
- package/vscode/src/vs/base/common/color.d.ts +1 -0
- package/vscode/src/vs/base/common/color.js +10 -0
- package/vscode/src/vs/base/common/comparers.d.ts +2 -2
- package/vscode/src/vs/base/common/decorators.d.ts +1 -1
- package/vscode/src/vs/base/common/glob.d.ts +3 -0
- package/vscode/src/vs/base/common/glob.js +10 -1
- package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -0
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +6 -8
- package/vscode/src/vs/base/common/observableInternal/autorun.js +15 -11
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +0 -10
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +23 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +30 -0
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +18 -13
- package/vscode/src/vs/base/common/observableInternal/derived.js +47 -18
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +6 -5
- package/vscode/src/vs/base/common/observableInternal/index.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/promise.d.ts +28 -0
- package/vscode/src/vs/base/common/observableInternal/promise.js +65 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.d.ts +16 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.js +36 -0
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +2 -0
- package/vscode/src/vs/base/common/observableInternal/utils.js +19 -11
- package/vscode/src/vs/base/common/product.d.ts +5 -0
- package/vscode/src/vs/base/common/sseParser.d.ts +26 -0
- package/vscode/src/vs/base/common/sseParser.js +134 -0
- package/vscode/src/vs/base/common/stopwatch.js +2 -2
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +8 -19
- package/vscode/src/vs/base/common/ternarySearchTree.d.ts +1 -0
- package/vscode/src/vs/base/common/ternarySearchTree.js +55 -13
- package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +1 -0
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +3 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +6 -3
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +86 -54
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +12 -8
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +9 -6
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +3 -3
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -2
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.js +2 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +8 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +6 -1
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +1 -0
- package/vscode/src/vs/editor/browser/view/renderingContext.js +3 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.js +13 -6
- package/vscode/src/vs/editor/browser/view/viewOverlays.js +4 -1
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -5
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +4 -2
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +6 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +2 -2
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +5 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +15 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +7 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +10 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +19 -15
- package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +5 -0
- package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +20 -0
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +24 -23
- package/vscode/src/vs/editor/common/config/editorOptions.js +3 -4
- package/vscode/src/vs/editor/common/core/columnRange.d.ts +11 -0
- package/vscode/src/vs/editor/common/core/columnRange.js +32 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.js +10 -0
- package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
- package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +15 -3
- package/vscode/src/vs/editor/common/core/positionToOffset.js +45 -11
- package/vscode/src/vs/editor/common/core/rangeSingleLine.d.ts +9 -0
- package/vscode/src/vs/editor/common/core/rangeSingleLine.js +27 -0
- package/vscode/src/vs/editor/common/core/textEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/textEdit.js +41 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -0
- package/vscode/src/vs/editor/common/languages/modesRegistry.d.ts +2 -2
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +4 -2
- package/vscode/src/vs/editor/common/languages.d.ts +22 -1
- package/vscode/src/vs/editor/common/languages.js +7 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +5 -1
- package/vscode/src/vs/editor/common/model/textModel.js +80 -18
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +5 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +7 -1
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +11 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +14 -1
- package/vscode/src/vs/editor/common/tokens/common.d.ts +7 -0
- package/vscode/src/vs/editor/common/tokens/common.js +18 -0
- package/vscode/src/vs/editor/common/tokens/contiguousTokensEditing.d.ts +1 -1
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +2 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +20 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +2 -1
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.js +9 -4
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +4 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +25 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.js +73 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +35 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +339 -0
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +8 -6
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +42 -49
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +6 -3
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.js +16 -5
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +44 -7
- package/vscode/src/vs/editor/common/viewModel.d.ts +5 -0
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +11 -3
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +14 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +20 -14
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +3 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +4 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +5 -11
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +1 -7
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +2 -15
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +24 -23
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +5 -5
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +14 -12
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +21 -21
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +0 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +29 -41
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +11 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +10 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +31 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +16 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +156 -202
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +21 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +135 -431
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +98 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +487 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +34 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +141 -132
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +2 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +21 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +19 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +17 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +5 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +139 -188
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +8 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.d.ts +23 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +157 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +37 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +28 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +21 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +215 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +22 -21
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +17 -17
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +23 -49
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +8 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +2 -2
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +24 -14
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +19 -18
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +5 -10
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +23 -14
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +2 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +17 -3
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +6 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +2 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -1
- package/vscode/src/vs/platform/actions/common/actions.js +2 -0
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.d.ts +1 -0
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +3 -0
- package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +15 -13
- package/vscode/src/vs/platform/configuration/common/configurations.js +1 -1
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +5 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +6 -2
- package/vscode/src/vs/platform/editor/common/editor.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +8 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +94 -4
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -7
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -11
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +7 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +9 -8
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.js +5 -4
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
- package/vscode/src/vs/platform/label/common/label.service.d.ts +1 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +2 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +5 -5
- package/vscode/src/vs/platform/markers/common/markers.d.ts +7 -0
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -7
- package/vscode/src/vs/platform/native/common/native.d.ts +168 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +6 -2
- package/vscode/src/vs/platform/notification/common/notification.js +3 -2
- package/vscode/src/vs/platform/notification/common/notification.service.d.ts +2 -3
- package/vscode/src/vs/platform/product/common/product.js +93 -48
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +4 -19
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +6 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +33 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +2 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +6 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +25 -18
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.d.ts +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +58 -43
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
- package/vscode/src/vs/platform/registry/common/platform.js +9 -1
- package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/request/common/request.service.d.ts +1 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +14 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +14 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -2
- package/vscode/src/vs/platform/theme/browser/defaultStyles.js +4 -2
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +7 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +12 -4
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +94 -94
- package/vscode/src/vs/platform/theme/common/colors/inputColors.d.ts +2 -0
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +49 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +10 -8
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +0 -8
- package/vscode/src/vs/platform/theme/common/themeService.js +4 -3
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -2
- package/vscode/src/vs/platform/window/common/window.d.ts +4 -0
- package/vscode/src/vs/platform/window/common/window.js +2 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +27 -20
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +54 -19
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.js +38 -0
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +30 -17
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +0 -1
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +15 -4
- package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +4 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +31 -6
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +60 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +15 -9
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -3
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +279 -82
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostRequireInterceptor.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +21 -0
- package/vscode/src/vs/workbench/api/common/extHostSearch.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +27 -9
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +201 -29
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -27
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +79 -28
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +7 -4
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +34 -9
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.d.ts +1 -0
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.js +3 -0
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +33 -33
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +10 -16
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +3 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -71
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +13 -9
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -147
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +15 -14
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +245 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +435 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +6 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -49
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -26
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +16 -23
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +585 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +1179 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +116 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +211 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +12 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +14 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +18 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/promptHeader/metadata/index.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +14 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.d.ts +28 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.d.ts +10 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +8 -25
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +11 -97
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +171 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +127 -0
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -8
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -10
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +8 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +16 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +77 -16
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
- package/vscode/src/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.d.ts +17 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.js +10 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +13 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +2 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +61 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +3 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +25 -29
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +4 -1
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.js +3 -2
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +4 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +2 -4
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.d.ts +1 -0
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +2 -0
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/output/common/output.js +6 -4
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/search/common/search.d.ts +2 -1
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +5 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.js +6 -1
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +2 -2
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +31 -23
- package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +64 -0
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +560 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +165 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +74 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +12 -2
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +204 -9
- package/vscode-dts/vscode.proposed.aiSettingsSearch.d.ts +30 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +84 -5
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +1 -1
- package/vscode-dts/vscode.proposed.commentThreadApplicability.d.ts +1 -1
- package/vscode-dts/vscode.proposed.contribDebugCreateConfiguration.d.ts +1 -1
- package/vscode-dts/vscode.proposed.d.ts +2 -2
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -2
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +46 -8
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +106 -16
- package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +2 -0
- package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +115 -21
- package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +7 -3
- package/vscode-dts/vscode.proposed.textSearchProvider2.d.ts +23 -1
- package/vscode-dts/vscode.proposed.toolProgress.d.ts +25 -0
- package/vscode-dts/vscode.proposed.tunnelFactory.d.ts +1 -1
- package/workbench.d.ts +1 -1
- package/vscode-dts/vscode.proposed.languageModelToolsForAgent.d.ts +0 -8
- package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +0 -170
|
@@ -948,19 +948,19 @@ const configurationRegistry = ( Registry.as(Extensions.Configuration));
|
|
|
948
948
|
configurationRegistry.registerConfiguration({
|
|
949
949
|
id: 'workbench',
|
|
950
950
|
order: 7,
|
|
951
|
-
title: ( localize(
|
|
951
|
+
title: ( localize(1896, "Workbench")),
|
|
952
952
|
type: 'object',
|
|
953
953
|
properties: {
|
|
954
954
|
[multiSelectModifierSettingKey]: {
|
|
955
955
|
type: 'string',
|
|
956
956
|
enum: ['ctrlCmd', 'alt'],
|
|
957
957
|
markdownEnumDescriptions: [
|
|
958
|
-
( localize(
|
|
959
|
-
( localize(
|
|
958
|
+
( localize(1897, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")),
|
|
959
|
+
( localize(1898, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))
|
|
960
960
|
],
|
|
961
961
|
default: 'ctrlCmd',
|
|
962
962
|
description: ( localize(
|
|
963
|
-
|
|
963
|
+
1899,
|
|
964
964
|
"The modifier to be used to add an item in trees and lists to a multi-selection with the mouse (for example in the explorer, open editors and scm view). The 'Open to Side' mouse gestures - if supported - will adapt such that they do not conflict with the multiselect modifier."
|
|
965
965
|
))
|
|
966
966
|
},
|
|
@@ -969,7 +969,7 @@ configurationRegistry.registerConfiguration({
|
|
|
969
969
|
enum: ['singleClick', 'doubleClick'],
|
|
970
970
|
default: 'singleClick',
|
|
971
971
|
description: ( localize(
|
|
972
|
-
|
|
972
|
+
1900,
|
|
973
973
|
"Controls how to open items in trees and lists using the mouse (if supported). Note that some trees and lists might choose to ignore this setting if it is not applicable."
|
|
974
974
|
))
|
|
975
975
|
},
|
|
@@ -977,59 +977,59 @@ configurationRegistry.registerConfiguration({
|
|
|
977
977
|
type: 'boolean',
|
|
978
978
|
default: false,
|
|
979
979
|
description: ( localize(
|
|
980
|
-
|
|
980
|
+
1901,
|
|
981
981
|
"Controls whether lists and trees support horizontal scrolling in the workbench. Warning: turning on this setting has a performance implication."
|
|
982
982
|
))
|
|
983
983
|
},
|
|
984
984
|
[scrollByPageKey]: {
|
|
985
985
|
type: 'boolean',
|
|
986
986
|
default: false,
|
|
987
|
-
description: ( localize(
|
|
987
|
+
description: ( localize(1902, "Controls whether clicks in the scrollbar scroll page by page."))
|
|
988
988
|
},
|
|
989
989
|
[treeIndentKey]: {
|
|
990
990
|
type: 'number',
|
|
991
991
|
default: 8,
|
|
992
992
|
minimum: 4,
|
|
993
993
|
maximum: 40,
|
|
994
|
-
description: ( localize(
|
|
994
|
+
description: ( localize(1903, "Controls tree indentation in pixels."))
|
|
995
995
|
},
|
|
996
996
|
[treeRenderIndentGuidesKey]: {
|
|
997
997
|
type: 'string',
|
|
998
998
|
enum: ['none', 'onHover', 'always'],
|
|
999
999
|
default: 'onHover',
|
|
1000
|
-
description: ( localize(
|
|
1000
|
+
description: ( localize(1904, "Controls whether the tree should render indent guides."))
|
|
1001
1001
|
},
|
|
1002
1002
|
[listSmoothScrolling]: {
|
|
1003
1003
|
type: 'boolean',
|
|
1004
1004
|
default: false,
|
|
1005
|
-
description: ( localize(
|
|
1005
|
+
description: ( localize(1905, "Controls whether lists and trees have smooth scrolling.")),
|
|
1006
1006
|
},
|
|
1007
1007
|
[mouseWheelScrollSensitivityKey]: {
|
|
1008
1008
|
type: 'number',
|
|
1009
1009
|
default: 1,
|
|
1010
1010
|
markdownDescription: ( localize(
|
|
1011
|
-
|
|
1011
|
+
1906,
|
|
1012
1012
|
"A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
|
|
1013
1013
|
))
|
|
1014
1014
|
},
|
|
1015
1015
|
[fastScrollSensitivityKey]: {
|
|
1016
1016
|
type: 'number',
|
|
1017
1017
|
default: 5,
|
|
1018
|
-
markdownDescription: ( localize(
|
|
1018
|
+
markdownDescription: ( localize(1907, "Scrolling speed multiplier when pressing `Alt`."))
|
|
1019
1019
|
},
|
|
1020
1020
|
[defaultFindModeSettingKey]: {
|
|
1021
1021
|
type: 'string',
|
|
1022
1022
|
enum: ['highlight', 'filter'],
|
|
1023
1023
|
enumDescriptions: [
|
|
1024
1024
|
( localize(
|
|
1025
|
-
|
|
1025
|
+
1908,
|
|
1026
1026
|
"Highlight elements when searching. Further up and down navigation will traverse only the highlighted elements."
|
|
1027
1027
|
)),
|
|
1028
|
-
( localize(
|
|
1028
|
+
( localize(1909, "Filter elements when searching."))
|
|
1029
1029
|
],
|
|
1030
1030
|
default: 'highlight',
|
|
1031
1031
|
description: ( localize(
|
|
1032
|
-
|
|
1032
|
+
1910,
|
|
1033
1033
|
"Controls the default find mode for lists and trees in the workbench."
|
|
1034
1034
|
))
|
|
1035
1035
|
},
|
|
@@ -1038,26 +1038,26 @@ configurationRegistry.registerConfiguration({
|
|
|
1038
1038
|
enum: ['simple', 'highlight', 'filter'],
|
|
1039
1039
|
enumDescriptions: [
|
|
1040
1040
|
( localize(
|
|
1041
|
-
|
|
1041
|
+
1911,
|
|
1042
1042
|
"Simple keyboard navigation focuses elements which match the keyboard input. Matching is done only on prefixes."
|
|
1043
1043
|
)),
|
|
1044
1044
|
( localize(
|
|
1045
|
-
|
|
1045
|
+
1912,
|
|
1046
1046
|
"Highlight keyboard navigation highlights elements which match the keyboard input. Further up and down navigation will traverse only the highlighted elements."
|
|
1047
1047
|
)),
|
|
1048
1048
|
( localize(
|
|
1049
|
-
|
|
1049
|
+
1913,
|
|
1050
1050
|
"Filter keyboard navigation will filter out and hide all the elements which do not match the keyboard input."
|
|
1051
1051
|
))
|
|
1052
1052
|
],
|
|
1053
1053
|
default: 'highlight',
|
|
1054
1054
|
description: ( localize(
|
|
1055
|
-
|
|
1055
|
+
1914,
|
|
1056
1056
|
"Controls the keyboard navigation style for lists and trees in the workbench. Can be simple, highlight and filter."
|
|
1057
1057
|
)),
|
|
1058
1058
|
deprecated: true,
|
|
1059
1059
|
deprecationMessage: ( localize(
|
|
1060
|
-
|
|
1060
|
+
1915,
|
|
1061
1061
|
"Please use 'workbench.list.defaultFindMode' and 'workbench.list.typeNavigationMode' instead."
|
|
1062
1062
|
))
|
|
1063
1063
|
},
|
|
@@ -1065,12 +1065,12 @@ configurationRegistry.registerConfiguration({
|
|
|
1065
1065
|
type: 'string',
|
|
1066
1066
|
enum: ['fuzzy', 'contiguous'],
|
|
1067
1067
|
enumDescriptions: [
|
|
1068
|
-
( localize(
|
|
1069
|
-
( localize(
|
|
1068
|
+
( localize(1916, "Use fuzzy matching when searching.")),
|
|
1069
|
+
( localize(1917, "Use contiguous matching when searching."))
|
|
1070
1070
|
],
|
|
1071
1071
|
default: 'fuzzy',
|
|
1072
1072
|
description: ( localize(
|
|
1073
|
-
|
|
1073
|
+
1918,
|
|
1074
1074
|
"Controls the type of matching used when searching lists and trees in the workbench."
|
|
1075
1075
|
))
|
|
1076
1076
|
},
|
|
@@ -1079,21 +1079,21 @@ configurationRegistry.registerConfiguration({
|
|
|
1079
1079
|
enum: ['singleClick', 'doubleClick'],
|
|
1080
1080
|
default: 'singleClick',
|
|
1081
1081
|
description: ( localize(
|
|
1082
|
-
|
|
1082
|
+
1919,
|
|
1083
1083
|
"Controls how tree folders are expanded when clicking the folder names. Note that some trees and lists might choose to ignore this setting if it is not applicable."
|
|
1084
1084
|
)),
|
|
1085
1085
|
},
|
|
1086
1086
|
[treeStickyScroll]: {
|
|
1087
1087
|
type: 'boolean',
|
|
1088
1088
|
default: true,
|
|
1089
|
-
description: ( localize(
|
|
1089
|
+
description: ( localize(1920, "Controls whether sticky scrolling is enabled in trees.")),
|
|
1090
1090
|
},
|
|
1091
1091
|
[treeStickyScrollMaxElements]: {
|
|
1092
1092
|
type: 'number',
|
|
1093
1093
|
minimum: 1,
|
|
1094
1094
|
default: 7,
|
|
1095
1095
|
markdownDescription: ( localize(
|
|
1096
|
-
|
|
1096
|
+
1921,
|
|
1097
1097
|
"Controls the number of sticky elements displayed in the tree when {0} is enabled.",
|
|
1098
1098
|
'`#workbench.tree.enableStickyScroll#`'
|
|
1099
1099
|
)),
|
|
@@ -1103,7 +1103,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1103
1103
|
enum: ['automatic', 'trigger'],
|
|
1104
1104
|
default: 'automatic',
|
|
1105
1105
|
markdownDescription: ( localize(
|
|
1106
|
-
|
|
1106
|
+
1922,
|
|
1107
1107
|
"Controls how type navigation works in lists and trees in the workbench. When set to `trigger`, type navigation begins once the `list.triggerTypeNavigation` command is run."
|
|
1108
1108
|
)),
|
|
1109
1109
|
}
|
|
@@ -413,12 +413,12 @@ function LogLevelToString(logLevel) {
|
|
|
413
413
|
}
|
|
414
414
|
function LogLevelToLocalizedString(logLevel) {
|
|
415
415
|
switch (logLevel) {
|
|
416
|
-
case LogLevel.Trace: return { original: 'Trace', value: ( localize(
|
|
417
|
-
case LogLevel.Debug: return { original: 'Debug', value: ( localize(
|
|
418
|
-
case LogLevel.Info: return { original: 'Info', value: ( localize(
|
|
419
|
-
case LogLevel.Warning: return { original: 'Warning', value: ( localize(
|
|
420
|
-
case LogLevel.Error: return { original: 'Error', value: ( localize(
|
|
421
|
-
case LogLevel.Off: return { original: 'Off', value: ( localize(
|
|
416
|
+
case LogLevel.Trace: return { original: 'Trace', value: ( localize(1923, "Trace")) };
|
|
417
|
+
case LogLevel.Debug: return { original: 'Debug', value: ( localize(1924, "Debug")) };
|
|
418
|
+
case LogLevel.Info: return { original: 'Info', value: ( localize(1925, "Info")) };
|
|
419
|
+
case LogLevel.Warning: return { original: 'Warning', value: ( localize(1926, "Warning")) };
|
|
420
|
+
case LogLevel.Error: return { original: 'Error', value: ( localize(1927, "Error")) };
|
|
421
|
+
case LogLevel.Off: return { original: 'Off', value: ( localize(1928, "Off")) };
|
|
422
422
|
}
|
|
423
423
|
}
|
|
424
424
|
function parseLogLevel(logLevel) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
2
2
|
import { URI } from "../../../base/common/uri.js";
|
|
3
|
-
import { IMarker, IMarkerData, IResourceMarker, MarkerStatistics } from "./markers.js";
|
|
3
|
+
import { IMarker, IMarkerData, IMarkerReadOptions, IResourceMarker, MarkerStatistics } from "./markers.js";
|
|
4
4
|
import { IMarkerService } from "./markers.service.js";
|
|
5
5
|
export declare const unsupportedSchemas: Set<string>;
|
|
6
6
|
export declare class MarkerService implements IMarkerService {
|
|
@@ -18,12 +18,7 @@ export declare class MarkerService implements IMarkerService {
|
|
|
18
18
|
private static _toMarker;
|
|
19
19
|
changeAll(owner: string, data: IResourceMarker[]): void;
|
|
20
20
|
private _createFilteredMarker;
|
|
21
|
-
read(filter?:
|
|
22
|
-
owner?: string;
|
|
23
|
-
resource?: URI;
|
|
24
|
-
severities?: number;
|
|
25
|
-
take?: number;
|
|
26
|
-
}): IMarker[];
|
|
21
|
+
read(filter?: IMarkerReadOptions): IMarker[];
|
|
27
22
|
private static _accept;
|
|
28
23
|
private static _merge;
|
|
29
24
|
}
|
|
@@ -250,9 +250,9 @@ class MarkerService {
|
|
|
250
250
|
}
|
|
251
251
|
_createFilteredMarker(resource, reasons) {
|
|
252
252
|
const message = reasons.length === 1
|
|
253
|
-
? ( localize(
|
|
253
|
+
? ( localize(1929, "Problems are paused because: \"{0}\"", reasons[0]))
|
|
254
254
|
: ( localize(
|
|
255
|
-
|
|
255
|
+
1930,
|
|
256
256
|
"Problems are paused because: \"{0}\" and {1} more",
|
|
257
257
|
reasons[0],
|
|
258
258
|
reasons.length - 1
|
|
@@ -274,7 +274,7 @@ class MarkerService {
|
|
|
274
274
|
take = -1;
|
|
275
275
|
}
|
|
276
276
|
if (owner && resource) {
|
|
277
|
-
const reasons = this._filteredResources.get(resource);
|
|
277
|
+
const reasons = !filter.ignoreResourceFilters ? this._filteredResources.get(resource) : undefined;
|
|
278
278
|
if (reasons?.length) {
|
|
279
279
|
const infoMarker = this._createFilteredMarker(resource, reasons);
|
|
280
280
|
return [infoMarker];
|
|
@@ -288,7 +288,7 @@ class MarkerService {
|
|
|
288
288
|
if (take > 0 && result.length === take) {
|
|
289
289
|
break;
|
|
290
290
|
}
|
|
291
|
-
const reasons = this._filteredResources.get(resource);
|
|
291
|
+
const reasons = !filter.ignoreResourceFilters ? this._filteredResources.get(resource) : undefined;
|
|
292
292
|
if (reasons?.length) {
|
|
293
293
|
result.push(this._createFilteredMarker(resource, reasons));
|
|
294
294
|
}
|
|
@@ -312,7 +312,7 @@ class MarkerService {
|
|
|
312
312
|
if (take > 0 && result.length === take) {
|
|
313
313
|
break;
|
|
314
314
|
}
|
|
315
|
-
const reasons = this._filteredResources.get(data.resource);
|
|
315
|
+
const reasons = !filter.ignoreResourceFilters ? this._filteredResources.get(data.resource) : undefined;
|
|
316
316
|
if (reasons?.length) {
|
|
317
317
|
result.push(this._createFilteredMarker(data.resource, reasons));
|
|
318
318
|
filtered.add(data.resource);
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import Severity from "../../../base/common/severity.js";
|
|
2
2
|
import { URI } from "../../../base/common/uri.js";
|
|
3
|
+
export interface IMarkerReadOptions {
|
|
4
|
+
owner?: string;
|
|
5
|
+
resource?: URI;
|
|
6
|
+
severities?: number;
|
|
7
|
+
take?: number;
|
|
8
|
+
ignoreResourceFilters?: boolean;
|
|
9
|
+
}
|
|
3
10
|
export interface IRelatedInformation {
|
|
4
11
|
resource: URI;
|
|
5
12
|
message: string;
|
|
@@ -20,17 +20,17 @@ var MarkerSeverity;
|
|
|
20
20
|
}
|
|
21
21
|
MarkerSeverity.compare = compare;
|
|
22
22
|
const _displayStrings = Object.create(null);
|
|
23
|
-
_displayStrings[MarkerSeverity.Error] = ( localize(
|
|
24
|
-
_displayStrings[MarkerSeverity.Warning] = ( localize(
|
|
25
|
-
_displayStrings[MarkerSeverity.Info] = ( localize(
|
|
23
|
+
_displayStrings[MarkerSeverity.Error] = ( localize(1931, "Error"));
|
|
24
|
+
_displayStrings[MarkerSeverity.Warning] = ( localize(1932, "Warning"));
|
|
25
|
+
_displayStrings[MarkerSeverity.Info] = ( localize(1933, "Info"));
|
|
26
26
|
function toString(a) {
|
|
27
27
|
return _displayStrings[a] || '';
|
|
28
28
|
}
|
|
29
29
|
MarkerSeverity.toString = toString;
|
|
30
30
|
const _displayStringsPlural = Object.create(null);
|
|
31
|
-
_displayStringsPlural[MarkerSeverity.Error] = ( localize(
|
|
32
|
-
_displayStringsPlural[MarkerSeverity.Warning] = ( localize(
|
|
33
|
-
_displayStringsPlural[MarkerSeverity.Info] = ( localize(
|
|
31
|
+
_displayStringsPlural[MarkerSeverity.Error] = ( localize(1934, "Errors"));
|
|
32
|
+
_displayStringsPlural[MarkerSeverity.Warning] = ( localize(1935, "Warnings"));
|
|
33
|
+
_displayStringsPlural[MarkerSeverity.Info] = ( localize(1936, "Infos"));
|
|
34
34
|
function toStringPlural(a) {
|
|
35
35
|
return _displayStringsPlural[a] || '';
|
|
36
36
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Event } from "../../../base/common/event.js";
|
|
2
2
|
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
3
3
|
import { URI } from "../../../base/common/uri.js";
|
|
4
|
-
import { IMarker, IMarkerData, IResourceMarker, MarkerStatistics } from "./markers.js";
|
|
4
|
+
import { IMarker, IMarkerData, IMarkerReadOptions, IResourceMarker, MarkerStatistics } from "./markers.js";
|
|
5
5
|
export declare const IMarkerService: import("../../instantiation/common/instantiation.js").ServiceIdentifier<IMarkerService>;
|
|
6
6
|
export interface IMarkerService {
|
|
7
7
|
readonly _serviceBrand: undefined;
|
|
@@ -9,12 +9,7 @@ export interface IMarkerService {
|
|
|
9
9
|
changeOne(owner: string, resource: URI, markers: IMarkerData[]): void;
|
|
10
10
|
changeAll(owner: string, data: IResourceMarker[]): void;
|
|
11
11
|
remove(owner: string, resources: URI[]): void;
|
|
12
|
-
read(filter?:
|
|
13
|
-
owner?: string;
|
|
14
|
-
resource?: URI;
|
|
15
|
-
severities?: number;
|
|
16
|
-
take?: number;
|
|
17
|
-
}): IMarker[];
|
|
12
|
+
read(filter?: IMarkerReadOptions): IMarker[];
|
|
18
13
|
installResourceFilter(resource: URI, reason: string): IDisposable;
|
|
19
14
|
readonly onMarkerChanged: Event<readonly URI[]>;
|
|
20
15
|
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { VSBuffer } from "../../../base/common/buffer.js";
|
|
2
|
+
import { CancellationToken } from "../../../base/common/cancellation.js";
|
|
3
|
+
import { Event } from "../../../base/common/event.js";
|
|
4
|
+
import { URI } from "../../../base/common/uri.js";
|
|
5
|
+
import { MessageBoxOptions, MessageBoxReturnValue, OpenDevToolsOptions, OpenDialogOptions, OpenDialogReturnValue, SaveDialogOptions, SaveDialogReturnValue } from "../../../base/parts/sandbox/common/electronTypes.js";
|
|
6
|
+
import { ISerializableCommandAction } from "../../action/common/action.js";
|
|
7
|
+
import { INativeOpenDialogOptions } from "@codingame/monaco-vscode-bed2b49f-41ae-5ed2-b61a-1105500a3f8a-common/vscode/vs/platform/dialogs/common/dialogs";
|
|
8
|
+
import { IV8Profile } from "../../profiling/common/profiling.js";
|
|
9
|
+
import { AuthInfo, Credentials } from "../../request/common/request.js";
|
|
10
|
+
import { IPartsSplash } from "../../theme/common/themeService.js";
|
|
11
|
+
import { IColorScheme, IOpenedAuxiliaryWindow, IOpenedMainWindow, IOpenEmptyWindowOptions, IOpenWindowOptions, IPoint, IRectangle, IWindowOpenable } from "../../window/common/window.js";
|
|
12
|
+
export interface ICPUProperties {
|
|
13
|
+
model: string;
|
|
14
|
+
speed: number;
|
|
15
|
+
}
|
|
16
|
+
export interface IOSProperties {
|
|
17
|
+
type: string;
|
|
18
|
+
release: string;
|
|
19
|
+
arch: string;
|
|
20
|
+
platform: string;
|
|
21
|
+
cpus: ICPUProperties[];
|
|
22
|
+
}
|
|
23
|
+
export interface IOSStatistics {
|
|
24
|
+
totalmem: number;
|
|
25
|
+
freemem: number;
|
|
26
|
+
loadavg: number[];
|
|
27
|
+
}
|
|
28
|
+
export interface INativeHostOptions {
|
|
29
|
+
readonly targetWindowId?: number;
|
|
30
|
+
}
|
|
31
|
+
export interface IElementData {
|
|
32
|
+
readonly outerHTML: string;
|
|
33
|
+
readonly computedStyle: string;
|
|
34
|
+
readonly bounds: IRectangle;
|
|
35
|
+
}
|
|
36
|
+
export interface ICommonNativeHostService {
|
|
37
|
+
readonly _serviceBrand: undefined;
|
|
38
|
+
readonly windowId: number;
|
|
39
|
+
readonly onDidOpenMainWindow: Event<number>;
|
|
40
|
+
readonly onDidMaximizeWindow: Event<number>;
|
|
41
|
+
readonly onDidUnmaximizeWindow: Event<number>;
|
|
42
|
+
readonly onDidFocusMainWindow: Event<number>;
|
|
43
|
+
readonly onDidBlurMainWindow: Event<number>;
|
|
44
|
+
readonly onDidChangeWindowFullScreen: Event<{
|
|
45
|
+
windowId: number;
|
|
46
|
+
fullscreen: boolean;
|
|
47
|
+
}>;
|
|
48
|
+
readonly onDidChangeWindowAlwaysOnTop: Event<{
|
|
49
|
+
windowId: number;
|
|
50
|
+
alwaysOnTop: boolean;
|
|
51
|
+
}>;
|
|
52
|
+
readonly onDidFocusMainOrAuxiliaryWindow: Event<number>;
|
|
53
|
+
readonly onDidBlurMainOrAuxiliaryWindow: Event<number>;
|
|
54
|
+
readonly onDidChangeDisplay: Event<void>;
|
|
55
|
+
readonly onDidResumeOS: Event<unknown>;
|
|
56
|
+
readonly onDidChangeColorScheme: Event<IColorScheme>;
|
|
57
|
+
readonly onDidChangePassword: Event<{
|
|
58
|
+
readonly service: string;
|
|
59
|
+
readonly account: string;
|
|
60
|
+
}>;
|
|
61
|
+
readonly onDidTriggerWindowSystemContextMenu: Event<{
|
|
62
|
+
readonly windowId: number;
|
|
63
|
+
readonly x: number;
|
|
64
|
+
readonly y: number;
|
|
65
|
+
}>;
|
|
66
|
+
getWindows(options: {
|
|
67
|
+
includeAuxiliaryWindows: true;
|
|
68
|
+
}): Promise<Array<IOpenedMainWindow | IOpenedAuxiliaryWindow>>;
|
|
69
|
+
getWindows(options: {
|
|
70
|
+
includeAuxiliaryWindows: false;
|
|
71
|
+
}): Promise<Array<IOpenedMainWindow>>;
|
|
72
|
+
getWindowCount(): Promise<number>;
|
|
73
|
+
getActiveWindowId(): Promise<number | undefined>;
|
|
74
|
+
getActiveWindowPosition(): Promise<IRectangle | undefined>;
|
|
75
|
+
getNativeWindowHandle(windowId: number): Promise<VSBuffer | undefined>;
|
|
76
|
+
openWindow(options?: IOpenEmptyWindowOptions): Promise<void>;
|
|
77
|
+
openWindow(toOpen: IWindowOpenable[], options?: IOpenWindowOptions): Promise<void>;
|
|
78
|
+
isFullScreen(options?: INativeHostOptions): Promise<boolean>;
|
|
79
|
+
toggleFullScreen(options?: INativeHostOptions): Promise<void>;
|
|
80
|
+
getCursorScreenPoint(): Promise<{
|
|
81
|
+
readonly point: IPoint;
|
|
82
|
+
readonly display: IRectangle;
|
|
83
|
+
}>;
|
|
84
|
+
isMaximized(options?: INativeHostOptions): Promise<boolean>;
|
|
85
|
+
maximizeWindow(options?: INativeHostOptions): Promise<void>;
|
|
86
|
+
unmaximizeWindow(options?: INativeHostOptions): Promise<void>;
|
|
87
|
+
minimizeWindow(options?: INativeHostOptions): Promise<void>;
|
|
88
|
+
moveWindowTop(options?: INativeHostOptions): Promise<void>;
|
|
89
|
+
positionWindow(position: IRectangle, options?: INativeHostOptions): Promise<void>;
|
|
90
|
+
isWindowAlwaysOnTop(options?: INativeHostOptions): Promise<boolean>;
|
|
91
|
+
toggleWindowAlwaysOnTop(options?: INativeHostOptions): Promise<void>;
|
|
92
|
+
setWindowAlwaysOnTop(alwaysOnTop: boolean, options?: INativeHostOptions): Promise<void>;
|
|
93
|
+
updateWindowControls(options: INativeHostOptions & {
|
|
94
|
+
height?: number;
|
|
95
|
+
backgroundColor?: string;
|
|
96
|
+
foregroundColor?: string;
|
|
97
|
+
}): Promise<void>;
|
|
98
|
+
setMinimumSize(width: number | undefined, height: number | undefined): Promise<void>;
|
|
99
|
+
saveWindowSplash(splash: IPartsSplash): Promise<void>;
|
|
100
|
+
focusWindow(options?: INativeHostOptions & {
|
|
101
|
+
force?: boolean;
|
|
102
|
+
}): Promise<void>;
|
|
103
|
+
showMessageBox(options: MessageBoxOptions & INativeHostOptions): Promise<MessageBoxReturnValue>;
|
|
104
|
+
showSaveDialog(options: SaveDialogOptions & INativeHostOptions): Promise<SaveDialogReturnValue>;
|
|
105
|
+
showOpenDialog(options: OpenDialogOptions & INativeHostOptions): Promise<OpenDialogReturnValue>;
|
|
106
|
+
pickFileFolderAndOpen(options: INativeOpenDialogOptions): Promise<void>;
|
|
107
|
+
pickFileAndOpen(options: INativeOpenDialogOptions): Promise<void>;
|
|
108
|
+
pickFolderAndOpen(options: INativeOpenDialogOptions): Promise<void>;
|
|
109
|
+
pickWorkspaceAndOpen(options: INativeOpenDialogOptions): Promise<void>;
|
|
110
|
+
showItemInFolder(path: string): Promise<void>;
|
|
111
|
+
setRepresentedFilename(path: string, options?: INativeHostOptions): Promise<void>;
|
|
112
|
+
setDocumentEdited(edited: boolean, options?: INativeHostOptions): Promise<void>;
|
|
113
|
+
openExternal(url: string, defaultApplication?: string): Promise<boolean>;
|
|
114
|
+
moveItemToTrash(fullPath: string): Promise<void>;
|
|
115
|
+
isAdmin(): Promise<boolean>;
|
|
116
|
+
writeElevated(source: URI, target: URI, options?: {
|
|
117
|
+
unlock?: boolean;
|
|
118
|
+
}): Promise<void>;
|
|
119
|
+
isRunningUnderARM64Translation(): Promise<boolean>;
|
|
120
|
+
getOSProperties(): Promise<IOSProperties>;
|
|
121
|
+
getOSStatistics(): Promise<IOSStatistics>;
|
|
122
|
+
getOSVirtualMachineHint(): Promise<number>;
|
|
123
|
+
getOSColorScheme(): Promise<IColorScheme>;
|
|
124
|
+
hasWSLFeatureInstalled(): Promise<boolean>;
|
|
125
|
+
getScreenshot(rect?: IRectangle): Promise<VSBuffer | undefined>;
|
|
126
|
+
getElementData(rect: IRectangle, token: CancellationToken, cancellationId?: number): Promise<IElementData | undefined>;
|
|
127
|
+
getProcessId(): Promise<number | undefined>;
|
|
128
|
+
killProcess(pid: number, code: string): Promise<void>;
|
|
129
|
+
triggerPaste(options?: INativeHostOptions): Promise<void>;
|
|
130
|
+
readClipboardText(type?: "selection" | "clipboard"): Promise<string>;
|
|
131
|
+
writeClipboardText(text: string, type?: "selection" | "clipboard"): Promise<void>;
|
|
132
|
+
readClipboardFindText(): Promise<string>;
|
|
133
|
+
writeClipboardFindText(text: string): Promise<void>;
|
|
134
|
+
writeClipboardBuffer(format: string, buffer: VSBuffer, type?: "selection" | "clipboard"): Promise<void>;
|
|
135
|
+
readClipboardBuffer(format: string): Promise<VSBuffer>;
|
|
136
|
+
hasClipboard(format: string, type?: "selection" | "clipboard"): Promise<boolean>;
|
|
137
|
+
readImage(): Promise<Uint8Array>;
|
|
138
|
+
newWindowTab(): Promise<void>;
|
|
139
|
+
showPreviousWindowTab(): Promise<void>;
|
|
140
|
+
showNextWindowTab(): Promise<void>;
|
|
141
|
+
moveWindowTabToNewWindow(): Promise<void>;
|
|
142
|
+
mergeAllWindowTabs(): Promise<void>;
|
|
143
|
+
toggleWindowTabsBar(): Promise<void>;
|
|
144
|
+
updateTouchBar(items: ISerializableCommandAction[][]): Promise<void>;
|
|
145
|
+
installShellCommand(): Promise<void>;
|
|
146
|
+
uninstallShellCommand(): Promise<void>;
|
|
147
|
+
notifyReady(): Promise<void>;
|
|
148
|
+
relaunch(options?: {
|
|
149
|
+
addArgs?: string[];
|
|
150
|
+
removeArgs?: string[];
|
|
151
|
+
}): Promise<void>;
|
|
152
|
+
reload(options?: {
|
|
153
|
+
disableExtensions?: boolean;
|
|
154
|
+
}): Promise<void>;
|
|
155
|
+
closeWindow(options?: INativeHostOptions): Promise<void>;
|
|
156
|
+
quit(): Promise<void>;
|
|
157
|
+
exit(code: number): Promise<void>;
|
|
158
|
+
openDevTools(options?: Partial<OpenDevToolsOptions> & INativeHostOptions): Promise<void>;
|
|
159
|
+
toggleDevTools(options?: INativeHostOptions): Promise<void>;
|
|
160
|
+
openGPUInfoWindow(): Promise<void>;
|
|
161
|
+
profileRenderer(session: string, duration: number): Promise<IV8Profile>;
|
|
162
|
+
resolveProxy(url: string): Promise<string | undefined>;
|
|
163
|
+
lookupAuthorization(authInfo: AuthInfo): Promise<Credentials | undefined>;
|
|
164
|
+
lookupKerberosAuthorization(url: string): Promise<string | undefined>;
|
|
165
|
+
loadCertificates(): Promise<string[]>;
|
|
166
|
+
findFreePort(startPort: number, giveUpAfter: number, timeout: number, stride?: number): Promise<number>;
|
|
167
|
+
windowsGetStringRegKey(hive: "HKEY_CURRENT_USER" | "HKEY_LOCAL_MACHINE" | "HKEY_CLASSES_ROOT" | "HKEY_USERS" | "HKEY_CURRENT_CONFIG", path: string, name: string): Promise<string | undefined>;
|
|
168
|
+
}
|
|
@@ -5,8 +5,9 @@ export { Severity };
|
|
|
5
5
|
export type NotificationMessage = string | Error;
|
|
6
6
|
export declare enum NotificationPriority {
|
|
7
7
|
DEFAULT = 0,
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
OPTIONAL = 1,
|
|
9
|
+
SILENT = 2,
|
|
10
|
+
URGENT = 3
|
|
10
11
|
}
|
|
11
12
|
export interface INotificationProperties {
|
|
12
13
|
readonly sticky?: boolean;
|
|
@@ -60,6 +61,9 @@ export interface INotificationHandle {
|
|
|
60
61
|
updateActions(actions?: INotificationActions): void;
|
|
61
62
|
close(): void;
|
|
62
63
|
}
|
|
64
|
+
export interface IStatusHandle {
|
|
65
|
+
close(): void;
|
|
66
|
+
}
|
|
63
67
|
interface IBasePromptChoice {
|
|
64
68
|
readonly label: string;
|
|
65
69
|
readonly keepOpen?: boolean;
|
|
@@ -5,8 +5,9 @@ export { default as Severity } from '../../../base/common/severity.js';
|
|
|
5
5
|
var NotificationPriority;
|
|
6
6
|
(function (NotificationPriority) {
|
|
7
7
|
NotificationPriority[NotificationPriority["DEFAULT"] = 0] = "DEFAULT";
|
|
8
|
-
NotificationPriority[NotificationPriority["
|
|
9
|
-
NotificationPriority[NotificationPriority["
|
|
8
|
+
NotificationPriority[NotificationPriority["OPTIONAL"] = 1] = "OPTIONAL";
|
|
9
|
+
NotificationPriority[NotificationPriority["SILENT"] = 2] = "SILENT";
|
|
10
|
+
NotificationPriority[NotificationPriority["URGENT"] = 3] = "URGENT";
|
|
10
11
|
})(NotificationPriority || (NotificationPriority = {}));
|
|
11
12
|
var NeverShowAgainScope;
|
|
12
13
|
(function (NeverShowAgainScope) {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Event } from "../../../base/common/event.js";
|
|
2
|
-
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
3
2
|
import Severity from "../../../base/common/severity.js";
|
|
4
|
-
import { INotification, NotificationsFilter, INotificationSourceFilter, INotificationSource, INotificationHandle, NotificationMessage, IPromptChoice, IPromptChoiceWithMenu, IPromptOptions, IStatusMessageOptions } from "./notification.js";
|
|
3
|
+
import { INotification, NotificationsFilter, INotificationSourceFilter, INotificationSource, INotificationHandle, NotificationMessage, IPromptChoice, IPromptChoiceWithMenu, IPromptOptions, IStatusMessageOptions, IStatusHandle } from "./notification.js";
|
|
5
4
|
export declare const INotificationService: import("../../instantiation/common/instantiation.js").ServiceIdentifier<INotificationService>;
|
|
6
5
|
export interface INotificationService {
|
|
7
6
|
readonly _serviceBrand: undefined;
|
|
@@ -17,5 +16,5 @@ export interface INotificationService {
|
|
|
17
16
|
warn(message: NotificationMessage | NotificationMessage[]): void;
|
|
18
17
|
error(message: NotificationMessage | NotificationMessage[]): void;
|
|
19
18
|
prompt(severity: Severity, message: string, choices: (IPromptChoice | IPromptChoiceWithMenu)[], options?: IPromptOptions): INotificationHandle;
|
|
20
|
-
status(message: NotificationMessage, options?: IStatusMessageOptions):
|
|
19
|
+
status(message: NotificationMessage, options?: IStatusMessageOptions): IStatusHandle;
|
|
21
20
|
}
|