@codingame/monaco-vscode-api 29.1.1 → 30.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +39 -16
- package/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +5 -5
- package/vscode/src/vs/base/browser/ui/dialog/dialog.js +6 -2
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +19 -7
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +81 -15
- package/vscode/src/vs/base/common/codicons.d.ts +4 -0
- package/vscode/src/vs/base/common/codicons.js +3 -1
- package/vscode/src/vs/base/common/glob.js +5 -1
- package/vscode/src/vs/base/common/performance.d.ts +4 -0
- package/vscode/src/vs/base/common/performance.js +40 -17
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +4 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +13 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +106 -74
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +14 -11
- package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -0
- package/vscode/src/vs/platform/actions/common/actions.js +9 -0
- package/vscode/src/vs/platform/browserView/common/browserView.d.ts +34 -7
- package/vscode/src/vs/platform/editor/common/editor.d.ts +29 -4
- package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +3 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +3 -0
- package/vscode/src/vs/platform/keyboardLayout/common/keyboardLayout.js +2 -2
- package/vscode/src/vs/platform/label/common/label.d.ts +6 -0
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/pickerQuickAccess.d.ts +11 -2
- package/vscode/src/vs/platform/quickinput/browser/pickerQuickAccess.js +6 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +14 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +5 -3
- package/vscode/src/vs/platform/quickinput/common/quickInput.js +6 -2
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.d.ts +4 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.service.d.ts +6 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.service.js +6 -0
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +3 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +5 -2
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +4 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.js +9 -0
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +21 -1
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +5 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +57 -4
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +5 -3
- package/vscode/src/vs/workbench/api/common/extHostFileSystemEventService.js +34 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +5 -1
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +32 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +11 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +24 -2
- package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +35 -5
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +70 -4
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +8 -1
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +156 -167
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +77 -77
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -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.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +161 -161
- package/vscode/src/vs/workbench/common/views.d.ts +0 -6
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +154 -154
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +65 -64
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +26 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +21 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +21 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +8 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +165 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +1409 -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 +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +87 -83
- package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +12 -2
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +5 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +13 -12
- package/vscode/src/vs/workbench/contrib/chat/common/chatPerf.d.ts +75 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatPerf.js +30 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +9 -12
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.js +1 -13
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +1 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +45 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +17 -4
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +48 -5
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +46 -18
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.service.d.ts +9 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +23 -23
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +11 -8
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +54 -20
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.d.ts +3 -5
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.js +3 -7
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +5 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +10 -6
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +36 -6
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +3 -29
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +2 -18
- 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 +78 -88
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +16 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +28 -23
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +1 -7
- 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 +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.d.ts +2 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
- 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.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +41 -8
- 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 +2 -2
- 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.js +7 -7
- 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/customEditorInput.js +3 -3
- 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 +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- 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 +18 -18
- 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/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +41 -41
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +148 -148
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +170 -170
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
- 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 +39 -39
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
- 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 +27 -27
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
- 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/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 +66 -66
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +34 -34
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
- 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/browser/model/textModelDiffs.js +20 -9
- 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 +3 -3
- 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.js +27 -27
- 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/viewModel/notebookViewModelImpl.js +1 -0
- 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 +10 -10
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
- 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 +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +30 -13
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
- 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.js +55 -55
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +32 -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 +5 -5
- 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/terminal.d.ts +1 -1
- 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.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +43 -45
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +13 -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 +10 -3
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +10 -3
- 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/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +10 -6
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +134 -91
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.service.d.ts +6 -2
- 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 +1 -1
- 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/webviewFindAccessibilityHelp.js +30 -30
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +1 -1
- 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 +4 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +27 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/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/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.d.ts +1 -0
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +9 -0
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +1 -0
- 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/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/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/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- 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/themes/common/workbenchThemeService.d.ts +2 -2
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +8 -4
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
- 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-dts/vscode.proposed.chatParticipantAdditions.d.ts +0 -4
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +19 -1
- package/vscode-dts/vscode.proposed.chatSessionCustomizationProvider.d.ts +168 -0
- package/vscode-dts/vscode.proposed.d.ts +1 -0
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.d.ts +0 -26
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +0 -746
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +0 -13
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +0 -300
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +0 -55
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +0 -273
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +0 -1963
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +0 -50
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +0 -314
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +0 -258
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +0 -886
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +0 -41
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +0 -118
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +0 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +0 -71
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +0 -27
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +0 -40
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +0 -23
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +0 -313
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +0 -51
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +0 -265
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +0 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +0 -185
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +0 -28
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +0 -104
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +0 -43
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +0 -21
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +0 -41
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +0 -25
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +0 -69
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +0 -469
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +0 -149
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +0 -933
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +0 -180
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +0 -32
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +0 -102
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +0 -643
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +0 -30
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +0 -197
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +0 -75
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +0 -539
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +0 -13
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +0 -39
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +0 -19
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +0 -90
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +0 -26
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +0 -92
|
@@ -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(4070, "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(4071, "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(4072, "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(4073, "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(4074, "UNC host names must not contain backslashes."))
|
|
194
194
|
},
|
|
195
195
|
"default": [],
|
|
196
196
|
"markdownDescription": ( localize(
|
|
197
|
-
|
|
197
|
+
4075,
|
|
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
|
+
4076,
|
|
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(4077, "Active Window"))],
|
|
250
250
|
"description": ( localize(
|
|
251
|
-
|
|
251
|
+
4078,
|
|
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
|
|
@@ -16,114 +16,114 @@ var AbstractResourceContextKey_1;
|
|
|
16
16
|
const WorkbenchStateContext = ( new RawContextKey("workbenchState", undefined, {
|
|
17
17
|
type: "string",
|
|
18
18
|
description: ( localize(
|
|
19
|
-
|
|
19
|
+
4079,
|
|
20
20
|
"The kind of workspace opened in the window, either 'empty' (no workspace), 'folder' (single folder) or 'workspace' (multi-root workspace)"
|
|
21
21
|
))
|
|
22
22
|
}));
|
|
23
|
-
const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(
|
|
23
|
+
const WorkspaceFolderCountContext = ( new RawContextKey("workspaceFolderCount", 0, ( localize(4080, "The number of root folders in the workspace"))));
|
|
24
24
|
const OpenFolderWorkspaceSupportContext = ( new RawContextKey("openFolderWorkspaceSupport", true, true));
|
|
25
25
|
const EnterMultiRootWorkspaceSupportContext = ( new RawContextKey("enterMultiRootWorkspaceSupport", true, true));
|
|
26
26
|
const EmptyWorkspaceSupportContext = ( new RawContextKey("emptyWorkspaceSupport", true, true));
|
|
27
|
-
const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(
|
|
27
|
+
const DirtyWorkingCopiesContext = ( new RawContextKey("dirtyWorkingCopies", false, ( localize(4081, "Whether there are any working copies with unsaved changes"))));
|
|
28
28
|
const RemoteNameContext = ( new RawContextKey("remoteName", "", ( localize(
|
|
29
|
-
|
|
29
|
+
4082,
|
|
30
30
|
"The name of the remote the window is connected to or an empty string if not connected to any remote"
|
|
31
31
|
))));
|
|
32
32
|
const VirtualWorkspaceContext = ( new RawContextKey("virtualWorkspace", "", ( localize(
|
|
33
|
-
|
|
33
|
+
4083,
|
|
34
34
|
"The scheme of the current workspace is from a virtual file system or an empty string."
|
|
35
35
|
))));
|
|
36
36
|
const TemporaryWorkspaceContext = ( new RawContextKey("temporaryWorkspace", false, ( localize(
|
|
37
|
-
|
|
37
|
+
4084,
|
|
38
38
|
"The scheme of the current workspace is from a temporary file system."
|
|
39
39
|
))));
|
|
40
|
-
const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(
|
|
40
|
+
const IsSessionsWindowContext = ( new RawContextKey("isSessionsWindow", false, ( localize(4085, "Whether the current window is a sessions window."))));
|
|
41
41
|
const HasWebFileSystemAccess = ( new RawContextKey("hasWebFileSystemAccess", false, true));
|
|
42
42
|
const EmbedderIdentifierContext = ( new RawContextKey("embedderIdentifier", undefined, ( localize(
|
|
43
|
-
|
|
43
|
+
4086,
|
|
44
44
|
"The identifier of the embedder according to the product service, if one is defined"
|
|
45
45
|
))));
|
|
46
|
-
const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(
|
|
46
|
+
const InAutomationContext = ( new RawContextKey("inAutomation", false, ( localize(4087, "Whether VS Code is running under automation/smoke test"))));
|
|
47
47
|
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(
|
|
48
|
+
const IsMainWindowFullscreenContext = ( new RawContextKey("isFullscreen", false, ( localize(4088, "Whether the main window is in fullscreen mode"))));
|
|
49
|
+
const IsAuxiliaryWindowFocusedContext = ( new RawContextKey("isAuxiliaryWindowFocusedContext", false, ( localize(4089, "Whether an auxiliary window is focused"))));
|
|
50
|
+
const IsAuxiliaryWindowContext = ( new RawContextKey("isAuxiliaryWindow", false, ( localize(4090, "Window is an auxiliary window"))));
|
|
51
|
+
const ActiveEditorDirtyContext = ( new RawContextKey("activeEditorIsDirty", false, ( localize(4091, "Whether the active editor has unsaved changes"))));
|
|
52
|
+
const ActiveEditorPinnedContext = ( new RawContextKey("activeEditorIsNotPreview", false, ( localize(4092, "Whether the active editor is not in preview mode"))));
|
|
53
|
+
const ActiveEditorFirstInGroupContext = ( new RawContextKey("activeEditorIsFirstInGroup", false, ( localize(4093, "Whether the active editor is the first one in its group"))));
|
|
54
|
+
const ActiveEditorLastInGroupContext = ( new RawContextKey("activeEditorIsLastInGroup", false, ( localize(4094, "Whether the active editor is the last one in its group"))));
|
|
55
|
+
const ActiveEditorStickyContext = ( new RawContextKey("activeEditorIsPinned", false, ( localize(4095, "Whether the active editor is pinned"))));
|
|
56
|
+
const ActiveEditorReadonlyContext = ( new RawContextKey("activeEditorIsReadonly", false, ( localize(4096, "Whether the active editor is read-only"))));
|
|
57
|
+
const ActiveCompareEditorCanSwapContext = ( new RawContextKey("activeCompareEditorCanSwap", false, ( localize(4097, "Whether the active compare editor can swap sides"))));
|
|
58
58
|
const ActiveEditorCanToggleReadonlyContext = ( new RawContextKey("activeEditorCanToggleReadonly", true, ( localize(
|
|
59
|
-
|
|
59
|
+
4098,
|
|
60
60
|
"Whether the active editor can toggle between being read-only or writeable"
|
|
61
61
|
))));
|
|
62
|
-
const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(
|
|
62
|
+
const ActiveEditorCanRevertContext = ( new RawContextKey("activeEditorCanRevert", false, ( localize(4099, "Whether the active editor can revert"))));
|
|
63
63
|
const ActiveEditorCanSplitInGroupContext = ( new RawContextKey("activeEditorCanSplitInGroup", true));
|
|
64
64
|
const ActiveEditorContext = ( new RawContextKey("activeEditor", null, {
|
|
65
65
|
type: "string",
|
|
66
|
-
description: ( localize(
|
|
66
|
+
description: ( localize(4100, "The identifier of the active editor"))
|
|
67
67
|
}));
|
|
68
68
|
const ActiveEditorAvailableEditorIdsContext = ( new RawContextKey("activeEditorAvailableEditorIds", "", ( localize(
|
|
69
|
-
|
|
69
|
+
4101,
|
|
70
70
|
"The available editor identifiers that are usable for the active editor"
|
|
71
71
|
))));
|
|
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 EditorGroupEditorsCountContext = ( new RawContextKey("groupEditorsCount", 0, ( localize(
|
|
76
|
-
const ActiveEditorGroupEmptyContext = ( new RawContextKey("activeEditorGroupEmpty", false, ( localize(
|
|
77
|
-
const ActiveEditorGroupIndexContext = ( new RawContextKey("activeEditorGroupIndex", 0, ( localize(
|
|
78
|
-
const ActiveEditorGroupLastContext = ( new RawContextKey("activeEditorGroupLast", false, ( localize(
|
|
79
|
-
const ActiveEditorGroupLockedContext = ( new RawContextKey("activeEditorGroupLocked", false, ( localize(
|
|
80
|
-
const MultipleEditorGroupsContext = ( new RawContextKey("multipleEditorGroups", false, ( localize(
|
|
81
|
-
const MultipleEditorsSelectedInGroupContext = ( new RawContextKey("multipleEditorsSelectedInGroup", false, ( localize(
|
|
82
|
-
const TwoEditorsSelectedInGroupContext = ( new RawContextKey("twoEditorsSelectedInGroup", false, ( localize(
|
|
72
|
+
const TextCompareEditorVisibleContext = ( new RawContextKey("textCompareEditorVisible", false, ( localize(4102, "Whether a text compare editor is visible"))));
|
|
73
|
+
const TextCompareEditorActiveContext = ( new RawContextKey("textCompareEditorActive", false, ( localize(4103, "Whether a text compare editor is active"))));
|
|
74
|
+
const SideBySideEditorActiveContext = ( new RawContextKey("sideBySideEditorActive", false, ( localize(4104, "Whether a side by side editor is active"))));
|
|
75
|
+
const EditorGroupEditorsCountContext = ( new RawContextKey("groupEditorsCount", 0, ( localize(4105, "The number of opened editor groups"))));
|
|
76
|
+
const ActiveEditorGroupEmptyContext = ( new RawContextKey("activeEditorGroupEmpty", false, ( localize(4106, "Whether the active editor group is empty"))));
|
|
77
|
+
const ActiveEditorGroupIndexContext = ( new RawContextKey("activeEditorGroupIndex", 0, ( localize(4107, "The index of the active editor group"))));
|
|
78
|
+
const ActiveEditorGroupLastContext = ( new RawContextKey("activeEditorGroupLast", false, ( localize(4108, "Whether the active editor group is the last group"))));
|
|
79
|
+
const ActiveEditorGroupLockedContext = ( new RawContextKey("activeEditorGroupLocked", false, ( localize(4109, "Whether the active editor group is locked"))));
|
|
80
|
+
const MultipleEditorGroupsContext = ( new RawContextKey("multipleEditorGroups", false, ( localize(4110, "Whether there are multiple editor groups opened"))));
|
|
81
|
+
const MultipleEditorsSelectedInGroupContext = ( new RawContextKey("multipleEditorsSelectedInGroup", false, ( localize(4111, "Whether multiple editors have been selected in an editor group"))));
|
|
82
|
+
const TwoEditorsSelectedInGroupContext = ( new RawContextKey("twoEditorsSelectedInGroup", false, ( localize(4112, "Whether exactly two editors have been selected in an editor group"))));
|
|
83
83
|
const SelectedEditorsInGroupFileOrUntitledResourceContextKey = ( new RawContextKey(
|
|
84
84
|
"SelectedEditorsInGroupFileOrUntitledResourceContextKey",
|
|
85
85
|
true,
|
|
86
86
|
( localize(
|
|
87
|
-
|
|
87
|
+
4113,
|
|
88
88
|
"Whether all selected editors in a group have a file or untitled resource associated"
|
|
89
89
|
))
|
|
90
90
|
));
|
|
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 EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(
|
|
97
|
-
const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(
|
|
98
|
-
const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(
|
|
99
|
-
const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(
|
|
100
|
-
const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(
|
|
101
|
-
const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(
|
|
102
|
-
const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(
|
|
103
|
-
const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(
|
|
104
|
-
const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(
|
|
105
|
-
const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(
|
|
106
|
-
const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(
|
|
107
|
-
const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(
|
|
108
|
-
const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(
|
|
109
|
-
const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(
|
|
110
|
-
const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(
|
|
111
|
-
const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(
|
|
112
|
-
const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(
|
|
113
|
-
const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(
|
|
114
|
-
const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(
|
|
115
|
-
const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(
|
|
116
|
-
const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(
|
|
117
|
-
const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(
|
|
118
|
-
const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(
|
|
119
|
-
const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(
|
|
91
|
+
const EditorPartMultipleEditorGroupsContext = ( new RawContextKey("editorPartMultipleEditorGroups", false, ( localize(4114, "Whether there are multiple editor groups opened in an editor part"))));
|
|
92
|
+
const EditorPartMaximizedEditorGroupContext = ( new RawContextKey("editorPartMaximizedEditorGroup", false, ( localize(4115, "Editor Part has a maximized group"))));
|
|
93
|
+
const EditorPartModalContext = ( new RawContextKey("editorPartModal", false, ( localize(4116, "Whether focus is in a modal editor part"))));
|
|
94
|
+
const EditorPartModalMaximizedContext = ( new RawContextKey("editorPartModalMaximized", false, ( localize(4117, "Whether the modal editor part is maximized"))));
|
|
95
|
+
const EditorPartModalNavigationContext = ( new RawContextKey("editorPartModalNavigation", false, ( localize(4118, "Whether the modal editor part has navigation context"))));
|
|
96
|
+
const EditorsVisibleContext = ( new RawContextKey("editorIsOpen", false, ( localize(4119, "Whether an editor is open"))));
|
|
97
|
+
const InEditorZenModeContext = ( new RawContextKey("inZenMode", false, ( localize(4120, "Whether Zen mode is enabled"))));
|
|
98
|
+
const IsMainEditorCenteredLayoutContext = ( new RawContextKey("isCenteredLayout", false, ( localize(4121, "Whether centered layout is enabled for the main editor"))));
|
|
99
|
+
const SplitEditorsVertically = ( new RawContextKey("splitEditorsVertically", false, ( localize(4122, "Whether editors split vertically"))));
|
|
100
|
+
const MainEditorAreaVisibleContext = ( new RawContextKey("mainEditorAreaVisible", true, ( localize(4123, "Whether the editor area in the main window is visible"))));
|
|
101
|
+
const EditorTabsVisibleContext = ( new RawContextKey("editorTabsVisible", true, ( localize(4124, "Whether editor tabs are visible"))));
|
|
102
|
+
const SideBarVisibleContext = ( new RawContextKey("sideBarVisible", false, ( localize(4125, "Whether the sidebar is visible"))));
|
|
103
|
+
const SidebarFocusContext = ( new RawContextKey("sideBarFocus", false, ( localize(4126, "Whether the sidebar has keyboard focus"))));
|
|
104
|
+
const ActiveViewletContext = ( new RawContextKey("activeViewlet", "", ( localize(4127, "The identifier of the active viewlet"))));
|
|
105
|
+
const StatusBarFocused = ( new RawContextKey("statusBarFocused", false, ( localize(4128, "Whether the status bar has keyboard focus"))));
|
|
106
|
+
const TitleBarStyleContext = ( new RawContextKey("titleBarStyle", "custom", ( localize(4129, "Style of the window title bar"))));
|
|
107
|
+
const TitleBarVisibleContext = ( new RawContextKey("titleBarVisible", false, ( localize(4130, "Whether the title bar is visible"))));
|
|
108
|
+
const IsCompactTitleBarContext = ( new RawContextKey("isCompactTitleBar", false, ( localize(4131, "Title bar is in compact mode"))));
|
|
109
|
+
const BannerFocused = ( new RawContextKey("bannerFocused", false, ( localize(4132, "Whether the banner has keyboard focus"))));
|
|
110
|
+
const NotificationFocusedContext = ( new RawContextKey("notificationFocus", true, ( localize(4133, "Whether a notification has keyboard focus"))));
|
|
111
|
+
const NotificationsCenterVisibleContext = ( new RawContextKey("notificationCenterVisible", false, ( localize(4134, "Whether the notifications center is visible"))));
|
|
112
|
+
const NotificationsToastsVisibleContext = ( new RawContextKey("notificationToastsVisible", false, ( localize(4135, "Whether a notification toast is visible"))));
|
|
113
|
+
const ActiveAuxiliaryContext = ( new RawContextKey("activeAuxiliary", "", ( localize(4136, "The identifier of the active auxiliary panel"))));
|
|
114
|
+
const AuxiliaryBarFocusContext = ( new RawContextKey("auxiliaryBarFocus", false, ( localize(4137, "Whether the auxiliary bar has keyboard focus"))));
|
|
115
|
+
const AuxiliaryBarVisibleContext = ( new RawContextKey("auxiliaryBarVisible", false, ( localize(4138, "Whether the auxiliary bar is visible"))));
|
|
116
|
+
const AuxiliaryBarMaximizedContext = ( new RawContextKey("auxiliaryBarMaximized", false, ( localize(4139, "Whether the auxiliary bar is maximized"))));
|
|
117
|
+
const ActivePanelContext = ( new RawContextKey("activePanel", "", ( localize(4140, "The identifier of the active panel"))));
|
|
118
|
+
const PanelFocusContext = ( new RawContextKey("panelFocus", false, ( localize(4141, "Whether the panel has keyboard focus"))));
|
|
119
|
+
const PanelPositionContext = ( new RawContextKey("panelPosition", "bottom", ( localize(4142, "The position of the panel, always 'bottom'"))));
|
|
120
120
|
const PanelAlignmentContext = ( new RawContextKey("panelAlignment", "center", ( localize(
|
|
121
|
-
|
|
121
|
+
4143,
|
|
122
122
|
"The alignment of the panel, either 'center', 'left', 'right' or 'justify'"
|
|
123
123
|
))));
|
|
124
|
-
const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(
|
|
125
|
-
const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(
|
|
126
|
-
const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(
|
|
124
|
+
const PanelVisibleContext = ( new RawContextKey("panelVisible", false, ( localize(4144, "Whether the panel is visible"))));
|
|
125
|
+
const PanelMaximizedContext = ( new RawContextKey("panelMaximized", false, ( localize(4145, "Whether the panel is maximized"))));
|
|
126
|
+
const FocusedViewContext = ( new RawContextKey("focusedView", "", ( localize(4146, "The identifier of the view that has keyboard focus"))));
|
|
127
127
|
function getVisbileViewContextKey(viewId) {
|
|
128
128
|
return `view.${viewId}.visible`;
|
|
129
129
|
}
|
|
@@ -134,55 +134,55 @@ let AbstractResourceContextKey = class AbstractResourceContextKey {
|
|
|
134
134
|
static {
|
|
135
135
|
this.Scheme = ( new RawContextKey("resourceScheme", undefined, {
|
|
136
136
|
type: "string",
|
|
137
|
-
description: ( localize(
|
|
137
|
+
description: ( localize(4147, "The scheme of the resource"))
|
|
138
138
|
}));
|
|
139
139
|
}
|
|
140
140
|
static {
|
|
141
141
|
this.Filename = ( new RawContextKey("resourceFilename", undefined, {
|
|
142
142
|
type: "string",
|
|
143
|
-
description: ( localize(
|
|
143
|
+
description: ( localize(4148, "The file name of the resource"))
|
|
144
144
|
}));
|
|
145
145
|
}
|
|
146
146
|
static {
|
|
147
147
|
this.Dirname = ( new RawContextKey("resourceDirname", undefined, {
|
|
148
148
|
type: "string",
|
|
149
|
-
description: ( localize(
|
|
149
|
+
description: ( localize(4149, "The folder name the resource is contained in"))
|
|
150
150
|
}));
|
|
151
151
|
}
|
|
152
152
|
static {
|
|
153
153
|
this.Path = ( new RawContextKey("resourcePath", undefined, {
|
|
154
154
|
type: "string",
|
|
155
|
-
description: ( localize(
|
|
155
|
+
description: ( localize(4150, "The full path of the resource"))
|
|
156
156
|
}));
|
|
157
157
|
}
|
|
158
158
|
static {
|
|
159
159
|
this.LangId = ( new RawContextKey("resourceLangId", undefined, {
|
|
160
160
|
type: "string",
|
|
161
|
-
description: ( localize(
|
|
161
|
+
description: ( localize(4151, "The language identifier of the resource"))
|
|
162
162
|
}));
|
|
163
163
|
}
|
|
164
164
|
static {
|
|
165
165
|
this.Resource = ( new RawContextKey("resource", undefined, {
|
|
166
166
|
type: "URI",
|
|
167
|
-
description: ( localize(
|
|
167
|
+
description: ( localize(4152, "The full value of the resource including scheme and path"))
|
|
168
168
|
}));
|
|
169
169
|
}
|
|
170
170
|
static {
|
|
171
171
|
this.Extension = ( new RawContextKey("resourceExtname", undefined, {
|
|
172
172
|
type: "string",
|
|
173
|
-
description: ( localize(
|
|
173
|
+
description: ( localize(4153, "The extension name of the resource"))
|
|
174
174
|
}));
|
|
175
175
|
}
|
|
176
176
|
static {
|
|
177
177
|
this.HasResource = ( new RawContextKey("resourceSet", undefined, {
|
|
178
178
|
type: "boolean",
|
|
179
|
-
description: ( localize(
|
|
179
|
+
description: ( localize(4154, "Whether a resource is present or not"))
|
|
180
180
|
}));
|
|
181
181
|
}
|
|
182
182
|
static {
|
|
183
183
|
this.IsFileSystemResource = ( new RawContextKey("isFileSystemResource", undefined, {
|
|
184
184
|
type: "boolean",
|
|
185
|
-
description: ( localize(
|
|
185
|
+
description: ( localize(4155, "Whether the resource is backed by a file system provider"))
|
|
186
186
|
}));
|
|
187
187
|
}
|
|
188
188
|
constructor(_contextKeyService, _fileService, _languageService, _modelService) {
|
|
@@ -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(4160, "{0} ↔ {1}", originalName, modifiedName));
|
|
58
58
|
forceDescription = originalName === modifiedName;
|
|
59
59
|
}
|
|
60
60
|
let shortDescription;
|
|
@@ -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(4161, "{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
|
+
4162,
|
|
115
115
|
"Language {0} was automatically detected and set as the language mode.",
|
|
116
116
|
languageName ?? lang
|
|
117
117
|
)));
|
|
@@ -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(4156, "Text Editor")),
|
|
21
|
+
providerDisplayName: ( localize(4157, "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(4158, "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(4159, "Configure Limit")),
|
|
192
192
|
run: () => {
|
|
193
193
|
return preferencesService.openUserSettings({
|
|
194
194
|
query: "workbench.editorLargeFileConfirmation"
|