@codingame/monaco-vscode-api 16.1.1 → 17.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +105 -0
- package/monaco.d.ts +2 -2
- package/package.json +10 -9
- package/services.d.ts +4 -4
- package/services.js +3 -3
- package/vscode/product.json.js +3 -0
- package/vscode/src/vs/base/browser/dom.d.ts +1 -0
- package/vscode/src/vs/base/browser/dom.js +6 -1
- package/vscode/src/vs/base/browser/mouseEvent.d.ts +2 -0
- package/vscode/src/vs/base/browser/mouseEvent.js +1 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +2 -3
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +6 -1
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +1 -3
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +5 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +17 -4
- package/vscode/src/vs/base/common/arrays.d.ts +1 -0
- package/vscode/src/vs/base/common/arrays.js +5 -2
- package/vscode/src/vs/base/common/async.js +9 -2
- package/vscode/src/vs/base/common/codicons.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +5 -0
- package/vscode/src/vs/base/common/color.d.ts +1 -0
- package/vscode/src/vs/base/common/color.js +10 -0
- package/vscode/src/vs/base/common/comparers.d.ts +2 -2
- package/vscode/src/vs/base/common/decorators.d.ts +1 -1
- package/vscode/src/vs/base/common/glob.d.ts +3 -0
- package/vscode/src/vs/base/common/glob.js +10 -1
- package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -0
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +6 -8
- package/vscode/src/vs/base/common/observableInternal/autorun.js +15 -11
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +0 -10
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +23 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +30 -0
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +18 -13
- package/vscode/src/vs/base/common/observableInternal/derived.js +47 -18
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +6 -5
- package/vscode/src/vs/base/common/observableInternal/index.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/promise.d.ts +28 -0
- package/vscode/src/vs/base/common/observableInternal/promise.js +65 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.d.ts +16 -0
- package/vscode/src/vs/base/common/observableInternal/reducer.js +36 -0
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +2 -0
- package/vscode/src/vs/base/common/observableInternal/utils.js +19 -11
- package/vscode/src/vs/base/common/product.d.ts +5 -0
- package/vscode/src/vs/base/common/sseParser.d.ts +26 -0
- package/vscode/src/vs/base/common/sseParser.js +134 -0
- package/vscode/src/vs/base/common/stopwatch.js +2 -2
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +8 -19
- package/vscode/src/vs/base/common/ternarySearchTree.d.ts +1 -0
- package/vscode/src/vs/base/common/ternarySearchTree.js +55 -13
- package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +1 -0
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +3 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +6 -3
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +86 -54
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +12 -8
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +9 -6
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +3 -3
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -2
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.js +2 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +8 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +6 -1
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +1 -0
- package/vscode/src/vs/editor/browser/view/renderingContext.js +3 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.js +13 -6
- package/vscode/src/vs/editor/browser/view/viewOverlays.js +4 -1
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -5
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +4 -2
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +6 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +2 -2
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +5 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +15 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +7 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +10 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +19 -15
- package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +5 -0
- package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +20 -0
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +24 -23
- package/vscode/src/vs/editor/common/config/editorOptions.js +1 -2
- package/vscode/src/vs/editor/common/core/columnRange.d.ts +11 -0
- package/vscode/src/vs/editor/common/core/columnRange.js +32 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.js +10 -0
- package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
- package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +15 -3
- package/vscode/src/vs/editor/common/core/positionToOffset.js +45 -11
- package/vscode/src/vs/editor/common/core/rangeSingleLine.d.ts +9 -0
- package/vscode/src/vs/editor/common/core/rangeSingleLine.js +27 -0
- package/vscode/src/vs/editor/common/core/textEdit.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/textEdit.js +41 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -0
- package/vscode/src/vs/editor/common/languages/modesRegistry.d.ts +2 -2
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +4 -2
- package/vscode/src/vs/editor/common/languages.d.ts +22 -1
- package/vscode/src/vs/editor/common/languages.js +7 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +5 -1
- package/vscode/src/vs/editor/common/model/textModel.js +80 -18
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +5 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +7 -1
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +11 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +14 -1
- package/vscode/src/vs/editor/common/tokens/common.d.ts +7 -0
- package/vscode/src/vs/editor/common/tokens/common.js +18 -0
- package/vscode/src/vs/editor/common/tokens/contiguousTokensEditing.d.ts +1 -1
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +2 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +20 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +2 -1
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.js +9 -4
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +4 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +25 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.js +73 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +35 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +339 -0
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +8 -6
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +42 -49
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +6 -3
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.js +16 -5
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +44 -7
- package/vscode/src/vs/editor/common/viewModel.d.ts +5 -0
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +11 -3
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +14 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +20 -14
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +3 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +4 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +5 -11
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +1 -7
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +2 -15
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +24 -23
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +5 -5
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +14 -12
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +21 -21
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +0 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +29 -41
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +11 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +10 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +31 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +16 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +156 -202
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +21 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +135 -431
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +98 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +487 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +34 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +141 -132
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +2 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +21 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +19 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +17 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +5 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +139 -188
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +8 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.d.ts +23 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +157 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +37 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +28 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +21 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +215 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +22 -21
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +17 -17
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +23 -49
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +8 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +2 -2
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +24 -14
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +19 -18
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +5 -10
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +23 -14
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +2 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +17 -3
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +6 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +2 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -1
- package/vscode/src/vs/platform/actions/common/actions.js +2 -0
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.d.ts +1 -0
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +3 -0
- package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +15 -13
- package/vscode/src/vs/platform/configuration/common/configurations.js +1 -1
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +5 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +6 -2
- package/vscode/src/vs/platform/editor/common/editor.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +8 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +94 -4
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -7
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -11
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +7 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +9 -8
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.js +5 -4
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
- package/vscode/src/vs/platform/label/common/label.service.d.ts +1 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +2 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +5 -5
- package/vscode/src/vs/platform/markers/common/markers.d.ts +7 -0
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -7
- package/vscode/src/vs/platform/native/common/native.d.ts +168 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +6 -2
- package/vscode/src/vs/platform/notification/common/notification.js +3 -2
- package/vscode/src/vs/platform/notification/common/notification.service.d.ts +2 -3
- package/vscode/src/vs/platform/product/common/product.js +7 -90
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +4 -19
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +6 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +33 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +2 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +6 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +25 -18
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.d.ts +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +58 -43
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
- package/vscode/src/vs/platform/registry/common/platform.js +9 -1
- package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/request/common/request.service.d.ts +1 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +14 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +14 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -2
- package/vscode/src/vs/platform/theme/browser/defaultStyles.js +4 -2
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +7 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +12 -4
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +94 -94
- package/vscode/src/vs/platform/theme/common/colors/inputColors.d.ts +2 -0
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +49 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +10 -8
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +0 -8
- package/vscode/src/vs/platform/theme/common/themeService.js +4 -3
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -2
- package/vscode/src/vs/platform/window/common/window.d.ts +4 -0
- package/vscode/src/vs/platform/window/common/window.js +2 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +27 -20
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +54 -19
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.js +38 -0
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +30 -17
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +0 -1
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +15 -4
- package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +4 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +31 -6
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +60 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +15 -9
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -3
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +279 -82
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostQuickDiff.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostRequireInterceptor.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +21 -0
- package/vscode/src/vs/workbench/api/common/extHostSearch.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +27 -9
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +201 -29
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -27
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +79 -28
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +7 -4
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +34 -9
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.d.ts +1 -0
- package/vscode/src/vs/workbench/api/worker/extHostExtensionService.js +3 -0
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +10 -16
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +3 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -71
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +13 -9
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -147
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +15 -14
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +245 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +435 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +6 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -49
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -26
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +16 -23
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +585 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +1179 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +116 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +211 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +12 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +14 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +18 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/promptHeader/metadata/index.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +14 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.d.ts +28 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.d.ts +10 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +8 -25
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +11 -97
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +171 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +127 -0
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -8
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -10
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +8 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +16 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +77 -16
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
- package/vscode/src/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.d.ts +17 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.js +10 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +13 -0
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +2 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +61 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +3 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +25 -29
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +4 -1
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.js +3 -2
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +4 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +2 -4
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.d.ts +1 -0
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +2 -0
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/output/common/output.js +6 -4
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/search/common/search.d.ts +2 -1
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +5 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.js +6 -1
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +2 -2
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +31 -23
- package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +64 -0
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +560 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +165 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +74 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +12 -2
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +204 -9
- package/vscode-dts/vscode.proposed.aiSettingsSearch.d.ts +30 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +84 -5
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +18 -16
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +1 -1
- package/vscode-dts/vscode.proposed.commentThreadApplicability.d.ts +1 -1
- package/vscode-dts/vscode.proposed.contribDebugCreateConfiguration.d.ts +1 -1
- package/vscode-dts/vscode.proposed.d.ts +2 -2
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -2
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +46 -8
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +106 -16
- package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +2 -0
- package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +115 -21
- package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +7 -3
- package/vscode-dts/vscode.proposed.textSearchProvider2.d.ts +23 -1
- package/vscode-dts/vscode.proposed.toolProgress.d.ts +25 -0
- package/vscode-dts/vscode.proposed.tunnelFactory.d.ts +1 -1
- package/workbench.d.ts +1 -1
- package/vscode-dts/vscode.proposed.languageModelToolsForAgent.d.ts +0 -8
- package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +0 -170
|
@@ -43,7 +43,7 @@ class InspectContextKeysAction extends Action2 {
|
|
|
43
43
|
constructor() {
|
|
44
44
|
super({
|
|
45
45
|
id: 'workbench.action.inspectContextKeys',
|
|
46
|
-
title: ( localize2(
|
|
46
|
+
title: ( localize2(2586, 'Inspect Context Keys')),
|
|
47
47
|
category: Categories.Developer,
|
|
48
48
|
f1: true
|
|
49
49
|
});
|
|
@@ -86,7 +86,7 @@ class ToggleScreencastModeAction extends Action2 {
|
|
|
86
86
|
constructor() {
|
|
87
87
|
super({
|
|
88
88
|
id: 'workbench.action.toggleScreencastMode',
|
|
89
|
-
title: ( localize2(
|
|
89
|
+
title: ( localize2(2587, 'Toggle Screencast Mode')),
|
|
90
90
|
category: Categories.Developer,
|
|
91
91
|
f1: true
|
|
92
92
|
});
|
|
@@ -308,7 +308,7 @@ class LogStorageAction extends Action2 {
|
|
|
308
308
|
constructor() {
|
|
309
309
|
super({
|
|
310
310
|
id: 'workbench.action.logStorage',
|
|
311
|
-
title: ( localize2(
|
|
311
|
+
title: ( localize2(2588, "Log Storage Database Contents")),
|
|
312
312
|
category: Categories.Developer,
|
|
313
313
|
f1: true
|
|
314
314
|
});
|
|
@@ -318,16 +318,16 @@ class LogStorageAction extends Action2 {
|
|
|
318
318
|
const dialogService = accessor.get(IDialogService);
|
|
319
319
|
storageService.log();
|
|
320
320
|
dialogService.info(( localize(
|
|
321
|
-
|
|
321
|
+
2589,
|
|
322
322
|
"The storage database contents have been logged to the developer tools."
|
|
323
|
-
)), ( localize(
|
|
323
|
+
)), ( localize(2590, "Open developer tools from the menu and select the Console tab.")));
|
|
324
324
|
}
|
|
325
325
|
}
|
|
326
326
|
class LogWorkingCopiesAction extends Action2 {
|
|
327
327
|
constructor() {
|
|
328
328
|
super({
|
|
329
329
|
id: 'workbench.action.logWorkingCopies',
|
|
330
|
-
title: ( localize2(
|
|
330
|
+
title: ( localize2(2591, "Log Working Copies")),
|
|
331
331
|
category: Categories.Developer,
|
|
332
332
|
f1: true
|
|
333
333
|
});
|
|
@@ -355,7 +355,7 @@ class RemoveLargeStorageEntriesAction extends Action2 {
|
|
|
355
355
|
constructor() {
|
|
356
356
|
super({
|
|
357
357
|
id: 'workbench.action.removeLargeStorageDatabaseEntries',
|
|
358
|
-
title: ( localize2(
|
|
358
|
+
title: ( localize2(2592, 'Remove Large Storage Database Entries...')),
|
|
359
359
|
category: Categories.Developer,
|
|
360
360
|
f1: true
|
|
361
361
|
});
|
|
@@ -383,10 +383,10 @@ class RemoveLargeStorageEntriesAction extends Action2 {
|
|
|
383
383
|
label: key,
|
|
384
384
|
description: ByteSize.formatSize(value.length),
|
|
385
385
|
detail: ( localize(
|
|
386
|
-
|
|
386
|
+
2593,
|
|
387
387
|
"Scope: {0}, Target: {1}",
|
|
388
|
-
scope === StorageScope.APPLICATION ? ( localize(
|
|
389
|
-
target === StorageTarget.MACHINE ? ( localize(
|
|
388
|
+
scope === StorageScope.APPLICATION ? ( localize(2594, "Global")) : scope === StorageScope.PROFILE ? ( localize(2595, "Profile")) : ( localize(2596, "Workspace")),
|
|
389
|
+
target === StorageTarget.MACHINE ? ( localize(2597, "Machine")) : ( localize(2598, "User"))
|
|
390
390
|
)),
|
|
391
391
|
});
|
|
392
392
|
}
|
|
@@ -402,10 +402,10 @@ class RemoveLargeStorageEntriesAction extends Action2 {
|
|
|
402
402
|
picker.ok = false;
|
|
403
403
|
picker.customButton = true;
|
|
404
404
|
picker.hideCheckAll = true;
|
|
405
|
-
picker.customLabel = ( localize(
|
|
406
|
-
picker.placeholder = ( localize(
|
|
405
|
+
picker.customLabel = ( localize(2599, "Remove"));
|
|
406
|
+
picker.placeholder = ( localize(2600, "Select large entries to remove from storage"));
|
|
407
407
|
if (items.length === 0) {
|
|
408
|
-
picker.description = ( localize(
|
|
408
|
+
picker.description = ( localize(2601, "There are no large storage entries to remove."));
|
|
409
409
|
}
|
|
410
410
|
picker.show();
|
|
411
411
|
disposables.add(picker.onDidCustom(() => {
|
|
@@ -420,15 +420,15 @@ class RemoveLargeStorageEntriesAction extends Action2 {
|
|
|
420
420
|
const { confirmed } = await dialogService.confirm({
|
|
421
421
|
type: 'warning',
|
|
422
422
|
message: ( localize(
|
|
423
|
-
|
|
423
|
+
2602,
|
|
424
424
|
"Do you want to remove the selected storage entries from the database?"
|
|
425
425
|
)),
|
|
426
426
|
detail: ( localize(
|
|
427
|
-
|
|
427
|
+
2603,
|
|
428
428
|
"{0}\n\nThis action is irreversible and may result in data loss!",
|
|
429
429
|
( selectedItems.map(item => item.label)).join('\n')
|
|
430
430
|
)),
|
|
431
|
-
primaryButton: ( localize(
|
|
431
|
+
primaryButton: ( localize(2604, "&&Remove"))
|
|
432
432
|
});
|
|
433
433
|
if (!confirmed) {
|
|
434
434
|
return;
|
|
@@ -450,7 +450,7 @@ class StartTrackDisposables extends Action2 {
|
|
|
450
450
|
constructor() {
|
|
451
451
|
super({
|
|
452
452
|
id: 'workbench.action.startTrackDisposables',
|
|
453
|
-
title: ( localize2(
|
|
453
|
+
title: ( localize2(2605, 'Start Tracking Disposables')),
|
|
454
454
|
category: Categories.Developer,
|
|
455
455
|
f1: true,
|
|
456
456
|
precondition: ( ContextKeyExpr.and(( ( DisposablesSnapshotStateContext.isEqualTo('pending')).negate()), ( ( DisposablesSnapshotStateContext.isEqualTo('started')).negate())))
|
|
@@ -468,7 +468,7 @@ class SnapshotTrackedDisposables extends Action2 {
|
|
|
468
468
|
constructor() {
|
|
469
469
|
super({
|
|
470
470
|
id: 'workbench.action.snapshotTrackedDisposables',
|
|
471
|
-
title: ( localize2(
|
|
471
|
+
title: ( localize2(2606, 'Snapshot Tracked Disposables')),
|
|
472
472
|
category: Categories.Developer,
|
|
473
473
|
f1: true,
|
|
474
474
|
precondition: ( DisposablesSnapshotStateContext.isEqualTo('started'))
|
|
@@ -486,7 +486,7 @@ class StopTrackDisposables extends Action2 {
|
|
|
486
486
|
constructor() {
|
|
487
487
|
super({
|
|
488
488
|
id: 'workbench.action.stopTrackDisposables',
|
|
489
|
-
title: ( localize2(
|
|
489
|
+
title: ( localize2(2607, 'Stop Tracking Disposables')),
|
|
490
490
|
category: Categories.Developer,
|
|
491
491
|
f1: true,
|
|
492
492
|
precondition: ( DisposablesSnapshotStateContext.isEqualTo('pending'))
|
|
@@ -527,7 +527,7 @@ const configurationRegistry = ( Registry.as(Extensions.Configuration));
|
|
|
527
527
|
configurationRegistry.registerConfiguration({
|
|
528
528
|
id: 'screencastMode',
|
|
529
529
|
order: 9,
|
|
530
|
-
title: ( localize(
|
|
530
|
+
title: ( localize(2608, "Screencast Mode")),
|
|
531
531
|
type: 'object',
|
|
532
532
|
properties: {
|
|
533
533
|
'screencastMode.verticalOffset': {
|
|
@@ -536,7 +536,7 @@ configurationRegistry.registerConfiguration({
|
|
|
536
536
|
minimum: 0,
|
|
537
537
|
maximum: 90,
|
|
538
538
|
description: ( localize(
|
|
539
|
-
|
|
539
|
+
2609,
|
|
540
540
|
"Controls the vertical offset of the screencast mode overlay from the bottom as a percentage of the workbench height."
|
|
541
541
|
))
|
|
542
542
|
},
|
|
@@ -546,38 +546,38 @@ configurationRegistry.registerConfiguration({
|
|
|
546
546
|
minimum: 20,
|
|
547
547
|
maximum: 100,
|
|
548
548
|
description: ( localize(
|
|
549
|
-
|
|
549
|
+
2610,
|
|
550
550
|
"Controls the font size (in pixels) of the screencast mode keyboard."
|
|
551
551
|
))
|
|
552
552
|
},
|
|
553
553
|
'screencastMode.keyboardOptions': {
|
|
554
554
|
type: 'object',
|
|
555
|
-
description: ( localize(
|
|
555
|
+
description: ( localize(2611, "Options for customizing the keyboard overlay in screencast mode.")),
|
|
556
556
|
properties: {
|
|
557
557
|
'showKeys': {
|
|
558
558
|
type: 'boolean',
|
|
559
559
|
default: true,
|
|
560
|
-
description: ( localize(
|
|
560
|
+
description: ( localize(2612, "Show raw keys."))
|
|
561
561
|
},
|
|
562
562
|
'showKeybindings': {
|
|
563
563
|
type: 'boolean',
|
|
564
564
|
default: true,
|
|
565
|
-
description: ( localize(
|
|
565
|
+
description: ( localize(2613, "Show keyboard shortcuts."))
|
|
566
566
|
},
|
|
567
567
|
'showCommands': {
|
|
568
568
|
type: 'boolean',
|
|
569
569
|
default: true,
|
|
570
|
-
description: ( localize(
|
|
570
|
+
description: ( localize(2614, "Show command names."))
|
|
571
571
|
},
|
|
572
572
|
'showCommandGroups': {
|
|
573
573
|
type: 'boolean',
|
|
574
574
|
default: false,
|
|
575
|
-
description: ( localize(
|
|
575
|
+
description: ( localize(2615, "Show command group names, when commands are also shown."))
|
|
576
576
|
},
|
|
577
577
|
'showSingleEditorCursorMoves': {
|
|
578
578
|
type: 'boolean',
|
|
579
579
|
default: true,
|
|
580
|
-
description: ( localize(
|
|
580
|
+
description: ( localize(2616, "Show single editor cursor move commands."))
|
|
581
581
|
}
|
|
582
582
|
},
|
|
583
583
|
default: {
|
|
@@ -595,7 +595,7 @@ configurationRegistry.registerConfiguration({
|
|
|
595
595
|
minimum: 500,
|
|
596
596
|
maximum: 5000,
|
|
597
597
|
description: ( localize(
|
|
598
|
-
|
|
598
|
+
2617,
|
|
599
599
|
"Controls how long (in milliseconds) the keyboard overlay is shown in screencast mode."
|
|
600
600
|
))
|
|
601
601
|
},
|
|
@@ -604,7 +604,7 @@ configurationRegistry.registerConfiguration({
|
|
|
604
604
|
format: 'color-hex',
|
|
605
605
|
default: '#FF0000',
|
|
606
606
|
description: ( localize(
|
|
607
|
-
|
|
607
|
+
2618,
|
|
608
608
|
"Controls the color in hex (#RGB, #RGBA, #RRGGBB or #RRGGBBAA) of the mouse indicator in screencast mode."
|
|
609
609
|
))
|
|
610
610
|
},
|
|
@@ -614,7 +614,7 @@ configurationRegistry.registerConfiguration({
|
|
|
614
614
|
minimum: 20,
|
|
615
615
|
maximum: 100,
|
|
616
616
|
description: ( localize(
|
|
617
|
-
|
|
617
|
+
2619,
|
|
618
618
|
"Controls the size (in pixels) of the mouse indicator in screencast mode."
|
|
619
619
|
))
|
|
620
620
|
},
|
|
@@ -14,14 +14,14 @@ import { Lazy } from '../../../base/common/lazy.js';
|
|
|
14
14
|
|
|
15
15
|
function createTextInputActions(clipboardService) {
|
|
16
16
|
return [
|
|
17
|
-
toAction({ id: 'undo', label: ( localize(
|
|
18
|
-
toAction({ id: 'redo', label: ( localize(
|
|
17
|
+
toAction({ id: 'undo', label: ( localize(2762, "Undo")), run: () => getActiveDocument().execCommand('undo') }),
|
|
18
|
+
toAction({ id: 'redo', label: ( localize(2763, "Redo")), run: () => getActiveDocument().execCommand('redo') }),
|
|
19
19
|
( new Separator()),
|
|
20
|
-
toAction({ id: 'editor.action.clipboardCutAction', label: ( localize(
|
|
21
|
-
toAction({ id: 'editor.action.clipboardCopyAction', label: ( localize(
|
|
20
|
+
toAction({ id: 'editor.action.clipboardCutAction', label: ( localize(2764, "Cut")), run: () => getActiveDocument().execCommand('cut') }),
|
|
21
|
+
toAction({ id: 'editor.action.clipboardCopyAction', label: ( localize(2765, "Copy")), run: () => getActiveDocument().execCommand('copy') }),
|
|
22
22
|
toAction({
|
|
23
23
|
id: 'editor.action.clipboardPasteAction',
|
|
24
|
-
label: ( localize(
|
|
24
|
+
label: ( localize(2766, "Paste")),
|
|
25
25
|
run: async (element) => {
|
|
26
26
|
const clipboardText = await clipboardService.readText();
|
|
27
27
|
if (isHTMLTextAreaElement(element) || isHTMLInputElement(element)) {
|
|
@@ -35,7 +35,7 @@ function createTextInputActions(clipboardService) {
|
|
|
35
35
|
}
|
|
36
36
|
}),
|
|
37
37
|
( new Separator()),
|
|
38
|
-
toAction({ id: 'editor.action.selectAll', label: ( localize(
|
|
38
|
+
toAction({ id: 'editor.action.selectAll', label: ( localize(2767, "Select All")), run: () => getActiveDocument().execCommand('selectAll') })
|
|
39
39
|
];
|
|
40
40
|
}
|
|
41
41
|
let TextInputActionsProvider = class TextInputActionsProvider extends Disposable {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BreadcrumbsWidget } from "@codingame/monaco-vscode-
|
|
1
|
+
import { BreadcrumbsWidget } from "@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common/vscode/vs/base/browser/ui/breadcrumbs/breadcrumbsWidget";
|
|
2
2
|
import { IDisposable } from "../../../../base/common/lifecycle.js";
|
|
3
3
|
import { GroupIdentifier } from "../../../common/editor.js";
|
|
4
4
|
export declare const IBreadcrumbsService: import("../../../../platform/instantiation/common/instantiation.js").ServiceIdentifier<IBreadcrumbsService>;
|
|
@@ -15,35 +15,29 @@ import { equals } from '../../base/common/objects.js';
|
|
|
15
15
|
import { DeferredPromise } from '../../base/common/async.js';
|
|
16
16
|
import { IUserDataProfilesService } from '../../platform/userDataProfile/common/userDataProfile.service.js';
|
|
17
17
|
|
|
18
|
-
const applicationConfigurationNodeBase = ( Object.freeze({
|
|
19
|
-
'id': 'application',
|
|
20
|
-
'order': 100,
|
|
21
|
-
'title': ( localize(3747, "Application")),
|
|
22
|
-
'type': 'object'
|
|
23
|
-
}));
|
|
24
18
|
const workbenchConfigurationNodeBase = ( Object.freeze({
|
|
25
19
|
'id': 'workbench',
|
|
26
20
|
'order': 7,
|
|
27
|
-
'title': ( localize(
|
|
21
|
+
'title': ( localize(3772, "Workbench")),
|
|
28
22
|
'type': 'object',
|
|
29
23
|
}));
|
|
30
24
|
const securityConfigurationNodeBase = ( Object.freeze({
|
|
31
25
|
'id': 'security',
|
|
32
26
|
'scope': ConfigurationScope.APPLICATION,
|
|
33
|
-
'title': ( localize(
|
|
27
|
+
'title': ( localize(3773, "Security")),
|
|
34
28
|
'type': 'object',
|
|
35
29
|
'order': 7
|
|
36
30
|
}));
|
|
37
31
|
const problemsConfigurationNodeBase = ( Object.freeze({
|
|
38
32
|
'id': 'problems',
|
|
39
|
-
'title': ( localize(
|
|
33
|
+
'title': ( localize(3774, "Problems")),
|
|
40
34
|
'type': 'object',
|
|
41
35
|
'order': 101
|
|
42
36
|
}));
|
|
43
37
|
const windowConfigurationNodeBase = ( Object.freeze({
|
|
44
38
|
'id': 'window',
|
|
45
39
|
'order': 8,
|
|
46
|
-
'title': ( localize(
|
|
40
|
+
'title': ( localize(3775, "Window")),
|
|
47
41
|
'type': 'object',
|
|
48
42
|
}));
|
|
49
43
|
const Extensions = {
|
|
@@ -180,11 +174,11 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
|
|
|
180
174
|
'items': {
|
|
181
175
|
'type': 'string',
|
|
182
176
|
'pattern': '^[^\\\\]+$',
|
|
183
|
-
'patternErrorMessage': ( localize(
|
|
177
|
+
'patternErrorMessage': ( localize(3776, 'UNC host names must not contain backslashes.'))
|
|
184
178
|
},
|
|
185
179
|
'default': [],
|
|
186
180
|
'markdownDescription': ( localize(
|
|
187
|
-
|
|
181
|
+
3777,
|
|
188
182
|
'A set of UNC host names (without leading or trailing backslash, for example `192.168.0.1` or `my-server`) to allow without user confirmation. If a UNC host is being accessed that is not allowed via this setting or has not been acknowledged via user confirmation, an error will occur and the operation stopped. A restart is required when changing this setting. Find out more about this setting at https://aka.ms/vscode-windows-unc.'
|
|
189
183
|
)),
|
|
190
184
|
'scope': ConfigurationScope.APPLICATION_MACHINE
|
|
@@ -193,7 +187,7 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
|
|
|
193
187
|
'type': 'boolean',
|
|
194
188
|
'default': true,
|
|
195
189
|
'markdownDescription': ( localize(
|
|
196
|
-
|
|
190
|
+
3778,
|
|
197
191
|
'If enabled, only allows access to UNC host names that are allowed by the `#security.allowedUNCHosts#` setting or after user confirmation. Find out more about this setting at https://aka.ms/vscode-windows-unc.'
|
|
198
192
|
)),
|
|
199
193
|
'scope': ConfigurationScope.APPLICATION_MACHINE
|
|
@@ -232,9 +226,9 @@ let DynamicWindowConfiguration = class DynamicWindowConfiguration extends Dispos
|
|
|
232
226
|
'type': ['string', 'null'],
|
|
233
227
|
'default': null,
|
|
234
228
|
'enum': [...( this.userDataProfilesService.profiles.map(profile => profile.name)), null],
|
|
235
|
-
'enumItemLabels': [...( this.userDataProfilesService.profiles.map(p => '')), ( localize(
|
|
229
|
+
'enumItemLabels': [...( this.userDataProfilesService.profiles.map(p => '')), ( localize(3779, "Active Window"))],
|
|
236
230
|
'description': ( localize(
|
|
237
|
-
|
|
231
|
+
3780,
|
|
238
232
|
"Specifies the profile to use when opening a new window. If a profile name is provided, the new window will use that profile. If no profile name is provided, the new window will use the profile of the active window or the Default profile if no active window exists."
|
|
239
233
|
)),
|
|
240
234
|
'scope': ConfigurationScope.APPLICATION,
|
|
@@ -270,4 +264,4 @@ DynamicWindowConfiguration = ( __decorate([
|
|
|
270
264
|
( __param(1, IConfigurationService))
|
|
271
265
|
], DynamicWindowConfiguration));
|
|
272
266
|
|
|
273
|
-
export { CONFIG_NEW_WINDOW_PROFILE, ConfigurationMigrationWorkbenchContribution, DynamicWindowConfiguration, DynamicWorkbenchSecurityConfiguration, Extensions,
|
|
267
|
+
export { CONFIG_NEW_WINDOW_PROFILE, ConfigurationMigrationWorkbenchContribution, DynamicWindowConfiguration, DynamicWorkbenchSecurityConfiguration, Extensions, problemsConfigurationNodeBase, securityConfigurationNodeBase, windowConfigurationNodeBase, workbenchConfigurationNodeBase };
|
|
@@ -17,6 +17,7 @@ export declare const VirtualWorkspaceContext: RawContextKey<string>;
|
|
|
17
17
|
export declare const TemporaryWorkspaceContext: RawContextKey<boolean>;
|
|
18
18
|
export declare const IsMainWindowFullscreenContext: RawContextKey<boolean>;
|
|
19
19
|
export declare const IsAuxiliaryWindowFocusedContext: RawContextKey<boolean>;
|
|
20
|
+
export declare const IsWindowAlwaysOnTopContext: RawContextKey<boolean>;
|
|
20
21
|
export declare const HasWebFileSystemAccess: RawContextKey<boolean>;
|
|
21
22
|
export declare const EmbedderIdentifierContext: RawContextKey<string | undefined>;
|
|
22
23
|
export declare const ActiveEditorDirtyContext: RawContextKey<boolean>;
|
|
@@ -60,6 +61,8 @@ export declare const ActiveViewletContext: RawContextKey<string>;
|
|
|
60
61
|
export declare const StatusBarFocused: RawContextKey<boolean>;
|
|
61
62
|
export declare const TitleBarStyleContext: RawContextKey<string>;
|
|
62
63
|
export declare const TitleBarVisibleContext: RawContextKey<boolean>;
|
|
64
|
+
export declare const IsAuxiliaryTitleBarContext: RawContextKey<boolean>;
|
|
65
|
+
export declare const IsCompactTitleBarContext: RawContextKey<boolean>;
|
|
63
66
|
export declare const BannerFocused: RawContextKey<boolean>;
|
|
64
67
|
export declare const NotificationFocusedContext: RawContextKey<boolean>;
|
|
65
68
|
export declare const NotificationsCenterVisibleContext: RawContextKey<boolean>;
|
|
@@ -13,129 +13,131 @@ import { DEFAULT_EDITOR_ASSOCIATION } from './editor.js';
|
|
|
13
13
|
|
|
14
14
|
var ResourceContextKey_1;
|
|
15
15
|
const WorkbenchStateContext = ( new RawContextKey('workbenchState', undefined, { type: 'string', description: ( localize(
|
|
16
|
-
|
|
16
|
+
3781,
|
|
17
17
|
"The kind of workspace opened in the window, either 'empty' (no workspace), 'folder' (single folder) or 'workspace' (multi-root workspace)"
|
|
18
18
|
)) }));
|
|
19
|
-
const WorkspaceFolderCountContext = ( new RawContextKey('workspaceFolderCount', 0, ( localize(
|
|
19
|
+
const WorkspaceFolderCountContext = ( new RawContextKey('workspaceFolderCount', 0, ( localize(3782, "The number of root folders in the workspace"))));
|
|
20
20
|
const OpenFolderWorkspaceSupportContext = ( new RawContextKey('openFolderWorkspaceSupport', true, true));
|
|
21
21
|
const EnterMultiRootWorkspaceSupportContext = ( new RawContextKey('enterMultiRootWorkspaceSupport', true, true));
|
|
22
22
|
const EmptyWorkspaceSupportContext = ( new RawContextKey('emptyWorkspaceSupport', true, true));
|
|
23
|
-
const DirtyWorkingCopiesContext = ( new RawContextKey('dirtyWorkingCopies', false, ( localize(
|
|
23
|
+
const DirtyWorkingCopiesContext = ( new RawContextKey('dirtyWorkingCopies', false, ( localize(3783, "Whether there are any working copies with unsaved changes"))));
|
|
24
24
|
const RemoteNameContext = ( new RawContextKey('remoteName', '', ( localize(
|
|
25
|
-
|
|
25
|
+
3784,
|
|
26
26
|
"The name of the remote the window is connected to or an empty string if not connected to any remote"
|
|
27
27
|
))));
|
|
28
28
|
const VirtualWorkspaceContext = ( new RawContextKey('virtualWorkspace', '', ( localize(
|
|
29
|
-
|
|
29
|
+
3785,
|
|
30
30
|
"The scheme of the current workspace is from a virtual file system or an empty string."
|
|
31
31
|
))));
|
|
32
32
|
const TemporaryWorkspaceContext = ( new RawContextKey('temporaryWorkspace', false, ( localize(
|
|
33
|
-
|
|
33
|
+
3786,
|
|
34
34
|
"The scheme of the current workspace is from a temporary file system."
|
|
35
35
|
))));
|
|
36
|
-
const IsMainWindowFullscreenContext = ( new RawContextKey('isFullscreen', false, ( localize(
|
|
37
|
-
const IsAuxiliaryWindowFocusedContext = ( new RawContextKey('isAuxiliaryWindowFocusedContext', false, ( localize(
|
|
36
|
+
const IsMainWindowFullscreenContext = ( new RawContextKey('isFullscreen', false, ( localize(3787, "Whether the main window is in fullscreen mode"))));
|
|
37
|
+
const IsAuxiliaryWindowFocusedContext = ( new RawContextKey('isAuxiliaryWindowFocusedContext', false, ( localize(3788, "Whether an auxiliary window is focused"))));
|
|
38
38
|
const HasWebFileSystemAccess = ( new RawContextKey('hasWebFileSystemAccess', false, true));
|
|
39
39
|
const EmbedderIdentifierContext = ( new RawContextKey('embedderIdentifier', undefined, ( localize(
|
|
40
|
-
|
|
40
|
+
3789,
|
|
41
41
|
'The identifier of the embedder according to the product service, if one is defined'
|
|
42
42
|
))));
|
|
43
|
-
const ActiveEditorDirtyContext = ( new RawContextKey('activeEditorIsDirty', false, ( localize(
|
|
44
|
-
const ActiveEditorPinnedContext = ( new RawContextKey('activeEditorIsNotPreview', false, ( localize(
|
|
45
|
-
const ActiveEditorFirstInGroupContext = ( new RawContextKey('activeEditorIsFirstInGroup', false, ( localize(
|
|
46
|
-
const ActiveEditorLastInGroupContext = ( new RawContextKey('activeEditorIsLastInGroup', false, ( localize(
|
|
47
|
-
const ActiveEditorStickyContext = ( new RawContextKey('activeEditorIsPinned', false, ( localize(
|
|
48
|
-
const ActiveEditorReadonlyContext = ( new RawContextKey('activeEditorIsReadonly', false, ( localize(
|
|
49
|
-
const ActiveCompareEditorCanSwapContext = ( new RawContextKey('activeCompareEditorCanSwap', false, ( localize(
|
|
43
|
+
const ActiveEditorDirtyContext = ( new RawContextKey('activeEditorIsDirty', false, ( localize(3790, "Whether the active editor has unsaved changes"))));
|
|
44
|
+
const ActiveEditorPinnedContext = ( new RawContextKey('activeEditorIsNotPreview', false, ( localize(3791, "Whether the active editor is not in preview mode"))));
|
|
45
|
+
const ActiveEditorFirstInGroupContext = ( new RawContextKey('activeEditorIsFirstInGroup', false, ( localize(3792, "Whether the active editor is the first one in its group"))));
|
|
46
|
+
const ActiveEditorLastInGroupContext = ( new RawContextKey('activeEditorIsLastInGroup', false, ( localize(3793, "Whether the active editor is the last one in its group"))));
|
|
47
|
+
const ActiveEditorStickyContext = ( new RawContextKey('activeEditorIsPinned', false, ( localize(3794, "Whether the active editor is pinned"))));
|
|
48
|
+
const ActiveEditorReadonlyContext = ( new RawContextKey('activeEditorIsReadonly', false, ( localize(3795, "Whether the active editor is read-only"))));
|
|
49
|
+
const ActiveCompareEditorCanSwapContext = ( new RawContextKey('activeCompareEditorCanSwap', false, ( localize(3796, "Whether the active compare editor can swap sides"))));
|
|
50
50
|
const ActiveEditorCanToggleReadonlyContext = ( new RawContextKey('activeEditorCanToggleReadonly', true, ( localize(
|
|
51
|
-
|
|
51
|
+
3797,
|
|
52
52
|
"Whether the active editor can toggle between being read-only or writeable"
|
|
53
53
|
))));
|
|
54
|
-
const ActiveEditorCanRevertContext = ( new RawContextKey('activeEditorCanRevert', false, ( localize(
|
|
54
|
+
const ActiveEditorCanRevertContext = ( new RawContextKey('activeEditorCanRevert', false, ( localize(3798, "Whether the active editor can revert"))));
|
|
55
55
|
const ActiveEditorCanSplitInGroupContext = ( new RawContextKey('activeEditorCanSplitInGroup', true));
|
|
56
|
-
const ActiveEditorContext = ( new RawContextKey('activeEditor', null, { type: 'string', description: ( localize(
|
|
56
|
+
const ActiveEditorContext = ( new RawContextKey('activeEditor', null, { type: 'string', description: ( localize(3799, "The identifier of the active editor")) }));
|
|
57
57
|
const ActiveEditorAvailableEditorIdsContext = ( new RawContextKey('activeEditorAvailableEditorIds', '', ( localize(
|
|
58
|
-
|
|
58
|
+
3800,
|
|
59
59
|
"The available editor identifiers that are usable for the active editor"
|
|
60
60
|
))));
|
|
61
|
-
const TextCompareEditorVisibleContext = ( new RawContextKey('textCompareEditorVisible', false, ( localize(
|
|
62
|
-
const TextCompareEditorActiveContext = ( new RawContextKey('textCompareEditorActive', false, ( localize(
|
|
63
|
-
const SideBySideEditorActiveContext = ( new RawContextKey('sideBySideEditorActive', false, ( localize(
|
|
64
|
-
const EditorGroupEditorsCountContext = ( new RawContextKey('groupEditorsCount', 0, ( localize(
|
|
65
|
-
const ActiveEditorGroupEmptyContext = ( new RawContextKey('activeEditorGroupEmpty', false, ( localize(
|
|
66
|
-
const ActiveEditorGroupIndexContext = ( new RawContextKey('activeEditorGroupIndex', 0, ( localize(
|
|
67
|
-
const ActiveEditorGroupLastContext = ( new RawContextKey('activeEditorGroupLast', false, ( localize(
|
|
68
|
-
const ActiveEditorGroupLockedContext = ( new RawContextKey('activeEditorGroupLocked', false, ( localize(
|
|
69
|
-
const MultipleEditorGroupsContext = ( new RawContextKey('multipleEditorGroups', false, ( localize(
|
|
70
|
-
const MultipleEditorsSelectedInGroupContext = ( new RawContextKey('multipleEditorsSelectedInGroup', false, ( localize(
|
|
71
|
-
const TwoEditorsSelectedInGroupContext = ( new RawContextKey('twoEditorsSelectedInGroup', false, ( localize(
|
|
61
|
+
const TextCompareEditorVisibleContext = ( new RawContextKey('textCompareEditorVisible', false, ( localize(3801, "Whether a text compare editor is visible"))));
|
|
62
|
+
const TextCompareEditorActiveContext = ( new RawContextKey('textCompareEditorActive', false, ( localize(3802, "Whether a text compare editor is active"))));
|
|
63
|
+
const SideBySideEditorActiveContext = ( new RawContextKey('sideBySideEditorActive', false, ( localize(3803, "Whether a side by side editor is active"))));
|
|
64
|
+
const EditorGroupEditorsCountContext = ( new RawContextKey('groupEditorsCount', 0, ( localize(3804, "The number of opened editor groups"))));
|
|
65
|
+
const ActiveEditorGroupEmptyContext = ( new RawContextKey('activeEditorGroupEmpty', false, ( localize(3805, "Whether the active editor group is empty"))));
|
|
66
|
+
const ActiveEditorGroupIndexContext = ( new RawContextKey('activeEditorGroupIndex', 0, ( localize(3806, "The index of the active editor group"))));
|
|
67
|
+
const ActiveEditorGroupLastContext = ( new RawContextKey('activeEditorGroupLast', false, ( localize(3807, "Whether the active editor group is the last group"))));
|
|
68
|
+
const ActiveEditorGroupLockedContext = ( new RawContextKey('activeEditorGroupLocked', false, ( localize(3808, "Whether the active editor group is locked"))));
|
|
69
|
+
const MultipleEditorGroupsContext = ( new RawContextKey('multipleEditorGroups', false, ( localize(3809, "Whether there are multiple editor groups opened"))));
|
|
70
|
+
const MultipleEditorsSelectedInGroupContext = ( new RawContextKey('multipleEditorsSelectedInGroup', false, ( localize(3810, "Whether multiple editors have been selected in an editor group"))));
|
|
71
|
+
const TwoEditorsSelectedInGroupContext = ( new RawContextKey('twoEditorsSelectedInGroup', false, ( localize(3811, "Whether exactly two editors have been selected in an editor group"))));
|
|
72
72
|
const SelectedEditorsInGroupFileOrUntitledResourceContextKey = ( new RawContextKey(
|
|
73
73
|
'SelectedEditorsInGroupFileOrUntitledResourceContextKey',
|
|
74
74
|
true,
|
|
75
75
|
( localize(
|
|
76
|
-
|
|
76
|
+
3812,
|
|
77
77
|
"Whether all selected editors in a group have a file or untitled resource associated"
|
|
78
78
|
))
|
|
79
79
|
));
|
|
80
|
-
const EditorPartMultipleEditorGroupsContext = ( new RawContextKey('editorPartMultipleEditorGroups', false, ( localize(
|
|
81
|
-
const EditorPartMaximizedEditorGroupContext = ( new RawContextKey('editorPartMaximizedEditorGroup', false, ( localize(
|
|
82
|
-
const IsAuxiliaryEditorPartContext = ( new RawContextKey('isAuxiliaryEditorPart', false, ( localize(
|
|
83
|
-
const EditorsVisibleContext = ( new RawContextKey('editorIsOpen', false, ( localize(
|
|
84
|
-
const InEditorZenModeContext = ( new RawContextKey('inZenMode', false, ( localize(
|
|
85
|
-
const IsMainEditorCenteredLayoutContext = ( new RawContextKey('isCenteredLayout', false, ( localize(
|
|
86
|
-
const SplitEditorsVertically = ( new RawContextKey('splitEditorsVertically', false, ( localize(
|
|
87
|
-
const MainEditorAreaVisibleContext = ( new RawContextKey('mainEditorAreaVisible', true, ( localize(
|
|
88
|
-
const EditorTabsVisibleContext = ( new RawContextKey('editorTabsVisible', true, ( localize(
|
|
89
|
-
const SideBarVisibleContext = ( new RawContextKey('sideBarVisible', false, ( localize(
|
|
90
|
-
const SidebarFocusContext = ( new RawContextKey('sideBarFocus', false, ( localize(
|
|
91
|
-
const ActiveViewletContext = ( new RawContextKey('activeViewlet', '', ( localize(
|
|
92
|
-
const StatusBarFocused = ( new RawContextKey('statusBarFocused', false, ( localize(
|
|
93
|
-
const TitleBarStyleContext = ( new RawContextKey('titleBarStyle', 'custom', ( localize(
|
|
94
|
-
const TitleBarVisibleContext = ( new RawContextKey('titleBarVisible', false, ( localize(
|
|
95
|
-
const
|
|
96
|
-
const
|
|
97
|
-
const
|
|
98
|
-
const
|
|
99
|
-
const
|
|
100
|
-
const
|
|
101
|
-
const
|
|
102
|
-
const
|
|
103
|
-
const
|
|
104
|
-
const
|
|
80
|
+
const EditorPartMultipleEditorGroupsContext = ( new RawContextKey('editorPartMultipleEditorGroups', false, ( localize(3813, "Whether there are multiple editor groups opened in an editor part"))));
|
|
81
|
+
const EditorPartMaximizedEditorGroupContext = ( new RawContextKey('editorPartMaximizedEditorGroup', false, ( localize(3814, "Editor Part has a maximized group"))));
|
|
82
|
+
const IsAuxiliaryEditorPartContext = ( new RawContextKey('isAuxiliaryEditorPart', false, ( localize(3815, "Editor Part is in an auxiliary window"))));
|
|
83
|
+
const EditorsVisibleContext = ( new RawContextKey('editorIsOpen', false, ( localize(3816, "Whether an editor is open"))));
|
|
84
|
+
const InEditorZenModeContext = ( new RawContextKey('inZenMode', false, ( localize(3817, "Whether Zen mode is enabled"))));
|
|
85
|
+
const IsMainEditorCenteredLayoutContext = ( new RawContextKey('isCenteredLayout', false, ( localize(3818, "Whether centered layout is enabled for the main editor"))));
|
|
86
|
+
const SplitEditorsVertically = ( new RawContextKey('splitEditorsVertically', false, ( localize(3819, "Whether editors split vertically"))));
|
|
87
|
+
const MainEditorAreaVisibleContext = ( new RawContextKey('mainEditorAreaVisible', true, ( localize(3820, "Whether the editor area in the main window is visible"))));
|
|
88
|
+
const EditorTabsVisibleContext = ( new RawContextKey('editorTabsVisible', true, ( localize(3821, "Whether editor tabs are visible"))));
|
|
89
|
+
const SideBarVisibleContext = ( new RawContextKey('sideBarVisible', false, ( localize(3822, "Whether the sidebar is visible"))));
|
|
90
|
+
const SidebarFocusContext = ( new RawContextKey('sideBarFocus', false, ( localize(3823, "Whether the sidebar has keyboard focus"))));
|
|
91
|
+
const ActiveViewletContext = ( new RawContextKey('activeViewlet', '', ( localize(3824, "The identifier of the active viewlet"))));
|
|
92
|
+
const StatusBarFocused = ( new RawContextKey('statusBarFocused', false, ( localize(3825, "Whether the status bar has keyboard focus"))));
|
|
93
|
+
const TitleBarStyleContext = ( new RawContextKey('titleBarStyle', 'custom', ( localize(3826, "Style of the window title bar"))));
|
|
94
|
+
const TitleBarVisibleContext = ( new RawContextKey('titleBarVisible', false, ( localize(3827, "Whether the title bar is visible"))));
|
|
95
|
+
const IsAuxiliaryTitleBarContext = ( new RawContextKey('isAuxiliaryTitleBar', false, ( localize(3828, "Title bar is in an auxiliary window"))));
|
|
96
|
+
const IsCompactTitleBarContext = ( new RawContextKey('isCompactTitleBar', false, ( localize(3829, "Title bar is in compact mode"))));
|
|
97
|
+
const BannerFocused = ( new RawContextKey('bannerFocused', false, ( localize(3830, "Whether the banner has keyboard focus"))));
|
|
98
|
+
const NotificationFocusedContext = ( new RawContextKey('notificationFocus', true, ( localize(3831, "Whether a notification has keyboard focus"))));
|
|
99
|
+
const NotificationsCenterVisibleContext = ( new RawContextKey('notificationCenterVisible', false, ( localize(3832, "Whether the notifications center is visible"))));
|
|
100
|
+
const NotificationsToastsVisibleContext = ( new RawContextKey('notificationToastsVisible', false, ( localize(3833, "Whether a notification toast is visible"))));
|
|
101
|
+
const ActiveAuxiliaryContext = ( new RawContextKey('activeAuxiliary', '', ( localize(3834, "The identifier of the active auxiliary panel"))));
|
|
102
|
+
const AuxiliaryBarFocusContext = ( new RawContextKey('auxiliaryBarFocus', false, ( localize(3835, "Whether the auxiliary bar has keyboard focus"))));
|
|
103
|
+
const AuxiliaryBarVisibleContext = ( new RawContextKey('auxiliaryBarVisible', false, ( localize(3836, "Whether the auxiliary bar is visible"))));
|
|
104
|
+
const ActivePanelContext = ( new RawContextKey('activePanel', '', ( localize(3837, "The identifier of the active panel"))));
|
|
105
|
+
const PanelFocusContext = ( new RawContextKey('panelFocus', false, ( localize(3838, "Whether the panel has keyboard focus"))));
|
|
106
|
+
const PanelPositionContext = ( new RawContextKey('panelPosition', 'bottom', ( localize(3839, "The position of the panel, always 'bottom'"))));
|
|
105
107
|
const PanelAlignmentContext = ( new RawContextKey('panelAlignment', 'center', ( localize(
|
|
106
|
-
|
|
108
|
+
3840,
|
|
107
109
|
"The alignment of the panel, either 'center', 'left', 'right' or 'justify'"
|
|
108
110
|
))));
|
|
109
|
-
const PanelVisibleContext = ( new RawContextKey('panelVisible', false, ( localize(
|
|
110
|
-
const PanelMaximizedContext = ( new RawContextKey('panelMaximized', false, ( localize(
|
|
111
|
-
const FocusedViewContext = ( new RawContextKey('focusedView', '', ( localize(
|
|
111
|
+
const PanelVisibleContext = ( new RawContextKey('panelVisible', false, ( localize(3841, "Whether the panel is visible"))));
|
|
112
|
+
const PanelMaximizedContext = ( new RawContextKey('panelMaximized', false, ( localize(3842, "Whether the panel is maximized"))));
|
|
113
|
+
const FocusedViewContext = ( new RawContextKey('focusedView', '', ( localize(3843, "The identifier of the view that has keyboard focus"))));
|
|
112
114
|
function getVisbileViewContextKey(viewId) { return `view.${viewId}.visible`; }
|
|
113
115
|
let ResourceContextKey = class ResourceContextKey {
|
|
114
116
|
static { ResourceContextKey_1 = this; }
|
|
115
|
-
static { this.Scheme = ( new RawContextKey('resourceScheme', undefined, { type: 'string', description: ( localize(
|
|
117
|
+
static { this.Scheme = ( new RawContextKey('resourceScheme', undefined, { type: 'string', description: ( localize(3844, "The scheme of the resource")) })); }
|
|
116
118
|
static { this.Filename = ( new RawContextKey(
|
|
117
119
|
'resourceFilename',
|
|
118
120
|
undefined,
|
|
119
|
-
{ type: 'string', description: ( localize(
|
|
121
|
+
{ type: 'string', description: ( localize(3845, "The file name of the resource")) }
|
|
120
122
|
)); }
|
|
121
123
|
static { this.Dirname = ( new RawContextKey(
|
|
122
124
|
'resourceDirname',
|
|
123
125
|
undefined,
|
|
124
|
-
{ type: 'string', description: ( localize(
|
|
126
|
+
{ type: 'string', description: ( localize(3846, "The folder name the resource is contained in")) }
|
|
125
127
|
)); }
|
|
126
|
-
static { this.Path = ( new RawContextKey('resourcePath', undefined, { type: 'string', description: ( localize(
|
|
127
|
-
static { this.LangId = ( new RawContextKey('resourceLangId', undefined, { type: 'string', description: ( localize(
|
|
128
|
-
static { this.Resource = ( new RawContextKey('resource', undefined, { type: 'URI', description: ( localize(
|
|
128
|
+
static { this.Path = ( new RawContextKey('resourcePath', undefined, { type: 'string', description: ( localize(3847, "The full path of the resource")) })); }
|
|
129
|
+
static { this.LangId = ( new RawContextKey('resourceLangId', undefined, { type: 'string', description: ( localize(3848, "The language identifier of the resource")) })); }
|
|
130
|
+
static { this.Resource = ( new RawContextKey('resource', undefined, { type: 'URI', description: ( localize(3849, "The full value of the resource including scheme and path")) })); }
|
|
129
131
|
static { this.Extension = ( new RawContextKey(
|
|
130
132
|
'resourceExtname',
|
|
131
133
|
undefined,
|
|
132
|
-
{ type: 'string', description: ( localize(
|
|
134
|
+
{ type: 'string', description: ( localize(3850, "The extension name of the resource")) }
|
|
133
135
|
)); }
|
|
134
|
-
static { this.HasResource = ( new RawContextKey('resourceSet', undefined, { type: 'boolean', description: ( localize(
|
|
136
|
+
static { this.HasResource = ( new RawContextKey('resourceSet', undefined, { type: 'boolean', description: ( localize(3851, "Whether a resource is present or not")) })); }
|
|
135
137
|
static { this.IsFileSystemResource = ( new RawContextKey(
|
|
136
138
|
'isFileSystemResource',
|
|
137
139
|
undefined,
|
|
138
|
-
{ type: 'boolean', description: ( localize(
|
|
140
|
+
{ type: 'boolean', description: ( localize(3852, "Whether the resource is backed by a file system provider")) }
|
|
139
141
|
)); }
|
|
140
142
|
constructor(_contextKeyService, _fileService, _languageService, _modelService) {
|
|
141
143
|
this._contextKeyService = _contextKeyService;
|
|
@@ -242,4 +244,4 @@ function applyAvailableEditorIds(contextKey, editor, editorResolverService) {
|
|
|
242
244
|
}
|
|
243
245
|
}
|
|
244
246
|
|
|
245
|
-
export { ActiveAuxiliaryContext, ActiveCompareEditorCanSwapContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorCanRevertContext, ActiveEditorCanSplitInGroupContext, ActiveEditorCanToggleReadonlyContext, ActiveEditorContext, ActiveEditorDirtyContext, ActiveEditorFirstInGroupContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, ActiveEditorLastInGroupContext, ActiveEditorPinnedContext, ActiveEditorReadonlyContext, ActiveEditorStickyContext, ActivePanelContext, ActiveViewletContext, AuxiliaryBarFocusContext, AuxiliaryBarVisibleContext, BannerFocused, DirtyWorkingCopiesContext, EditorGroupEditorsCountContext, EditorPartMaximizedEditorGroupContext, EditorPartMultipleEditorGroupsContext, EditorTabsVisibleContext, EditorsVisibleContext, EmbedderIdentifierContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, FocusedViewContext, HasWebFileSystemAccess, InEditorZenModeContext, IsAuxiliaryEditorPartContext, IsAuxiliaryWindowFocusedContext, IsMainEditorCenteredLayoutContext, IsMainWindowFullscreenContext, MainEditorAreaVisibleContext, MultipleEditorGroupsContext, MultipleEditorsSelectedInGroupContext, NotificationFocusedContext, NotificationsCenterVisibleContext, NotificationsToastsVisibleContext, OpenFolderWorkspaceSupportContext, PanelAlignmentContext, PanelFocusContext, PanelMaximizedContext, PanelPositionContext, PanelVisibleContext, RemoteNameContext, ResourceContextKey, SelectedEditorsInGroupFileOrUntitledResourceContextKey, SideBarVisibleContext, SideBySideEditorActiveContext, SidebarFocusContext, SplitEditorsVertically, StatusBarFocused, TemporaryWorkspaceContext, TextCompareEditorActiveContext, TextCompareEditorVisibleContext, TitleBarStyleContext, TitleBarVisibleContext, TwoEditorsSelectedInGroupContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, applyAvailableEditorIds, getVisbileViewContextKey };
|
|
247
|
+
export { ActiveAuxiliaryContext, ActiveCompareEditorCanSwapContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorCanRevertContext, ActiveEditorCanSplitInGroupContext, ActiveEditorCanToggleReadonlyContext, ActiveEditorContext, ActiveEditorDirtyContext, ActiveEditorFirstInGroupContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, ActiveEditorLastInGroupContext, ActiveEditorPinnedContext, ActiveEditorReadonlyContext, ActiveEditorStickyContext, ActivePanelContext, ActiveViewletContext, AuxiliaryBarFocusContext, AuxiliaryBarVisibleContext, BannerFocused, DirtyWorkingCopiesContext, EditorGroupEditorsCountContext, EditorPartMaximizedEditorGroupContext, EditorPartMultipleEditorGroupsContext, EditorTabsVisibleContext, EditorsVisibleContext, EmbedderIdentifierContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, FocusedViewContext, HasWebFileSystemAccess, InEditorZenModeContext, IsAuxiliaryEditorPartContext, IsAuxiliaryTitleBarContext, IsAuxiliaryWindowFocusedContext, IsCompactTitleBarContext, IsMainEditorCenteredLayoutContext, IsMainWindowFullscreenContext, MainEditorAreaVisibleContext, MultipleEditorGroupsContext, MultipleEditorsSelectedInGroupContext, NotificationFocusedContext, NotificationsCenterVisibleContext, NotificationsToastsVisibleContext, OpenFolderWorkspaceSupportContext, PanelAlignmentContext, PanelFocusContext, PanelMaximizedContext, PanelPositionContext, PanelVisibleContext, RemoteNameContext, ResourceContextKey, SelectedEditorsInGroupFileOrUntitledResourceContextKey, SideBarVisibleContext, SideBySideEditorActiveContext, SidebarFocusContext, SplitEditorsVertically, StatusBarFocused, TemporaryWorkspaceContext, TextCompareEditorActiveContext, TextCompareEditorVisibleContext, TitleBarStyleContext, TitleBarVisibleContext, TwoEditorsSelectedInGroupContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, applyAvailableEditorIds, getVisbileViewContextKey };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Emitter } from "../../../base/common/event.js";
|
|
2
2
|
import { URI } from "../../../base/common/uri.js";
|
|
3
3
|
import { EditorInputCapabilities, Verbosity, GroupIdentifier, ISaveOptions, IRevertOptions, IMoveResult, IEditorDescriptor, IEditorPane, IUntypedEditorInput, AbstractEditorInput, IEditorIdentifier } from "../editor.js";
|
|
4
|
-
import { ConfirmResult } from "@codingame/monaco-vscode-
|
|
4
|
+
import { ConfirmResult } from "@codingame/monaco-vscode-bed2b49f-41ae-5ed2-b61a-1105500a3f8a-common/vscode/vs/platform/dialogs/common/dialogs";
|
|
5
5
|
import { IMarkdownString } from "../../../base/common/htmlContent.js";
|
|
6
6
|
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
7
7
|
import { ThemeIcon } from "../../../base/common/themables.js";
|