@codingame/monaco-vscode-api 31.0.0 → 32.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/external/@vscode/tree-sitter-wasm/wasm/tree-sitter.js +14 -14
- package/external/vscode-semver/semver.js +43 -43
- package/external/vscode-textmate/release/main.js +1 -1
- package/missing-services.js +143 -47
- package/package.json +9 -9
- package/services.js +3 -3
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/animatedValue.d.ts +49 -0
- package/vscode/src/vs/{editor/contrib/inlineCompletions/browser/model/animation.js → base/browser/animatedValue.js} +32 -23
- package/vscode/src/vs/base/browser/dom.d.ts +42 -2
- package/vscode/src/vs/base/browser/dom.js +28 -3
- package/vscode/src/vs/base/browser/mouseEvent.js +2 -8
- package/vscode/src/vs/base/browser/overlayLayoutElement.d.ts +9 -6
- package/vscode/src/vs/base/browser/overlayLayoutElement.js +55 -90
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +3 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.js +11 -20
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +7 -0
- package/vscode/src/vs/base/browser/ui/button/button.js +15 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +0 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +0 -3
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/common/async.d.ts +2 -0
- package/vscode/src/vs/base/common/async.js +8 -2
- package/vscode/src/vs/base/common/codicons.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +3 -0
- package/vscode/src/vs/base/common/event.d.ts +9 -3
- package/vscode/src/vs/base/common/event.js +12 -7
- package/vscode/src/vs/base/common/filters.js +31 -6
- package/vscode/src/vs/base/common/htmlContent.d.ts +9 -0
- package/vscode/src/vs/base/common/network.js +2 -2
- package/vscode/src/vs/base/common/objects.d.ts +13 -0
- package/vscode/src/vs/base/common/objects.js +33 -1
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +26 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +24 -1
- package/vscode/src/vs/base/common/observableInternal/utils/promise.d.ts +13 -0
- package/vscode/src/vs/base/common/observableInternal/utils/promise.js +23 -1
- package/vscode/src/vs/base/common/paging.js +2 -66
- package/vscode/src/vs/base/common/platform.d.ts +0 -1
- package/vscode/src/vs/base/common/policy.d.ts +12 -1
- package/vscode/src/vs/base/common/product.d.ts +8 -6
- package/vscode/src/vs/base/common/resources.js +2 -2
- package/vscode/src/vs/base/common/yaml.d.ts +24 -0
- package/vscode/src/vs/base/common/yaml.js +6 -1
- package/vscode/src/vs/base/parts/ipc/common/ipc.net.d.ts +14 -1
- package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +29 -1
- package/vscode/src/vs/base/parts/storage/common/storage.d.ts +13 -0
- package/vscode/src/vs/base/parts/storage/common/storage.js +48 -2
- package/vscode/src/vs/editor/browser/config/elementSizeObserver.js +1 -1
- package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +0 -1
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +0 -3
- package/vscode/src/vs/editor/browser/editorDom.d.ts +6 -3
- package/vscode/src/vs/editor/browser/editorDom.js +9 -2
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +1 -1
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +0 -1
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +0 -3
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +56 -9
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.js +0 -3
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.js +0 -3
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.js +0 -3
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.js +0 -3
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.d.ts +0 -1
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.js +0 -3
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +12 -6
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +5 -1
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/diffEditorItemTemplate.js +1 -1
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorViewModel.d.ts +5 -3
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorViewModel.js +41 -13
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +1 -1
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +73 -55
- package/vscode/src/vs/editor/common/config/editorOptions.js +371 -370
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
- package/vscode/src/vs/editor/common/editorContextKeys.js +49 -49
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.js +56 -56
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/services/languageService.js +2 -1
- package/vscode/src/vs/editor/common/standaloneStrings.js +50 -50
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +0 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.js +0 -3
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +18 -18
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +13 -13
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +5 -5
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +17 -17
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +28 -28
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +13 -13
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +33 -33
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/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 +22 -22
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +7 -7
- 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 +18 -18
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +1 -1
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +6 -6
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScrollController.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 +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/editorNavigationQuickAccess.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +11 -11
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.js +1 -1
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +39 -24
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +36 -24
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +0 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.js +0 -6
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +5 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +52 -10
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +242 -90
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +97 -23
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +15 -12
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +6 -3
- package/vscode/src/vs/platform/actions/common/actions.js +18 -9
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.d.ts +2 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +6 -5
- package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.d.ts +21 -18
- package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.js +11 -0
- package/vscode/src/vs/platform/agentHost/browser/nullSshRemoteAgentHostService.d.ts +3 -0
- package/vscode/src/vs/platform/agentHost/browser/nullSshRemoteAgentHostService.js +6 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostPermissionService.service.d.ts +47 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostPermissionService.service.js +6 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostUri.js +1 -1
- package/vscode/src/vs/platform/agentHost/common/agentPluginManager.d.ts +2 -2
- package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +63 -22
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.d.ts +56 -6
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.js +49 -4
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.d.ts +12 -1
- package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.d.ts +2 -0
- package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.d.ts +21 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +14 -10
- package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.d.ts +957 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.js +18 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +135 -71
- package/vscode/src/vs/platform/agentHost/common/state/protocol/state.d.ts +1673 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/state.js +126 -0
- package/vscode/src/vs/platform/agentHost/common/state/sessionProtocol.d.ts +40 -0
- package/vscode/src/vs/platform/agentHost/common/state/sessionProtocol.js +22 -0
- package/vscode/src/vs/platform/browserView/common/browserView.d.ts +67 -38
- package/vscode/src/vs/platform/browserView/common/browserView.js +57 -0
- package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.d.ts +2 -1
- package/vscode/src/vs/platform/browserView/common/playwrightService.service.d.ts +24 -7
- package/vscode/src/vs/platform/browserView/common/playwrightService.service.js +6 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +14 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/configuration/common/configurations.d.ts +2 -0
- package/vscode/src/vs/platform/configuration/common/configurations.js +8 -3
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +2 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +10 -10
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +6 -6
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +1 -1
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +2 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/editor/common/editor.d.ts +11 -0
- package/vscode/src/vs/platform/environment/common/argv.d.ts +4 -1
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +18 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +19 -1
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverService.js +15 -9
- package/vscode/src/vs/platform/hover/browser/hoverWidget.d.ts +1 -0
- package/vscode/src/vs/platform/hover/browser/hoverWidget.js +21 -4
- package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.d.ts +0 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -8
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
- package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
- package/vscode/src/vs/platform/list/browser/listService.js +25 -25
- package/vscode/src/vs/platform/log/common/log.d.ts +7 -0
- package/vscode/src/vs/platform/log/common/log.js +38 -17
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
- package/vscode/src/vs/platform/native/common/native.d.ts +2 -9
- package/vscode/src/vs/platform/networkFilter/common/networkFilterService.service.d.ts +5 -3
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/policy/common/policy.d.ts +8 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
- package/vscode/src/vs/platform/remote/common/remoteAgentConnection.js +1 -1
- package/vscode/src/vs/platform/request/common/request.js +20 -20
- package/vscode/src/vs/platform/sandbox/common/settings.d.ts +5 -1
- package/vscode/src/vs/platform/sandbox/common/settings.js +4 -0
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxService.service.d.ts +8 -2
- package/vscode/src/vs/platform/storage/common/storage.d.ts +13 -1
- package/vscode/src/vs/platform/storage/common/storage.js +48 -0
- package/vscode/src/vs/platform/storage/common/storage.service.d.ts +2 -1
- package/vscode/src/vs/platform/telemetry/common/telemetry.d.ts +5 -0
- package/vscode/src/vs/platform/telemetry/common/telemetry.js +4 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +3 -0
- package/vscode/src/vs/platform/terminal/common/terminal.js +3 -0
- package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +97 -31
- package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
- package/vscode/src/vs/platform/terminal/common/xterm/shellIntegrationAddon.js +6 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +27 -18
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
- 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 +16 -16
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +18 -10
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +7 -7
- package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
- package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/url/common/trustedDomains.d.ts +1 -0
- package/vscode/src/vs/platform/url/common/trustedDomains.js +2 -2
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.d.ts +26 -2
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +35 -31
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfileStorageService.service.d.ts +3 -2
- package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/globalStateSync.js +37 -11
- package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +2 -0
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
- package/vscode/src/vs/platform/webWorker/browser/webWorkerServiceImpl.d.ts +1 -1
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +7 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +9 -3
- package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +61 -4
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +86 -5
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +11 -1
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +29 -9
- package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +7 -0
- package/vscode/src/vs/workbench/api/common/extHostChatInputNotification.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostChatInputNotification.js +114 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +89 -16
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.js +139 -8
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionActivator.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +7 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +11 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +20 -0
- 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.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +5 -1
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +20 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +17 -1
- package/vscode/src/vs/workbench/api/common/extHostWebview.d.ts +11 -0
- package/vscode/src/vs/workbench/api/common/extHostWebview.js +9 -0
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +59 -35
- package/vscode/src/vs/workbench/browser/actions/layoutActions.d.ts +1 -2
- package/vscode/src/vs/workbench/browser/actions/layoutActions.js +141 -188
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/actions/windowActions.js +34 -34
- package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
- package/vscode/src/vs/workbench/browser/editor.js +2 -2
- package/vscode/src/vs/workbench/browser/labels.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +23 -23
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
- package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +41 -38
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +32 -14
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +2 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +160 -137
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +56 -36
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommandsContext.js +2 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +9 -8
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
- package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorPart.js +28 -3
- package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
- package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
- package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
- package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.d.ts +9 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +80 -4
- package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +4 -0
- package/vscode/src/vs/workbench/browser/parts/editor/media/multieditortabscontrol.css +15 -7
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +3 -1
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +62 -31
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +12 -3
- package/vscode/src/vs/workbench/browser/parts/editor/noEditorTabsControl.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/noEditorTabsControl.js +6 -0
- package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/singleEditorTabsControl.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/singleEditorTabsControl.js +6 -0
- package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +22 -22
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +27 -27
- package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +12 -85
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.d.ts +7 -0
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +17 -16
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/treeView.js +7 -7
- package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +5 -5
- package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
- package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
- package/vscode/src/vs/workbench/browser/window.js +15 -14
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +332 -317
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +3 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +91 -83
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorGroupModel.js +2 -1
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +8 -0
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/memento.d.ts +1 -0
- package/vscode/src/vs/workbench/common/memento.js +19 -0
- package/vscode/src/vs/workbench/common/theme.js +161 -161
- package/vscode/src/vs/workbench/common/views.d.ts +9 -9
- package/vscode/src/vs/workbench/common/views.js +11 -11
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -156
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.d.ts +25 -5
- package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.js +63 -39
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +39 -33
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.js +454 -0
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.service.d.ts +20 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +97 -67
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionWorkingDirectoryResolver.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +4 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +14 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +36 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemSource.d.ts +129 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemsModel.service.d.ts +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemsModel.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +3 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +20 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentResolveService.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +6 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +13 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +103 -67
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackService.service.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/chatToolRiskAssessmentService.service.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/chatToolRiskAssessmentService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputNotificationService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputNotificationService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatPhoneInputPresenter.service.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatPhoneInputPresenter.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +94 -85
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +14 -1
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +6 -3
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariables.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +26 -30
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +94 -54
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +14 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +49 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +129 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +15 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +23 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +14 -2
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +15 -3
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +64 -49
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +162 -45
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.d.ts +38 -1
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/enablement.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/enablement.js +11 -11
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +6 -7
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +42 -122
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +7 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +17 -2
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +48 -13
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatElicitationRequestPart.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatElicitationRequestPart.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatPlanReviewData.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatPlanReviewData.js +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +13 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +7 -1
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatSlashCommands.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.js +32 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginGitService.service.d.ts +17 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +100 -39
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +12 -3
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +20 -16
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookClaudeCompat.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookClaudeCompat.js +77 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookCompatibility.d.ts +77 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookCompatibility.js +120 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookCopilotCliCompat.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookCopilotCliCompat.js +23 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +91 -77
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +29 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +5 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +1 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.d.ts +234 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +1686 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.d.ts +191 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.js +734 -0
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatParserTypes.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatParserTypes.js +6 -3
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +14 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +55 -36
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.js +6 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +25 -5
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.d.ts +39 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.service.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
- 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/find/simpleFindWidget.js +10 -10
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
- 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 +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +12 -12
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
- package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +22 -13
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
- package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.d.ts +101 -0
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.js +428 -0
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +7 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +22 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +91 -76
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +17 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +26 -21
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +181 -181
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
- package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
- package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +49 -49
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +94 -89
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +30 -27
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +54 -51
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
- package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
- 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.service.d.ts +4 -5
- 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/browser/mcpCommandsAddConfiguration.js +67 -66
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +49 -43
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +22 -16
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +34 -48
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +11 -11
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.d.ts +8 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.js +30 -7
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -4
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +15 -51
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +19 -14
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.d.ts +17 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +66 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +57 -57
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/common/search.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/agentHostTerminalService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +3 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +9 -9
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +189 -69
- package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +6 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
- package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.d.ts +2 -4
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +9 -24
- package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +14 -14
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +19 -7
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +137 -84
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/browser/editorService.d.ts +2 -2
- package/vscode/src/vs/workbench/services/editor/browser/editorService.js +7 -3
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +7 -4
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +14 -3
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +8 -0
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +9 -9
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +0 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
- package/vscode/src/vs/workbench/services/extensions/common/extensionManifestPropertiesService.d.ts +4 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionManifestPropertiesService.js +39 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionManifestPropertiesService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.d.ts +43 -0
- package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.js +33 -0
- package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.service.d.ts +14 -0
- package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.service.js +6 -0
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
- package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
- package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
- 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/ignoreFile.js +7 -2
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +3 -3
- package/vscode/src/vs/workbench/services/search/common/search.d.ts +1 -1
- package/vscode/src/vs/workbench/services/storage/browser/storageService.d.ts +4 -0
- package/vscode/src/vs/workbench/services/storage/browser/storageService.js +30 -2
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/encoding.js +20 -15
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.d.ts +0 -1
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +4 -5
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceTrust.js +3 -3
- package/vscode-dts/vscode.d.ts +3 -1
- package/{vscode/src/vs/workbench/contrib/extensions/browser/media/extensionManagement.css → vscode-dts/vscode.proposed.agentsWindowConfiguration.d.ts} +3 -7
- package/vscode-dts/vscode.proposed.chatDebug.d.ts +31 -0
- package/vscode-dts/vscode.proposed.chatInputNotification.d.ts +118 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +14 -0
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +32 -0
- package/vscode-dts/vscode.proposed.chatPromptFiles.d.ts +29 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +2 -8
- package/vscode-dts/vscode.proposed.chatSessionCustomizationProvider.d.ts +16 -0
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +68 -10
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +1 -1
- package/vscode-dts/vscode.proposed.customEditorDiffs.d.ts +67 -0
- package/vscode-dts/vscode.proposed.customEditorPriority.d.ts +6 -0
- package/vscode-dts/vscode.proposed.d.ts +6 -0
- package/vscode-dts/vscode.proposed.documentDiff.d.ts +145 -0
- package/vscode-dts/vscode.proposed.languageModelPricing.d.ts +70 -0
- package/vscode/src/vs/base/common/defaultAccount.d.ts +0 -58
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/animation.d.ts +0 -32
- package/vscode/src/vs/platform/extensionManagement/common/unsupportedExtensionsMigration.d.ts +0 -14
- package/vscode/src/vs/platform/extensionManagement/common/unsupportedExtensionsMigration.js +0 -145
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.d.ts +0 -19
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.js +0 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.d.ts +0 -76
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +0 -470
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.d.ts +0 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +0 -83
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.d.ts +0 -20
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +0 -66
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.d.ts +0 -83
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +0 -1359
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +0 -49
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.d.ts +0 -22
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +0 -728
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.d.ts +0 -63
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +0 -522
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendations.d.ts +0 -19
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendations.js +0 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationsService.d.ts +0 -71
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationsService.js +0 -263
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.d.ts +0 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +0 -2201
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +0 -40
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +0 -77
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.d.ts +0 -16
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +0 -93
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.d.ts +0 -27
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +0 -100
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +0 -151
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +0 -1031
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.d.ts +0 -235
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +0 -1600
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.d.ts +0 -314
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +0 -3449
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.d.ts +0 -44
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +0 -368
- package/vscode/src/vs/workbench/contrib/extensions/browser/keymapRecommendations.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/keymapRecommendations.js +0 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/languageRecommendations.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/languageRecommendations.js +0 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +0 -910
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css +0 -229
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-dark.svg +0 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-hc.svg +0 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading.svg +0 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/runtimeExtensionsEditor.css +0 -86
- package/vscode/src/vs/workbench/contrib/extensions/browser/remoteRecommendations.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/remoteRecommendations.js +0 -38
- package/vscode/src/vs/workbench/contrib/extensions/browser/unsupportedExtensionsMigrationContribution.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/unsupportedExtensionsMigrationContribution.js +0 -41
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +0 -38
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.d.ts +0 -33
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +0 -179
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +0 -90
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.d.ts +0 -24
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +0 -50
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.d.ts +0 -15
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +0 -47
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatHistoryService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.d.ts +0 -72
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +0 -998
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.d.ts +0 -17
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +0 -49
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.d.ts +0 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +0 -12
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.d.ts +0 -88
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +0 -464
- package/vscode/src/vs/workbench/contrib/mcp/browser/media/mcpServerEditor.css +0 -94
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.d.ts +0 -16
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +0 -475
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +0 -34
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +0 -874
|
@@ -18,26 +18,26 @@ import { IUserDataProfilesService } from '../../platform/userDataProfile/common/
|
|
|
18
18
|
const workbenchConfigurationNodeBase = ( Object.freeze({
|
|
19
19
|
"id": "workbench",
|
|
20
20
|
"order": 7,
|
|
21
|
-
"title": ( localize(
|
|
21
|
+
"title": ( localize(4117, "Workbench")),
|
|
22
22
|
"type": "object"
|
|
23
23
|
}));
|
|
24
24
|
const securityConfigurationNodeBase = ( Object.freeze({
|
|
25
25
|
"id": "security",
|
|
26
26
|
"scope": ConfigurationScope.APPLICATION,
|
|
27
|
-
"title": ( localize(
|
|
27
|
+
"title": ( localize(4118, "Security")),
|
|
28
28
|
"type": "object",
|
|
29
29
|
"order": 7
|
|
30
30
|
}));
|
|
31
31
|
const problemsConfigurationNodeBase = ( Object.freeze({
|
|
32
32
|
"id": "problems",
|
|
33
|
-
"title": ( localize(
|
|
33
|
+
"title": ( localize(4119, "Problems")),
|
|
34
34
|
"type": "object",
|
|
35
35
|
"order": 101
|
|
36
36
|
}));
|
|
37
37
|
const windowConfigurationNodeBase = ( Object.freeze({
|
|
38
38
|
"id": "window",
|
|
39
39
|
"order": 8,
|
|
40
|
-
"title": ( localize(
|
|
40
|
+
"title": ( localize(4120, "Window")),
|
|
41
41
|
"type": "object"
|
|
42
42
|
}));
|
|
43
43
|
const Extensions = {
|
|
@@ -190,11 +190,11 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
|
|
|
190
190
|
"items": {
|
|
191
191
|
"type": "string",
|
|
192
192
|
"pattern": "^[^\\\\]+$",
|
|
193
|
-
"patternErrorMessage": ( localize(
|
|
193
|
+
"patternErrorMessage": ( localize(4121, "UNC host names must not contain backslashes."))
|
|
194
194
|
},
|
|
195
195
|
"default": [],
|
|
196
196
|
"markdownDescription": ( localize(
|
|
197
|
-
|
|
197
|
+
4122,
|
|
198
198
|
"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."
|
|
199
199
|
)),
|
|
200
200
|
"scope": ConfigurationScope.APPLICATION_MACHINE
|
|
@@ -203,7 +203,7 @@ let DynamicWorkbenchSecurityConfiguration = class DynamicWorkbenchSecurityConfig
|
|
|
203
203
|
"type": "boolean",
|
|
204
204
|
"default": true,
|
|
205
205
|
"markdownDescription": ( localize(
|
|
206
|
-
|
|
206
|
+
4123,
|
|
207
207
|
"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."
|
|
208
208
|
)),
|
|
209
209
|
"scope": ConfigurationScope.APPLICATION_MACHINE
|
|
@@ -246,9 +246,9 @@ let DynamicWindowConfiguration = class DynamicWindowConfiguration extends Dispos
|
|
|
246
246
|
"type": ["string", "null"],
|
|
247
247
|
"default": null,
|
|
248
248
|
"enum": [...( this.userDataProfilesService.profiles.map(profile => profile.name)), null],
|
|
249
|
-
"enumItemLabels": [...( this.userDataProfilesService.profiles.map(() => "")), ( localize(
|
|
249
|
+
"enumItemLabels": [...( this.userDataProfilesService.profiles.map(() => "")), ( localize(4124, "Active Window"))],
|
|
250
250
|
"description": ( localize(
|
|
251
|
-
|
|
251
|
+
4125,
|
|
252
252
|
"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."
|
|
253
253
|
)),
|
|
254
254
|
"scope": ConfigurationScope.APPLICATION
|
|
@@ -39,7 +39,10 @@ export declare const ActiveEditorAvailableEditorIdsContext: RawContextKey<string
|
|
|
39
39
|
export declare const TextCompareEditorVisibleContext: RawContextKey<boolean>;
|
|
40
40
|
export declare const TextCompareEditorActiveContext: RawContextKey<boolean>;
|
|
41
41
|
export declare const SideBySideEditorActiveContext: RawContextKey<boolean>;
|
|
42
|
+
export declare const ActiveCustomEditorDiffCanToggleLayoutContext: RawContextKey<boolean>;
|
|
43
|
+
export declare const ActiveCustomEditorTextDiffContext: RawContextKey<boolean>;
|
|
42
44
|
export declare const EditorGroupEditorsCountContext: RawContextKey<number>;
|
|
45
|
+
export declare const IsTopRightEditorGroupContext: RawContextKey<boolean>;
|
|
43
46
|
export declare const ActiveEditorGroupEmptyContext: RawContextKey<boolean>;
|
|
44
47
|
export declare const ActiveEditorGroupIndexContext: RawContextKey<number>;
|
|
45
48
|
export declare const ActiveEditorGroupLastContext: RawContextKey<boolean>;
|
|
@@ -9,123 +9,131 @@ import { ILanguageService } from '../../editor/common/languages/language.service
|
|
|
9
9
|
import { IFileService } from '../../platform/files/common/files.service.js';
|
|
10
10
|
import { IModelService } from '../../editor/common/services/model.service.js';
|
|
11
11
|
import { Schemas } from '../../base/common/network.js';
|
|
12
|
-
import { DEFAULT_EDITOR_ASSOCIATION } from './editor.js';
|
|
13
|
-
import { DiffEditorInput } from './editor/diffEditorInput.js';
|
|
12
|
+
import { DEFAULT_EDITOR_ASSOCIATION, isDiffEditorInput } from './editor.js';
|
|
14
13
|
|
|
15
14
|
var AbstractResourceContextKey_1;
|
|
16
15
|
const WorkbenchStateContext = ( new RawContextKey("workbenchState", undefined, {
|
|
17
16
|
type: "string",
|
|
18
17
|
description: ( localize(
|
|
19
|
-
|
|
18
|
+
4126,
|
|
20
19
|
"The kind of workspace opened in the window, either 'empty' (no workspace), 'folder' (single folder) or 'workspace' (multi-root workspace)"
|
|
21
20
|
))
|
|
22
21
|
}));
|
|
23
|
-
const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(
|
|
22
|
+
const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(4127, "The number of root folders in the workspace"))));
|
|
24
23
|
const OpenFolderWorkspaceSupportContext = ( new RawContextKey("openFolderWorkspaceSupport", true, true));
|
|
25
24
|
const EnterMultiRootWorkspaceSupportContext = ( new RawContextKey("enterMultiRootWorkspaceSupport", true, true));
|
|
26
25
|
const EmptyWorkspaceSupportContext = ( new RawContextKey("emptyWorkspaceSupport", true, true));
|
|
27
|
-
const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(
|
|
26
|
+
const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(4128, "Whether there are any working copies with unsaved changes"))));
|
|
28
27
|
const RemoteNameContext = ( new RawContextKey("remoteName", "", ( localize(
|
|
29
|
-
|
|
28
|
+
4129,
|
|
30
29
|
"The name of the remote the window is connected to or an empty string if not connected to any remote"
|
|
31
30
|
))));
|
|
32
31
|
const VirtualWorkspaceContext = ( new RawContextKey("virtualWorkspace", "", ( localize(
|
|
33
|
-
|
|
32
|
+
4130,
|
|
34
33
|
"The scheme of the current workspace is from a virtual file system or an empty string."
|
|
35
34
|
))));
|
|
36
35
|
const TemporaryWorkspaceContext = ( new RawContextKey("temporaryWorkspace", false, ( localize(
|
|
37
|
-
|
|
36
|
+
4131,
|
|
38
37
|
"The scheme of the current workspace is from a temporary file system."
|
|
39
38
|
))));
|
|
40
|
-
const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(
|
|
39
|
+
const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(4132, "Whether the current window is a agent sessions window."))));
|
|
41
40
|
const HasWebFileSystemAccess = ( new RawContextKey("hasWebFileSystemAccess", false, true));
|
|
42
41
|
const EmbedderIdentifierContext = ( new RawContextKey("embedderIdentifier", undefined, ( localize(
|
|
43
|
-
|
|
42
|
+
4133,
|
|
44
43
|
"The identifier of the embedder according to the product service, if one is defined"
|
|
45
44
|
))));
|
|
46
|
-
const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(
|
|
45
|
+
const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(4134, "Whether VS Code is running under automation/smoke test"))));
|
|
47
46
|
const IsSandboxWorkspaceContext = ( new RawContextKey("isSandboxWorkspace", false, true));
|
|
48
|
-
const IsMainWindowFullscreenContext = ( new RawContextKey("isFullscreen", false, ( localize(
|
|
49
|
-
const IsAuxiliaryWindowFocusedContext = ( new RawContextKey("isAuxiliaryWindowFocusedContext", false, ( localize(
|
|
50
|
-
const IsAuxiliaryWindowContext = ( new RawContextKey("isAuxiliaryWindow", false, ( localize(
|
|
51
|
-
const ActiveEditorDirtyContext = ( new RawContextKey("activeEditorIsDirty", false, ( localize(
|
|
52
|
-
const ActiveEditorPinnedContext = ( new RawContextKey("activeEditorIsNotPreview", false, ( localize(
|
|
53
|
-
const ActiveEditorFirstInGroupContext = ( new RawContextKey("activeEditorIsFirstInGroup", false, ( localize(
|
|
54
|
-
const ActiveEditorLastInGroupContext = ( new RawContextKey("activeEditorIsLastInGroup", false, ( localize(
|
|
55
|
-
const ActiveEditorStickyContext = ( new RawContextKey("activeEditorIsPinned", false, ( localize(
|
|
56
|
-
const ActiveEditorReadonlyContext = ( new RawContextKey("activeEditorIsReadonly", false, ( localize(
|
|
57
|
-
const ActiveCompareEditorCanSwapContext = ( new RawContextKey("activeCompareEditorCanSwap", false, ( localize(
|
|
47
|
+
const IsMainWindowFullscreenContext = ( new RawContextKey("isFullscreen", false, ( localize(4135, "Whether the main window is in fullscreen mode"))));
|
|
48
|
+
const IsAuxiliaryWindowFocusedContext = ( new RawContextKey("isAuxiliaryWindowFocusedContext", false, ( localize(4136, "Whether an auxiliary window is focused"))));
|
|
49
|
+
const IsAuxiliaryWindowContext = ( new RawContextKey("isAuxiliaryWindow", false, ( localize(4137, "Window is an auxiliary window"))));
|
|
50
|
+
const ActiveEditorDirtyContext = ( new RawContextKey("activeEditorIsDirty", false, ( localize(4138, "Whether the active editor has unsaved changes"))));
|
|
51
|
+
const ActiveEditorPinnedContext = ( new RawContextKey("activeEditorIsNotPreview", false, ( localize(4139, "Whether the active editor is not in preview mode"))));
|
|
52
|
+
const ActiveEditorFirstInGroupContext = ( new RawContextKey("activeEditorIsFirstInGroup", false, ( localize(4140, "Whether the active editor is the first one in its group"))));
|
|
53
|
+
const ActiveEditorLastInGroupContext = ( new RawContextKey("activeEditorIsLastInGroup", false, ( localize(4141, "Whether the active editor is the last one in its group"))));
|
|
54
|
+
const ActiveEditorStickyContext = ( new RawContextKey("activeEditorIsPinned", false, ( localize(4142, "Whether the active editor is pinned"))));
|
|
55
|
+
const ActiveEditorReadonlyContext = ( new RawContextKey("activeEditorIsReadonly", false, ( localize(4143, "Whether the active editor is read-only"))));
|
|
56
|
+
const ActiveCompareEditorCanSwapContext = ( new RawContextKey("activeCompareEditorCanSwap", false, ( localize(4144, "Whether the active compare editor can swap sides"))));
|
|
58
57
|
const ActiveEditorCanToggleReadonlyContext = ( new RawContextKey("activeEditorCanToggleReadonly", true, ( localize(
|
|
59
|
-
|
|
58
|
+
4145,
|
|
60
59
|
"Whether the active editor can toggle between being read-only or writeable"
|
|
61
60
|
))));
|
|
62
|
-
const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(
|
|
61
|
+
const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(4146, "Whether the active editor can revert"))));
|
|
63
62
|
const ActiveEditorCanSplitInGroupContext = ( new RawContextKey("activeEditorCanSplitInGroup", true));
|
|
64
63
|
const ActiveEditorContext = ( new RawContextKey("activeEditor", null, {
|
|
65
64
|
type: "string",
|
|
66
|
-
description: ( localize(
|
|
65
|
+
description: ( localize(4147, "The identifier of the active editor"))
|
|
67
66
|
}));
|
|
68
67
|
const ActiveEditorAvailableEditorIdsContext = ( new RawContextKey("activeEditorAvailableEditorIds", "", ( localize(
|
|
69
|
-
|
|
68
|
+
4148,
|
|
70
69
|
"The available editor identifiers that are usable for the active editor"
|
|
71
70
|
))));
|
|
72
|
-
const TextCompareEditorVisibleContext = ( new RawContextKey("textCompareEditorVisible", false, ( localize(
|
|
73
|
-
const TextCompareEditorActiveContext = ( new RawContextKey("textCompareEditorActive", false, ( localize(
|
|
74
|
-
const SideBySideEditorActiveContext = ( new RawContextKey("sideBySideEditorActive", false, ( localize(
|
|
75
|
-
const
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
const
|
|
80
|
-
const
|
|
81
|
-
const
|
|
82
|
-
|
|
71
|
+
const TextCompareEditorVisibleContext = ( new RawContextKey("textCompareEditorVisible", false, ( localize(4149, "Whether a text compare editor is visible"))));
|
|
72
|
+
const TextCompareEditorActiveContext = ( new RawContextKey("textCompareEditorActive", false, ( localize(4150, "Whether a text compare editor is active"))));
|
|
73
|
+
const SideBySideEditorActiveContext = ( new RawContextKey("sideBySideEditorActive", false, ( localize(4151, "Whether a side by side editor is active"))));
|
|
74
|
+
const ActiveCustomEditorDiffCanToggleLayoutContext = ( new RawContextKey("activeCustomEditorDiffCanToggleLayout", false, ( localize(
|
|
75
|
+
4152,
|
|
76
|
+
"Whether the active custom editor diff can toggle between inline and side by side layout"
|
|
77
|
+
))));
|
|
78
|
+
const ActiveCustomEditorTextDiffContext = ( new RawContextKey("activeCustomEditorTextDiff", false, ( localize(4153, "Whether the active custom editor diff is backed by text documents"))));
|
|
79
|
+
const EditorGroupEditorsCountContext = ( new RawContextKey("groupEditorsCount", 0, ( localize(4154, "The number of opened editor groups"))));
|
|
80
|
+
const IsTopRightEditorGroupContext = ( new RawContextKey("isTopRightEditorGroup", false, ( localize(
|
|
81
|
+
4155,
|
|
82
|
+
"Whether the editor group is the top right editor group in the editor part"
|
|
83
|
+
))));
|
|
84
|
+
const ActiveEditorGroupEmptyContext = ( new RawContextKey("activeEditorGroupEmpty", false, ( localize(4156, "Whether the active editor group is empty"))));
|
|
85
|
+
const ActiveEditorGroupIndexContext = ( new RawContextKey("activeEditorGroupIndex", 0, ( localize(4157, "The index of the active editor group"))));
|
|
86
|
+
const ActiveEditorGroupLastContext = ( new RawContextKey("activeEditorGroupLast", false, ( localize(4158, "Whether the active editor group is the last group"))));
|
|
87
|
+
const ActiveEditorGroupLockedContext = ( new RawContextKey("activeEditorGroupLocked", false, ( localize(4159, "Whether the active editor group is locked"))));
|
|
88
|
+
const MultipleEditorGroupsContext = ( new RawContextKey("multipleEditorGroups", false, ( localize(4160, "Whether there are multiple editor groups opened"))));
|
|
89
|
+
const MultipleEditorsSelectedInGroupContext = ( new RawContextKey("multipleEditorsSelectedInGroup", false, ( localize(4161, "Whether multiple editors have been selected in an editor group"))));
|
|
90
|
+
const TwoEditorsSelectedInGroupContext = ( new RawContextKey("twoEditorsSelectedInGroup", false, ( localize(4162, "Whether exactly two editors have been selected in an editor group"))));
|
|
83
91
|
const SelectedEditorsInGroupFileOrUntitledResourceContextKey = ( new RawContextKey(
|
|
84
92
|
"SelectedEditorsInGroupFileOrUntitledResourceContextKey",
|
|
85
93
|
true,
|
|
86
94
|
( localize(
|
|
87
|
-
|
|
95
|
+
4163,
|
|
88
96
|
"Whether all selected editors in a group have a file or untitled resource associated"
|
|
89
97
|
))
|
|
90
98
|
));
|
|
91
|
-
const EditorPartMultipleEditorGroupsContext = ( new RawContextKey("editorPartMultipleEditorGroups", false, ( localize(
|
|
92
|
-
const EditorPartMaximizedEditorGroupContext = ( new RawContextKey("editorPartMaximizedEditorGroup", false, ( localize(
|
|
93
|
-
const EditorPartModalContext = ( new RawContextKey("editorPartModal", false, ( localize(
|
|
94
|
-
const EditorPartModalMaximizedContext = ( new RawContextKey("editorPartModalMaximized", false, ( localize(
|
|
95
|
-
const EditorPartModalNavigationContext = ( new RawContextKey("editorPartModalNavigation", false, ( localize(
|
|
96
|
-
const EditorPartModalSidebarContext = ( new RawContextKey("editorPartModalSidebar", false, ( localize(
|
|
97
|
-
const EditorPartModalSidebarVisibleContext = ( new RawContextKey("editorPartModalSidebarVisible", false, ( localize(
|
|
98
|
-
const EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(
|
|
99
|
-
const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(
|
|
100
|
-
const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(
|
|
101
|
-
const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(
|
|
102
|
-
const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(
|
|
103
|
-
const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(
|
|
104
|
-
const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(
|
|
105
|
-
const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(
|
|
106
|
-
const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(
|
|
107
|
-
const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(
|
|
108
|
-
const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(
|
|
109
|
-
const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(
|
|
110
|
-
const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(
|
|
111
|
-
const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(
|
|
112
|
-
const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(
|
|
113
|
-
const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(
|
|
114
|
-
const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(
|
|
115
|
-
const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(
|
|
116
|
-
const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(
|
|
117
|
-
const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(
|
|
118
|
-
const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(
|
|
119
|
-
const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(
|
|
120
|
-
const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(
|
|
121
|
-
const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(
|
|
99
|
+
const EditorPartMultipleEditorGroupsContext = ( new RawContextKey("editorPartMultipleEditorGroups", false, ( localize(4164, "Whether there are multiple editor groups opened in an editor part"))));
|
|
100
|
+
const EditorPartMaximizedEditorGroupContext = ( new RawContextKey("editorPartMaximizedEditorGroup", false, ( localize(4165, "Editor Part has a maximized group"))));
|
|
101
|
+
const EditorPartModalContext = ( new RawContextKey("editorPartModal", false, ( localize(4166, "Whether focus is in a modal editor part"))));
|
|
102
|
+
const EditorPartModalMaximizedContext = ( new RawContextKey("editorPartModalMaximized", false, ( localize(4167, "Whether the modal editor part is maximized"))));
|
|
103
|
+
const EditorPartModalNavigationContext = ( new RawContextKey("editorPartModalNavigation", false, ( localize(4168, "Whether the modal editor part has navigation context"))));
|
|
104
|
+
const EditorPartModalSidebarContext = ( new RawContextKey("editorPartModalSidebar", false, ( localize(4169, "Whether the modal editor part has a sidebar"))));
|
|
105
|
+
const EditorPartModalSidebarVisibleContext = ( new RawContextKey("editorPartModalSidebarVisible", false, ( localize(4170, "Whether the modal editor part sidebar is visible"))));
|
|
106
|
+
const EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(4171, "Whether an editor is open"))));
|
|
107
|
+
const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(4172, "Whether Zen mode is enabled"))));
|
|
108
|
+
const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(4173, "Whether centered layout is enabled for the main editor"))));
|
|
109
|
+
const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(4174, "Whether editors split vertically"))));
|
|
110
|
+
const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(4175, "Whether the editor area in the main window is visible"))));
|
|
111
|
+
const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(4176, "Whether editor tabs are visible"))));
|
|
112
|
+
const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(4177, "Whether the sidebar is visible"))));
|
|
113
|
+
const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(4178, "Whether the sidebar has keyboard focus"))));
|
|
114
|
+
const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(4179, "The identifier of the active viewlet"))));
|
|
115
|
+
const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(4180, "Whether the status bar has keyboard focus"))));
|
|
116
|
+
const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(4181, "Style of the window title bar"))));
|
|
117
|
+
const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(4182, "Whether the title bar is visible"))));
|
|
118
|
+
const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(4183, "Title bar is in compact mode"))));
|
|
119
|
+
const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(4184, "Whether the banner has keyboard focus"))));
|
|
120
|
+
const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(4185, "Whether a notification has keyboard focus"))));
|
|
121
|
+
const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(4186, "Whether the notifications center is visible"))));
|
|
122
|
+
const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(4187, "Whether a notification toast is visible"))));
|
|
123
|
+
const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(4188, "The identifier of the active auxiliary panel"))));
|
|
124
|
+
const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(4189, "Whether the auxiliary bar has keyboard focus"))));
|
|
125
|
+
const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(4190, "Whether the auxiliary bar is visible"))));
|
|
126
|
+
const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(4191, "Whether the auxiliary bar is maximized"))));
|
|
127
|
+
const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(4192, "The identifier of the active panel"))));
|
|
128
|
+
const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(4193, "Whether the panel has keyboard focus"))));
|
|
129
|
+
const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(4194, "The position of the panel, always 'bottom'"))));
|
|
122
130
|
const PanelAlignmentContext = ( new RawContextKey("panelAlignment", "center", ( localize(
|
|
123
|
-
|
|
131
|
+
4195,
|
|
124
132
|
"The alignment of the panel, either 'center', 'left', 'right' or 'justify'"
|
|
125
133
|
))));
|
|
126
|
-
const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(
|
|
127
|
-
const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(
|
|
128
|
-
const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(
|
|
134
|
+
const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(4196, "Whether the panel is visible"))));
|
|
135
|
+
const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(4197, "Whether the panel is maximized"))));
|
|
136
|
+
const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(4198, "The identifier of the view that has keyboard focus"))));
|
|
129
137
|
function getVisbileViewContextKey(viewId) {
|
|
130
138
|
return `view.${viewId}.visible`;
|
|
131
139
|
}
|
|
@@ -136,55 +144,55 @@ let AbstractResourceContextKey = class AbstractResourceContextKey {
|
|
|
136
144
|
static {
|
|
137
145
|
this.Scheme = ( new RawContextKey("resourceScheme", undefined, {
|
|
138
146
|
type: "string",
|
|
139
|
-
description: ( localize(
|
|
147
|
+
description: ( localize(4199, "The scheme of the resource"))
|
|
140
148
|
}));
|
|
141
149
|
}
|
|
142
150
|
static {
|
|
143
151
|
this.Filename = ( new RawContextKey("resourceFilename", undefined, {
|
|
144
152
|
type: "string",
|
|
145
|
-
description: ( localize(
|
|
153
|
+
description: ( localize(4200, "The file name of the resource"))
|
|
146
154
|
}));
|
|
147
155
|
}
|
|
148
156
|
static {
|
|
149
157
|
this.Dirname = ( new RawContextKey("resourceDirname", undefined, {
|
|
150
158
|
type: "string",
|
|
151
|
-
description: ( localize(
|
|
159
|
+
description: ( localize(4201, "The folder name the resource is contained in"))
|
|
152
160
|
}));
|
|
153
161
|
}
|
|
154
162
|
static {
|
|
155
163
|
this.Path = ( new RawContextKey("resourcePath", undefined, {
|
|
156
164
|
type: "string",
|
|
157
|
-
description: ( localize(
|
|
165
|
+
description: ( localize(4202, "The full path of the resource"))
|
|
158
166
|
}));
|
|
159
167
|
}
|
|
160
168
|
static {
|
|
161
169
|
this.LangId = ( new RawContextKey("resourceLangId", undefined, {
|
|
162
170
|
type: "string",
|
|
163
|
-
description: ( localize(
|
|
171
|
+
description: ( localize(4203, "The language identifier of the resource"))
|
|
164
172
|
}));
|
|
165
173
|
}
|
|
166
174
|
static {
|
|
167
175
|
this.Resource = ( new RawContextKey("resource", undefined, {
|
|
168
176
|
type: "URI",
|
|
169
|
-
description: ( localize(
|
|
177
|
+
description: ( localize(4204, "The full value of the resource including scheme and path"))
|
|
170
178
|
}));
|
|
171
179
|
}
|
|
172
180
|
static {
|
|
173
181
|
this.Extension = ( new RawContextKey("resourceExtname", undefined, {
|
|
174
182
|
type: "string",
|
|
175
|
-
description: ( localize(
|
|
183
|
+
description: ( localize(4205, "The extension name of the resource"))
|
|
176
184
|
}));
|
|
177
185
|
}
|
|
178
186
|
static {
|
|
179
187
|
this.HasResource = ( new RawContextKey("resourceSet", undefined, {
|
|
180
188
|
type: "boolean",
|
|
181
|
-
description: ( localize(
|
|
189
|
+
description: ( localize(4206, "Whether a resource is present or not"))
|
|
182
190
|
}));
|
|
183
191
|
}
|
|
184
192
|
static {
|
|
185
193
|
this.IsFileSystemResource = ( new RawContextKey("isFileSystemResource", undefined, {
|
|
186
194
|
type: "boolean",
|
|
187
|
-
description: ( localize(
|
|
195
|
+
description: ( localize(4207, "Whether the resource is backed by a file system provider"))
|
|
188
196
|
}));
|
|
189
197
|
}
|
|
190
198
|
constructor(_contextKeyService, _fileService, _languageService, _modelService) {
|
|
@@ -291,7 +299,7 @@ function getAvailableEditorIds(editor, editorResolverService) {
|
|
|
291
299
|
if (editor.resource?.scheme === Schemas.untitled && editor.editorId !== DEFAULT_EDITOR_ASSOCIATION.id) {
|
|
292
300
|
return [];
|
|
293
301
|
}
|
|
294
|
-
if (editor
|
|
302
|
+
if (isDiffEditorInput(editor)) {
|
|
295
303
|
const original = getAvailableEditorIds(editor.original, editorResolverService);
|
|
296
304
|
const modified = ( new Set(getAvailableEditorIds(editor.modified, editorResolverService)));
|
|
297
305
|
return original.filter(editor => ( modified.has(editor)));
|
|
@@ -302,4 +310,4 @@ function getAvailableEditorIds(editor, editorResolverService) {
|
|
|
302
310
|
return [];
|
|
303
311
|
}
|
|
304
312
|
|
|
305
|
-
export { ActiveAuxiliaryContext, ActiveCompareEditorCanSwapContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorCanRevertContext, ActiveEditorCanSplitInGroupContext, ActiveEditorCanToggleReadonlyContext, ActiveEditorContext, ActiveEditorDirtyContext, ActiveEditorFirstInGroupContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, ActiveEditorLastInGroupContext, ActiveEditorPinnedContext, ActiveEditorReadonlyContext, ActiveEditorStickyContext, ActivePanelContext, ActiveViewletContext, AuxiliaryBarFocusContext, AuxiliaryBarMaximizedContext, AuxiliaryBarVisibleContext, BannerFocused, DirtyWorkingCopiesContext, EditorGroupEditorsCountContext, EditorPartMaximizedEditorGroupContext, EditorPartModalContext, EditorPartModalMaximizedContext, EditorPartModalNavigationContext, EditorPartModalSidebarContext, EditorPartModalSidebarVisibleContext, EditorPartMultipleEditorGroupsContext, EditorTabsVisibleContext, EditorsVisibleContext, EmbedderIdentifierContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, FocusedViewContext, HasWebFileSystemAccess, InAutomationContext, InEditorZenModeContext, IsAuxiliaryWindowContext, IsAuxiliaryWindowFocusedContext, IsCompactTitleBarContext, IsMainEditorCenteredLayoutContext, IsMainWindowFullscreenContext, IsSandboxWorkspaceContext, IsSessionsWindowContext, MainEditorAreaVisibleContext, MultipleEditorGroupsContext, MultipleEditorsSelectedInGroupContext, NotificationFocusedContext, NotificationsCenterVisibleContext, NotificationsToastsVisibleContext, OpenFolderWorkspaceSupportContext, PanelAlignmentContext, PanelFocusContext, PanelMaximizedContext, PanelPositionContext, PanelVisibleContext, RemoteNameContext, ResourceContextKey, SelectedEditorsInGroupFileOrUntitledResourceContextKey, SideBarVisibleContext, SideBySideEditorActiveContext, SidebarFocusContext, SplitEditorsVertically, StaticResourceContextKey, StatusBarFocused, TemporaryWorkspaceContext, TextCompareEditorActiveContext, TextCompareEditorVisibleContext, TitleBarStyleContext, TitleBarVisibleContext, TwoEditorsSelectedInGroupContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, applyAvailableEditorIds, getVisbileViewContextKey };
|
|
313
|
+
export { ActiveAuxiliaryContext, ActiveCompareEditorCanSwapContext, ActiveCustomEditorDiffCanToggleLayoutContext, ActiveCustomEditorTextDiffContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorCanRevertContext, ActiveEditorCanSplitInGroupContext, ActiveEditorCanToggleReadonlyContext, ActiveEditorContext, ActiveEditorDirtyContext, ActiveEditorFirstInGroupContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, ActiveEditorLastInGroupContext, ActiveEditorPinnedContext, ActiveEditorReadonlyContext, ActiveEditorStickyContext, ActivePanelContext, ActiveViewletContext, AuxiliaryBarFocusContext, AuxiliaryBarMaximizedContext, AuxiliaryBarVisibleContext, BannerFocused, DirtyWorkingCopiesContext, EditorGroupEditorsCountContext, EditorPartMaximizedEditorGroupContext, EditorPartModalContext, EditorPartModalMaximizedContext, EditorPartModalNavigationContext, EditorPartModalSidebarContext, EditorPartModalSidebarVisibleContext, EditorPartMultipleEditorGroupsContext, EditorTabsVisibleContext, EditorsVisibleContext, EmbedderIdentifierContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, FocusedViewContext, HasWebFileSystemAccess, InAutomationContext, InEditorZenModeContext, IsAuxiliaryWindowContext, IsAuxiliaryWindowFocusedContext, IsCompactTitleBarContext, IsMainEditorCenteredLayoutContext, IsMainWindowFullscreenContext, IsSandboxWorkspaceContext, IsSessionsWindowContext, IsTopRightEditorGroupContext, MainEditorAreaVisibleContext, MultipleEditorGroupsContext, MultipleEditorsSelectedInGroupContext, NotificationFocusedContext, NotificationsCenterVisibleContext, NotificationsToastsVisibleContext, OpenFolderWorkspaceSupportContext, PanelAlignmentContext, PanelFocusContext, PanelMaximizedContext, PanelPositionContext, PanelVisibleContext, RemoteNameContext, ResourceContextKey, SelectedEditorsInGroupFileOrUntitledResourceContextKey, SideBarVisibleContext, SideBySideEditorActiveContext, SidebarFocusContext, SplitEditorsVertically, StaticResourceContextKey, StatusBarFocused, TemporaryWorkspaceContext, TextCompareEditorActiveContext, TextCompareEditorVisibleContext, TitleBarStyleContext, TitleBarVisibleContext, TwoEditorsSelectedInGroupContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, applyAvailableEditorIds, getVisbileViewContextKey };
|
|
@@ -54,7 +54,7 @@ let DiffEditorInput = class DiffEditorInput extends SideBySideEditorInput {
|
|
|
54
54
|
} else {
|
|
55
55
|
const originalName = this.original.getName();
|
|
56
56
|
const modifiedName = this.modified.getName();
|
|
57
|
-
name = ( localize(
|
|
57
|
+
name = ( localize(4212, "{0} ↔ {1}", originalName, modifiedName));
|
|
58
58
|
forceDescription = originalName === modifiedName;
|
|
59
59
|
}
|
|
60
60
|
let shortDescription;
|
|
@@ -50,7 +50,8 @@ let EditorGroupModel = class EditorGroupModel extends Disposable {
|
|
|
50
50
|
this.instantiationService = instantiationService;
|
|
51
51
|
this.configurationService = configurationService;
|
|
52
52
|
this._onDidModelChange = this._register(( new Emitter({
|
|
53
|
-
leakWarningThreshold: 500
|
|
53
|
+
leakWarningThreshold: 500,
|
|
54
|
+
leakWarningName: "EditorGroupModel._onDidModelChange"
|
|
54
55
|
})));
|
|
55
56
|
this.onDidModelChange = this._onDidModelChange.event;
|
|
56
57
|
this.editors = [];
|
|
@@ -75,7 +75,7 @@ let SideBySideEditorInput = class SideBySideEditorInput extends EditorInput {
|
|
|
75
75
|
if (this.hasIdenticalSides) {
|
|
76
76
|
return this.primary.getName();
|
|
77
77
|
}
|
|
78
|
-
return localize(
|
|
78
|
+
return localize(4213, "{0} - {1}", this.secondary.getName(), this.primary.getName());
|
|
79
79
|
}
|
|
80
80
|
getPreferredName() {
|
|
81
81
|
return this.preferredName;
|
|
@@ -111,7 +111,7 @@ let BaseTextEditorModel = class BaseTextEditorModel extends EditorModel {
|
|
|
111
111
|
this.setLanguageIdInternal(lang, LanguageDetectionLanguageEventSource);
|
|
112
112
|
const languageName = this.languageService.getLanguageName(lang);
|
|
113
113
|
this.accessibilityService.alert(( localize(
|
|
114
|
-
|
|
114
|
+
4214,
|
|
115
115
|
"Language {0} was automatically detected and set as the language mode.",
|
|
116
116
|
languageName ?? lang
|
|
117
117
|
)));
|
|
@@ -830,6 +830,14 @@ export interface IActiveEditorChangeEvent {
|
|
|
830
830
|
* The new active editor or `undefined` if the group is empty.
|
|
831
831
|
*/
|
|
832
832
|
editor: EditorInput | undefined;
|
|
833
|
+
/**
|
|
834
|
+
* Indicates whether the editor change is the result of an explicit
|
|
835
|
+
* user action (`true`) or happened automatically as a side effect
|
|
836
|
+
* (e.g. the chat agent opening files it has edited).
|
|
837
|
+
*
|
|
838
|
+
* When omitted, callers should treat the change as explicit.
|
|
839
|
+
*/
|
|
840
|
+
isExplicit?: boolean;
|
|
833
841
|
}
|
|
834
842
|
export interface IEditorWillMoveEvent extends IEditorIdentifier {
|
|
835
843
|
/**
|
|
@@ -17,8 +17,8 @@ const EditorExtensions = {
|
|
|
17
17
|
};
|
|
18
18
|
const DEFAULT_EDITOR_ASSOCIATION = {
|
|
19
19
|
id: "default",
|
|
20
|
-
displayName: ( localize(
|
|
21
|
-
providerDisplayName: ( localize(
|
|
20
|
+
displayName: ( localize(4208, "Text Editor")),
|
|
21
|
+
providerDisplayName: ( localize(4209, "Built-in"))
|
|
22
22
|
};
|
|
23
23
|
const SIDE_BY_SIDE_EDITOR_ID = "workbench.editor.sidebysideEditor";
|
|
24
24
|
const TEXT_DIFF_EDITOR_ID = "workbench.editors.textDiffEditor";
|
|
@@ -176,7 +176,7 @@ function isDiffEditorInput(editor) {
|
|
|
176
176
|
function createTooLargeFileError(group, input, options, message, preferencesService) {
|
|
177
177
|
return createEditorOpenError(message, [toAction({
|
|
178
178
|
id: "workbench.action.openLargeFile",
|
|
179
|
-
label: ( localize(
|
|
179
|
+
label: ( localize(4210, "Open Anyway")),
|
|
180
180
|
run: () => {
|
|
181
181
|
const fileEditorOptions = {
|
|
182
182
|
...options,
|
|
@@ -188,7 +188,7 @@ function createTooLargeFileError(group, input, options, message, preferencesServ
|
|
|
188
188
|
}
|
|
189
189
|
}), toAction({
|
|
190
190
|
id: "workbench.action.configureEditorLargeFileConfirmation",
|
|
191
|
-
label: ( localize(
|
|
191
|
+
label: ( localize(4211, "Configure Limit")),
|
|
192
192
|
run: () => {
|
|
193
193
|
return preferencesService.openUserSettings({
|
|
194
194
|
query: "workbench.editorLargeFileConfirmation"
|
|
@@ -5,6 +5,7 @@ import { Event } from "../../base/common/event.js";
|
|
|
5
5
|
export declare class Memento<T extends object> {
|
|
6
6
|
private storageService;
|
|
7
7
|
private static readonly applicationMementos;
|
|
8
|
+
private static readonly applicationSharedMementos;
|
|
8
9
|
private static readonly profileMementos;
|
|
9
10
|
private static readonly workspaceMementos;
|
|
10
11
|
private static readonly COMMON_PREFIX;
|
|
@@ -7,6 +7,9 @@ class Memento {
|
|
|
7
7
|
static {
|
|
8
8
|
this.applicationMementos = ( new Map());
|
|
9
9
|
}
|
|
10
|
+
static {
|
|
11
|
+
this.applicationSharedMementos = ( new Map());
|
|
12
|
+
}
|
|
10
13
|
static {
|
|
11
14
|
this.profileMementos = ( new Map());
|
|
12
15
|
}
|
|
@@ -49,6 +52,15 @@ class Memento {
|
|
|
49
52
|
}
|
|
50
53
|
return applicationMemento.getMemento();
|
|
51
54
|
}
|
|
55
|
+
case StorageScope.APPLICATION_SHARED:
|
|
56
|
+
{
|
|
57
|
+
let applicationSharedMemento = Memento.applicationSharedMementos.get(this.id);
|
|
58
|
+
if (!applicationSharedMemento) {
|
|
59
|
+
applicationSharedMemento = ( new ScopedMemento(this.id, scope, target, this.storageService));
|
|
60
|
+
Memento.applicationSharedMementos.set(this.id, applicationSharedMemento);
|
|
61
|
+
}
|
|
62
|
+
return applicationSharedMemento.getMemento();
|
|
63
|
+
}
|
|
52
64
|
}
|
|
53
65
|
}
|
|
54
66
|
onDidChangeValue(scope, disposables) {
|
|
@@ -58,10 +70,14 @@ class Memento {
|
|
|
58
70
|
Memento.workspaceMementos.get(this.id)?.save();
|
|
59
71
|
Memento.profileMementos.get(this.id)?.save();
|
|
60
72
|
Memento.applicationMementos.get(this.id)?.save();
|
|
73
|
+
Memento.applicationSharedMementos.get(this.id)?.save();
|
|
61
74
|
}
|
|
62
75
|
reloadMemento(scope) {
|
|
63
76
|
let memento;
|
|
64
77
|
switch (scope) {
|
|
78
|
+
case StorageScope.APPLICATION_SHARED:
|
|
79
|
+
memento = Memento.applicationSharedMementos.get(this.id);
|
|
80
|
+
break;
|
|
65
81
|
case StorageScope.APPLICATION:
|
|
66
82
|
memento = Memento.applicationMementos.get(this.id);
|
|
67
83
|
break;
|
|
@@ -85,6 +101,9 @@ class Memento {
|
|
|
85
101
|
case StorageScope.APPLICATION:
|
|
86
102
|
Memento.applicationMementos.clear();
|
|
87
103
|
break;
|
|
104
|
+
case StorageScope.APPLICATION_SHARED:
|
|
105
|
+
Memento.applicationSharedMementos.clear();
|
|
106
|
+
break;
|
|
88
107
|
}
|
|
89
108
|
}
|
|
90
109
|
}
|