@codingame/monaco-vscode-api 32.0.1 → 33.0.3
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 +51 -7
- package/package.json +8 -8
- package/service-override/tools/views.d.ts +2 -2
- package/services.d.ts +3 -0
- package/services.js +8 -3
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/common/arrays.js +5 -1
- package/vscode/src/vs/base/common/async.js +94 -1
- package/vscode/src/vs/base/common/cache.js +22 -1
- package/vscode/src/vs/base/common/defaultAccount.d.ts +63 -0
- package/vscode/src/vs/base/common/policy.d.ts +1 -1
- package/vscode/src/vs/base/common/product.d.ts +0 -2
- package/vscode/src/vs/base/parts/ipc/common/ipc.net.d.ts +12 -0
- package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +1 -1
- package/vscode/src/vs/editor/common/config/editorOptions.js +1 -1
- package/vscode/src/vs/editor/common/textModelEditSource.js +18 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +22 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +58 -17
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/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/textualHighlightProvider.js +6 -3
- 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/standaloneServices.js +3 -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 +7 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +24 -10
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +1 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +12 -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/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/agentHostUri.js +3 -0
- package/vscode/src/vs/platform/agentHost/common/agentPluginManager.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.d.ts +13 -4
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.js +8 -3
- package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.d.ts +17 -1
- package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.d.ts +27 -0
- package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.d.ts +20 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.d.ts +1054 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.js +59 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.d.ts +17 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +6 -2
- package/vscode/src/vs/platform/agentHost/common/state/protocol/state.d.ts +5 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocolUpgrade.d.ts +73 -0
- package/vscode/src/vs/platform/agentHost/common/state/sessionState.d.ts +139 -0
- package/vscode/src/vs/platform/agentHost/common/state/sessionState.js +24 -0
- package/vscode/src/vs/platform/browserView/common/browserView.d.ts +20 -0
- package/vscode/src/vs/platform/browserView/common/browserView.js +1 -0
- package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.d.ts +3 -1
- package/vscode/src/vs/platform/configuration/common/configuration.js +1 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -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 +5 -5
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +16 -1
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.js +8 -0
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +9 -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/environment/common/argv.d.ts +0 -2
- 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/extensions/common/extensionValidator.js +21 -21
- 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 +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
- 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.js +6 -6
- 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/networkFilter/common/networkFilterService.service.d.ts +2 -4
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/policy/common/policy.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- 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/request/common/request.js +20 -20
- 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/terminalPlatformConfiguration.js +34 -34
- package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +19 -19
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +9 -9
- 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.js +10 -10
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/theme/common/sizeUtils.d.ts +5 -3
- package/vscode/src/vs/platform/theme/common/sizeUtils.js +17 -3
- 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/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
- 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.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +7 -1
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostChatStatus.js +9 -1
- package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -4
- 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/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +4 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +12 -0
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +98 -38
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +35 -35
- package/vscode/src/vs/workbench/browser/actions/layoutActions.js +127 -127
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
- package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
- 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 +37 -37
- 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 +19 -9
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +1 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +139 -176
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +28 -27
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
- 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/editorParts.js +16 -10
- 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.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +24 -7
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
- 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 +10 -10
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +15 -15
- 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/viewMenuActions.d.ts +7 -2
- package/vscode/src/vs/workbench/browser/parts/views/viewMenuActions.js +28 -5
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.d.ts +7 -0
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +11 -5
- package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +12 -9
- package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
- package/vscode/src/vs/workbench/browser/window.js +14 -14
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +225 -225
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +82 -82
- 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.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +156 -156
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.js +10 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -66
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.d.ts +70 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +43 -43
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.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 +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +93 -86
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +4 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +29 -21
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +7 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +41 -2
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +17 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +152 -49
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +17 -8
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +21 -19
- 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 +79 -79
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.d.ts +92 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.js +329 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.d.ts +5 -44
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +33 -276
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.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/reviewPlanTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +2 -2
- 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/languageModelToolsContribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +6 -5
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.service.d.ts +2 -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.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/customEditorDiffInput.d.ts +7 -12
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.js +68 -64
- 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/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.js +85 -0
- 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 +149 -151
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +179 -179
- 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 +6 -6
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +79 -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/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 +28 -28
- 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/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.js +108 -0
- package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +49 -0
- 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/common/mcpConfiguration.js +42 -42
- 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/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/cellOperations.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +746 -0
- 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/controller/insertCellActions.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +300 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +55 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +273 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +1963 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +314 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +258 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +886 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +118 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +71 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +40 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +23 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +313 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +51 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +265 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +185 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +104 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +43 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +41 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +69 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +469 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +149 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +933 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +180 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +32 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +102 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +643 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +197 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +75 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +539 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +39 -0
- 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 +24 -24
- 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/model/notebookMetadataTextModel.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +90 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +92 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.js +44 -0
- 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.js +9 -9
- 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/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.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/common/search.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/search/common/search.js +9 -1
- 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/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.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/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.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +104 -74
- 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 +2 -2
- 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/welcomeOnboarding/common/onboardingTypes.js +14 -14
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +2 -1
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +14 -3
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +31 -25
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +15 -0
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +11 -2
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +65 -22
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +2 -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.d.ts +15 -3
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +19 -3
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +2 -2
- 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/policies/common/accountPolicyService.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/title/browser/titleService.service.d.ts +7 -0
- 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.authIssuers.d.ts +14 -0
- package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +23 -3
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +0 -9
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.d.ts +0 -39
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +0 -9
- 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/media/runtimeExtensionsEditor.css +0 -86
- 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
|
@@ -27,11 +27,11 @@ function WORKBENCH_BACKGROUND(theme) {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
const TAB_ACTIVE_BACKGROUND = registerColor("tab.activeBackground", editorBackground, ( localize(
|
|
30
|
-
|
|
30
|
+
4237,
|
|
31
31
|
"Active tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
32
32
|
)));
|
|
33
33
|
const TAB_UNFOCUSED_ACTIVE_BACKGROUND = registerColor("tab.unfocusedActiveBackground", TAB_ACTIVE_BACKGROUND, ( localize(
|
|
34
|
-
|
|
34
|
+
4238,
|
|
35
35
|
"Active tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
36
36
|
)));
|
|
37
37
|
const TAB_INACTIVE_BACKGROUND = registerColor("tab.inactiveBackground", {
|
|
@@ -40,11 +40,11 @@ const TAB_INACTIVE_BACKGROUND = registerColor("tab.inactiveBackground", {
|
|
|
40
40
|
hcDark: null,
|
|
41
41
|
hcLight: null
|
|
42
42
|
}, ( localize(
|
|
43
|
-
|
|
43
|
+
4239,
|
|
44
44
|
"Inactive tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
45
45
|
)));
|
|
46
46
|
const TAB_UNFOCUSED_INACTIVE_BACKGROUND = registerColor("tab.unfocusedInactiveBackground", TAB_INACTIVE_BACKGROUND, ( localize(
|
|
47
|
-
|
|
47
|
+
4240,
|
|
48
48
|
"Inactive tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
49
49
|
)));
|
|
50
50
|
const TAB_ACTIVE_FOREGROUND = registerColor("tab.activeForeground", {
|
|
@@ -53,7 +53,7 @@ const TAB_ACTIVE_FOREGROUND = registerColor("tab.activeForeground", {
|
|
|
53
53
|
hcDark: Color.white,
|
|
54
54
|
hcLight: "#292929"
|
|
55
55
|
}, ( localize(
|
|
56
|
-
|
|
56
|
+
4241,
|
|
57
57
|
"Active tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
58
58
|
)));
|
|
59
59
|
const TAB_INACTIVE_FOREGROUND = registerColor("tab.inactiveForeground", {
|
|
@@ -62,7 +62,7 @@ const TAB_INACTIVE_FOREGROUND = registerColor("tab.inactiveForeground", {
|
|
|
62
62
|
hcDark: Color.white,
|
|
63
63
|
hcLight: "#292929"
|
|
64
64
|
}, ( localize(
|
|
65
|
-
|
|
65
|
+
4242,
|
|
66
66
|
"Inactive tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
67
67
|
)));
|
|
68
68
|
const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor("tab.unfocusedActiveForeground", {
|
|
@@ -71,7 +71,7 @@ const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor("tab.unfocusedActiveForegr
|
|
|
71
71
|
hcDark: Color.white,
|
|
72
72
|
hcLight: "#292929"
|
|
73
73
|
}, ( localize(
|
|
74
|
-
|
|
74
|
+
4243,
|
|
75
75
|
"Active tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
76
76
|
)));
|
|
77
77
|
registerColor("tab.unfocusedInactiveForeground", {
|
|
@@ -80,11 +80,11 @@ registerColor("tab.unfocusedInactiveForeground", {
|
|
|
80
80
|
hcDark: Color.white,
|
|
81
81
|
hcLight: "#292929"
|
|
82
82
|
}, ( localize(
|
|
83
|
-
|
|
83
|
+
4244,
|
|
84
84
|
"Inactive tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
85
85
|
)));
|
|
86
86
|
const TAB_HOVER_BACKGROUND = registerColor("tab.hoverBackground", null, ( localize(
|
|
87
|
-
|
|
87
|
+
4245,
|
|
88
88
|
"Tab background color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
89
89
|
)));
|
|
90
90
|
const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor("tab.unfocusedHoverBackground", {
|
|
@@ -93,11 +93,11 @@ const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor("tab.unfocusedHoverBackgrou
|
|
|
93
93
|
hcDark: null,
|
|
94
94
|
hcLight: null
|
|
95
95
|
}, ( localize(
|
|
96
|
-
|
|
96
|
+
4246,
|
|
97
97
|
"Tab background color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
98
98
|
)));
|
|
99
99
|
const TAB_HOVER_FOREGROUND = registerColor("tab.hoverForeground", null, ( localize(
|
|
100
|
-
|
|
100
|
+
4247,
|
|
101
101
|
"Tab foreground color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
102
102
|
)));
|
|
103
103
|
const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor("tab.unfocusedHoverForeground", {
|
|
@@ -106,7 +106,7 @@ const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor("tab.unfocusedHoverForegrou
|
|
|
106
106
|
hcDark: null,
|
|
107
107
|
hcLight: null
|
|
108
108
|
}, ( localize(
|
|
109
|
-
|
|
109
|
+
4248,
|
|
110
110
|
"Tab foreground color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
111
111
|
)));
|
|
112
112
|
const TAB_BORDER = registerColor("tab.border", {
|
|
@@ -115,7 +115,7 @@ const TAB_BORDER = registerColor("tab.border", {
|
|
|
115
115
|
hcDark: contrastBorder,
|
|
116
116
|
hcLight: contrastBorder
|
|
117
117
|
}, ( localize(
|
|
118
|
-
|
|
118
|
+
4249,
|
|
119
119
|
"Border to separate tabs from each other. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
120
120
|
)));
|
|
121
121
|
const TAB_LAST_PINNED_BORDER = registerColor("tab.lastPinnedBorder", {
|
|
@@ -124,11 +124,11 @@ const TAB_LAST_PINNED_BORDER = registerColor("tab.lastPinnedBorder", {
|
|
|
124
124
|
hcDark: contrastBorder,
|
|
125
125
|
hcLight: contrastBorder
|
|
126
126
|
}, ( localize(
|
|
127
|
-
|
|
127
|
+
4250,
|
|
128
128
|
"Border to separate pinned tabs from other tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
129
129
|
)));
|
|
130
130
|
const TAB_ACTIVE_BORDER = registerColor("tab.activeBorder", null, ( localize(
|
|
131
|
-
|
|
131
|
+
4251,
|
|
132
132
|
"Border on the bottom of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
133
133
|
)));
|
|
134
134
|
const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor("tab.unfocusedActiveBorder", {
|
|
@@ -137,7 +137,7 @@ const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor("tab.unfocusedActiveBorder", {
|
|
|
137
137
|
hcDark: null,
|
|
138
138
|
hcLight: null
|
|
139
139
|
}, ( localize(
|
|
140
|
-
|
|
140
|
+
4252,
|
|
141
141
|
"Border on the bottom of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
142
142
|
)));
|
|
143
143
|
const TAB_ACTIVE_BORDER_TOP = registerColor("tab.activeBorderTop", {
|
|
@@ -146,7 +146,7 @@ const TAB_ACTIVE_BORDER_TOP = registerColor("tab.activeBorderTop", {
|
|
|
146
146
|
hcDark: null,
|
|
147
147
|
hcLight: "#B5200D"
|
|
148
148
|
}, ( localize(
|
|
149
|
-
|
|
149
|
+
4253,
|
|
150
150
|
"Border to the top of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
151
151
|
)));
|
|
152
152
|
const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor("tab.unfocusedActiveBorderTop", {
|
|
@@ -155,23 +155,23 @@ const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor("tab.unfocusedActiveBorder
|
|
|
155
155
|
hcDark: null,
|
|
156
156
|
hcLight: "#B5200D"
|
|
157
157
|
}, ( localize(
|
|
158
|
-
|
|
158
|
+
4254,
|
|
159
159
|
"Border to the top of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
160
160
|
)));
|
|
161
161
|
const TAB_SELECTED_BORDER_TOP = registerColor("tab.selectedBorderTop", TAB_ACTIVE_BORDER_TOP, ( localize(
|
|
162
|
-
|
|
162
|
+
4255,
|
|
163
163
|
"Border to the top of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
164
164
|
)));
|
|
165
165
|
registerColor("tab.selectedBackground", TAB_ACTIVE_BACKGROUND, ( localize(
|
|
166
|
-
|
|
166
|
+
4256,
|
|
167
167
|
"Background of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
168
168
|
)));
|
|
169
169
|
registerColor("tab.selectedForeground", TAB_ACTIVE_FOREGROUND, ( localize(
|
|
170
|
-
|
|
170
|
+
4257,
|
|
171
171
|
"Foreground of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
172
172
|
)));
|
|
173
173
|
const TAB_HOVER_BORDER = registerColor("tab.hoverBorder", null, ( localize(
|
|
174
|
-
|
|
174
|
+
4258,
|
|
175
175
|
"Border to highlight tabs when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
176
176
|
)));
|
|
177
177
|
const TAB_UNFOCUSED_HOVER_BORDER = registerColor("tab.unfocusedHoverBorder", {
|
|
@@ -180,7 +180,7 @@ const TAB_UNFOCUSED_HOVER_BORDER = registerColor("tab.unfocusedHoverBorder", {
|
|
|
180
180
|
hcDark: null,
|
|
181
181
|
hcLight: contrastBorder
|
|
182
182
|
}, ( localize(
|
|
183
|
-
|
|
183
|
+
4259,
|
|
184
184
|
"Border to highlight tabs in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
185
185
|
)));
|
|
186
186
|
registerColor("tab.dragAndDropBorder", {
|
|
@@ -189,7 +189,7 @@ registerColor("tab.dragAndDropBorder", {
|
|
|
189
189
|
hcDark: activeContrastBorder,
|
|
190
190
|
hcLight: activeContrastBorder
|
|
191
191
|
}, ( localize(
|
|
192
|
-
|
|
192
|
+
4260,
|
|
193
193
|
"Border between tabs to indicate that a tab can be inserted between two tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
194
194
|
)));
|
|
195
195
|
const TAB_ACTIVE_MODIFIED_BORDER = registerColor("tab.activeModifiedBorder", {
|
|
@@ -198,7 +198,7 @@ const TAB_ACTIVE_MODIFIED_BORDER = registerColor("tab.activeModifiedBorder", {
|
|
|
198
198
|
hcDark: null,
|
|
199
199
|
hcLight: contrastBorder
|
|
200
200
|
}, ( localize(
|
|
201
|
-
|
|
201
|
+
4261,
|
|
202
202
|
"Border on the top of modified active tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
203
203
|
)));
|
|
204
204
|
const TAB_INACTIVE_MODIFIED_BORDER = registerColor("tab.inactiveModifiedBorder", {
|
|
@@ -207,7 +207,7 @@ const TAB_INACTIVE_MODIFIED_BORDER = registerColor("tab.inactiveModifiedBorder",
|
|
|
207
207
|
hcDark: Color.white,
|
|
208
208
|
hcLight: contrastBorder
|
|
209
209
|
}, ( localize(
|
|
210
|
-
|
|
210
|
+
4262,
|
|
211
211
|
"Border on the top of modified inactive tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
212
212
|
)));
|
|
213
213
|
const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor("tab.unfocusedActiveModifiedBorder", {
|
|
@@ -216,7 +216,7 @@ const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor("tab.unfocusedActiveM
|
|
|
216
216
|
hcDark: Color.white,
|
|
217
217
|
hcLight: contrastBorder
|
|
218
218
|
}, ( localize(
|
|
219
|
-
|
|
219
|
+
4263,
|
|
220
220
|
"Border on the top of modified active tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
221
221
|
)));
|
|
222
222
|
const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor("tab.unfocusedInactiveModifiedBorder", {
|
|
@@ -225,15 +225,15 @@ const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor("tab.unfocusedInact
|
|
|
225
225
|
hcDark: Color.white,
|
|
226
226
|
hcLight: contrastBorder
|
|
227
227
|
}, ( localize(
|
|
228
|
-
|
|
228
|
+
4264,
|
|
229
229
|
"Border on the top of modified inactive tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
230
230
|
)));
|
|
231
231
|
const EDITOR_PANE_BACKGROUND = registerColor("editorPane.background", editorBackground, ( localize(
|
|
232
|
-
|
|
232
|
+
4265,
|
|
233
233
|
"Background color of the editor pane visible on the left and right side of the centered editor layout."
|
|
234
234
|
)));
|
|
235
235
|
const EDITOR_GROUP_EMPTY_BACKGROUND = registerColor("editorGroup.emptyBackground", null, ( localize(
|
|
236
|
-
|
|
236
|
+
4266,
|
|
237
237
|
"Background color of an empty editor group. Editor groups are the containers of editors."
|
|
238
238
|
)));
|
|
239
239
|
registerColor("editorGroup.focusedEmptyBorder", {
|
|
@@ -242,7 +242,7 @@ registerColor("editorGroup.focusedEmptyBorder", {
|
|
|
242
242
|
hcDark: focusBorder,
|
|
243
243
|
hcLight: focusBorder
|
|
244
244
|
}, ( localize(
|
|
245
|
-
|
|
245
|
+
4267,
|
|
246
246
|
"Border color of an empty editor group that is focused. Editor groups are the containers of editors."
|
|
247
247
|
)));
|
|
248
248
|
const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor("editorGroupHeader.tabsBackground", {
|
|
@@ -251,15 +251,15 @@ const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor("editorGroupHeader.tab
|
|
|
251
251
|
hcDark: null,
|
|
252
252
|
hcLight: null
|
|
253
253
|
}, ( localize(
|
|
254
|
-
|
|
254
|
+
4268,
|
|
255
255
|
"Background color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
|
|
256
256
|
)));
|
|
257
257
|
const EDITOR_GROUP_HEADER_TABS_BORDER = registerColor("editorGroupHeader.tabsBorder", null, ( localize(
|
|
258
|
-
|
|
258
|
+
4269,
|
|
259
259
|
"Border color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
|
|
260
260
|
)));
|
|
261
261
|
const EDITOR_GROUP_HEADER_NO_TABS_BACKGROUND = registerColor("editorGroupHeader.noTabsBackground", editorBackground, ( localize(
|
|
262
|
-
|
|
262
|
+
4270,
|
|
263
263
|
"Background color of the editor group title header when (`\"workbench.editor.showTabs\": \"single\"`). Editor groups are the containers of editors."
|
|
264
264
|
)));
|
|
265
265
|
const EDITOR_GROUP_HEADER_BORDER = registerColor("editorGroupHeader.border", {
|
|
@@ -268,7 +268,7 @@ const EDITOR_GROUP_HEADER_BORDER = registerColor("editorGroupHeader.border", {
|
|
|
268
268
|
hcDark: contrastBorder,
|
|
269
269
|
hcLight: contrastBorder
|
|
270
270
|
}, ( localize(
|
|
271
|
-
|
|
271
|
+
4271,
|
|
272
272
|
"Border color of the editor group title header. Editor groups are the containers of editors."
|
|
273
273
|
)));
|
|
274
274
|
const EDITOR_GROUP_BORDER = registerColor("editorGroup.border", {
|
|
@@ -277,7 +277,7 @@ const EDITOR_GROUP_BORDER = registerColor("editorGroup.border", {
|
|
|
277
277
|
hcDark: contrastBorder,
|
|
278
278
|
hcLight: contrastBorder
|
|
279
279
|
}, ( localize(
|
|
280
|
-
|
|
280
|
+
4272,
|
|
281
281
|
"Color to separate multiple editor groups from each other. Editor groups are the containers of editors."
|
|
282
282
|
)));
|
|
283
283
|
const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor("editorGroup.dropBackground", {
|
|
@@ -286,14 +286,14 @@ const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor("editorGroup.dropBackgroun
|
|
|
286
286
|
hcDark: null,
|
|
287
287
|
hcLight: ( ( Color.fromHex("#0F4A85")).transparent(0.50))
|
|
288
288
|
}, ( localize(
|
|
289
|
-
|
|
289
|
+
4273,
|
|
290
290
|
"Background color when dragging editors around. The color should have transparency so that the editor contents can still shine through."
|
|
291
291
|
)));
|
|
292
292
|
const EDITOR_DROP_INTO_PROMPT_FOREGROUND = registerColor(
|
|
293
293
|
"editorGroup.dropIntoPromptForeground",
|
|
294
294
|
editorWidgetForeground,
|
|
295
295
|
( localize(
|
|
296
|
-
|
|
296
|
+
4274,
|
|
297
297
|
"Foreground color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
298
298
|
))
|
|
299
299
|
);
|
|
@@ -301,7 +301,7 @@ const EDITOR_DROP_INTO_PROMPT_BACKGROUND = registerColor(
|
|
|
301
301
|
"editorGroup.dropIntoPromptBackground",
|
|
302
302
|
editorWidgetBackground,
|
|
303
303
|
( localize(
|
|
304
|
-
|
|
304
|
+
4275,
|
|
305
305
|
"Background color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
306
306
|
))
|
|
307
307
|
);
|
|
@@ -311,22 +311,22 @@ const EDITOR_DROP_INTO_PROMPT_BORDER = registerColor("editorGroup.dropIntoPrompt
|
|
|
311
311
|
hcDark: contrastBorder,
|
|
312
312
|
hcLight: contrastBorder
|
|
313
313
|
}, ( localize(
|
|
314
|
-
|
|
314
|
+
4276,
|
|
315
315
|
"Border color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
316
316
|
)));
|
|
317
317
|
const SIDE_BY_SIDE_EDITOR_HORIZONTAL_BORDER = registerColor("sideBySideEditor.horizontalBorder", EDITOR_GROUP_BORDER, ( localize(
|
|
318
|
-
|
|
318
|
+
4277,
|
|
319
319
|
"Color to separate two editors from each other when shown side by side in an editor group from top to bottom."
|
|
320
320
|
)));
|
|
321
321
|
const SIDE_BY_SIDE_EDITOR_VERTICAL_BORDER = registerColor("sideBySideEditor.verticalBorder", EDITOR_GROUP_BORDER, ( localize(
|
|
322
|
-
|
|
322
|
+
4278,
|
|
323
323
|
"Color to separate two editors from each other when shown side by side in an editor group from left to right."
|
|
324
324
|
)));
|
|
325
|
-
const OUTPUT_VIEW_BACKGROUND = registerColor("outputView.background", null, ( localize(
|
|
325
|
+
const OUTPUT_VIEW_BACKGROUND = registerColor("outputView.background", null, ( localize(4279, "Output view background color.")));
|
|
326
326
|
registerColor(
|
|
327
327
|
"outputViewStickyScroll.background",
|
|
328
328
|
OUTPUT_VIEW_BACKGROUND,
|
|
329
|
-
( localize(
|
|
329
|
+
( localize(4280, "Output view sticky scroll background color."))
|
|
330
330
|
);
|
|
331
331
|
registerColor("banner.background", {
|
|
332
332
|
dark: listActiveSelectionBackground,
|
|
@@ -334,15 +334,15 @@ registerColor("banner.background", {
|
|
|
334
334
|
hcDark: listActiveSelectionBackground,
|
|
335
335
|
hcLight: listActiveSelectionBackground
|
|
336
336
|
}, ( localize(
|
|
337
|
-
|
|
337
|
+
4281,
|
|
338
338
|
"Banner background color. The banner is shown under the title bar of the window."
|
|
339
339
|
)));
|
|
340
340
|
registerColor("banner.foreground", listActiveSelectionForeground, ( localize(
|
|
341
|
-
|
|
341
|
+
4282,
|
|
342
342
|
"Banner foreground color. The banner is shown under the title bar of the window."
|
|
343
343
|
)));
|
|
344
344
|
registerColor("banner.iconForeground", editorInfoForeground, ( localize(
|
|
345
|
-
|
|
345
|
+
4283,
|
|
346
346
|
"Banner icon color. The banner is shown under the title bar of the window."
|
|
347
347
|
)));
|
|
348
348
|
const STATUS_BAR_FOREGROUND = registerColor("statusBar.foreground", {
|
|
@@ -351,11 +351,11 @@ const STATUS_BAR_FOREGROUND = registerColor("statusBar.foreground", {
|
|
|
351
351
|
hcDark: "#FFFFFF",
|
|
352
352
|
hcLight: editorForeground
|
|
353
353
|
}, ( localize(
|
|
354
|
-
|
|
354
|
+
4284,
|
|
355
355
|
"Status bar foreground color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
|
|
356
356
|
)));
|
|
357
357
|
const STATUS_BAR_NO_FOLDER_FOREGROUND = registerColor("statusBar.noFolderForeground", STATUS_BAR_FOREGROUND, ( localize(
|
|
358
|
-
|
|
358
|
+
4285,
|
|
359
359
|
"Status bar foreground color when no folder is opened. The status bar is shown in the bottom of the window."
|
|
360
360
|
)));
|
|
361
361
|
const STATUS_BAR_BACKGROUND = registerColor("statusBar.background", {
|
|
@@ -364,7 +364,7 @@ const STATUS_BAR_BACKGROUND = registerColor("statusBar.background", {
|
|
|
364
364
|
hcDark: null,
|
|
365
365
|
hcLight: null
|
|
366
366
|
}, ( localize(
|
|
367
|
-
|
|
367
|
+
4286,
|
|
368
368
|
"Status bar background color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
|
|
369
369
|
)));
|
|
370
370
|
const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor("statusBar.noFolderBackground", {
|
|
@@ -373,7 +373,7 @@ const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor("statusBar.noFolderBackgro
|
|
|
373
373
|
hcDark: null,
|
|
374
374
|
hcLight: null
|
|
375
375
|
}, ( localize(
|
|
376
|
-
|
|
376
|
+
4287,
|
|
377
377
|
"Status bar background color when no folder is opened. The status bar is shown in the bottom of the window."
|
|
378
378
|
)));
|
|
379
379
|
const STATUS_BAR_BORDER = registerColor("statusBar.border", {
|
|
@@ -382,7 +382,7 @@ const STATUS_BAR_BORDER = registerColor("statusBar.border", {
|
|
|
382
382
|
hcDark: contrastBorder,
|
|
383
383
|
hcLight: contrastBorder
|
|
384
384
|
}, ( localize(
|
|
385
|
-
|
|
385
|
+
4288,
|
|
386
386
|
"Status bar border color separating to the sidebar and editor. The status bar is shown in the bottom of the window."
|
|
387
387
|
)));
|
|
388
388
|
const STATUS_BAR_FOCUS_BORDER = registerColor("statusBar.focusBorder", {
|
|
@@ -391,11 +391,11 @@ const STATUS_BAR_FOCUS_BORDER = registerColor("statusBar.focusBorder", {
|
|
|
391
391
|
hcDark: null,
|
|
392
392
|
hcLight: STATUS_BAR_FOREGROUND
|
|
393
393
|
}, ( localize(
|
|
394
|
-
|
|
394
|
+
4289,
|
|
395
395
|
"Status bar border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
|
|
396
396
|
)));
|
|
397
397
|
const STATUS_BAR_NO_FOLDER_BORDER = registerColor("statusBar.noFolderBorder", STATUS_BAR_BORDER, ( localize(
|
|
398
|
-
|
|
398
|
+
4290,
|
|
399
399
|
"Status bar border color separating to the sidebar and editor when no folder is opened. The status bar is shown in the bottom of the window."
|
|
400
400
|
)));
|
|
401
401
|
registerColor("statusBarItem.activeBackground", {
|
|
@@ -404,7 +404,7 @@ registerColor("statusBarItem.activeBackground", {
|
|
|
404
404
|
hcDark: ( Color.white.transparent(0.18)),
|
|
405
405
|
hcLight: ( Color.black.transparent(0.18))
|
|
406
406
|
}, ( localize(
|
|
407
|
-
|
|
407
|
+
4291,
|
|
408
408
|
"Status bar item background color when clicking. The status bar is shown in the bottom of the window."
|
|
409
409
|
)));
|
|
410
410
|
const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor("statusBarItem.focusBorder", {
|
|
@@ -413,7 +413,7 @@ const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor("statusBarItem.focusBorder",
|
|
|
413
413
|
hcDark: null,
|
|
414
414
|
hcLight: activeContrastBorder
|
|
415
415
|
}, ( localize(
|
|
416
|
-
|
|
416
|
+
4292,
|
|
417
417
|
"Status bar item border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
|
|
418
418
|
)));
|
|
419
419
|
const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor("statusBarItem.hoverBackground", {
|
|
@@ -422,11 +422,11 @@ const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor("statusBarItem.hoverBackg
|
|
|
422
422
|
hcDark: Color.black,
|
|
423
423
|
hcLight: Color.white
|
|
424
424
|
}, ( localize(
|
|
425
|
-
|
|
425
|
+
4293,
|
|
426
426
|
"Status bar item background color when hovering. The status bar is shown in the bottom of the window."
|
|
427
427
|
)));
|
|
428
428
|
const STATUS_BAR_ITEM_HOVER_FOREGROUND = registerColor("statusBarItem.hoverForeground", STATUS_BAR_FOREGROUND, ( localize(
|
|
429
|
-
|
|
429
|
+
4294,
|
|
430
430
|
"Status bar item foreground color when hovering. The status bar is shown in the bottom of the window."
|
|
431
431
|
)));
|
|
432
432
|
const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor("statusBarItem.compactHoverBackground", {
|
|
@@ -435,22 +435,22 @@ const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor("statusBarItem.co
|
|
|
435
435
|
hcDark: Color.black,
|
|
436
436
|
hcLight: Color.white
|
|
437
437
|
}, ( localize(
|
|
438
|
-
|
|
438
|
+
4295,
|
|
439
439
|
"Status bar item background color when hovering an item that contains two hovers. The status bar is shown in the bottom of the window."
|
|
440
440
|
)));
|
|
441
441
|
registerColor("statusBarItem.prominentForeground", STATUS_BAR_FOREGROUND, ( localize(
|
|
442
|
-
|
|
442
|
+
4296,
|
|
443
443
|
"Status bar prominent items foreground color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
444
444
|
)));
|
|
445
445
|
registerColor("statusBarItem.prominentBackground", ( Color.black.transparent(0.5)), ( localize(
|
|
446
|
-
|
|
446
|
+
4297,
|
|
447
447
|
"Status bar prominent items background color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
448
448
|
)));
|
|
449
449
|
registerColor(
|
|
450
450
|
"statusBarItem.prominentHoverForeground",
|
|
451
451
|
STATUS_BAR_ITEM_HOVER_FOREGROUND,
|
|
452
452
|
( localize(
|
|
453
|
-
|
|
453
|
+
4298,
|
|
454
454
|
"Status bar prominent items foreground color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
455
455
|
))
|
|
456
456
|
);
|
|
@@ -458,7 +458,7 @@ registerColor(
|
|
|
458
458
|
"statusBarItem.prominentHoverBackground",
|
|
459
459
|
STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
460
460
|
( localize(
|
|
461
|
-
|
|
461
|
+
4299,
|
|
462
462
|
"Status bar prominent items background color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
463
463
|
))
|
|
464
464
|
);
|
|
@@ -468,18 +468,18 @@ const STATUS_BAR_ERROR_ITEM_BACKGROUND = registerColor("statusBarItem.errorBackg
|
|
|
468
468
|
hcDark: null,
|
|
469
469
|
hcLight: "#B5200D"
|
|
470
470
|
}, ( localize(
|
|
471
|
-
|
|
471
|
+
4300,
|
|
472
472
|
"Status bar error items background color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
473
473
|
)));
|
|
474
474
|
registerColor("statusBarItem.errorForeground", Color.white, ( localize(
|
|
475
|
-
|
|
475
|
+
4301,
|
|
476
476
|
"Status bar error items foreground color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
477
477
|
)));
|
|
478
478
|
registerColor(
|
|
479
479
|
"statusBarItem.errorHoverForeground",
|
|
480
480
|
STATUS_BAR_ITEM_HOVER_FOREGROUND,
|
|
481
481
|
( localize(
|
|
482
|
-
|
|
482
|
+
4302,
|
|
483
483
|
"Status bar error items foreground color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
484
484
|
))
|
|
485
485
|
);
|
|
@@ -487,7 +487,7 @@ registerColor(
|
|
|
487
487
|
"statusBarItem.errorHoverBackground",
|
|
488
488
|
STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
489
489
|
( localize(
|
|
490
|
-
|
|
490
|
+
4303,
|
|
491
491
|
"Status bar error items background color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
492
492
|
))
|
|
493
493
|
);
|
|
@@ -497,18 +497,18 @@ const STATUS_BAR_WARNING_ITEM_BACKGROUND = registerColor("statusBarItem.warningB
|
|
|
497
497
|
hcDark: null,
|
|
498
498
|
hcLight: "#895503"
|
|
499
499
|
}, ( localize(
|
|
500
|
-
|
|
500
|
+
4304,
|
|
501
501
|
"Status bar warning items background color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
502
502
|
)));
|
|
503
503
|
registerColor("statusBarItem.warningForeground", Color.white, ( localize(
|
|
504
|
-
|
|
504
|
+
4305,
|
|
505
505
|
"Status bar warning items foreground color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
506
506
|
)));
|
|
507
507
|
registerColor(
|
|
508
508
|
"statusBarItem.warningHoverForeground",
|
|
509
509
|
STATUS_BAR_ITEM_HOVER_FOREGROUND,
|
|
510
510
|
( localize(
|
|
511
|
-
|
|
511
|
+
4306,
|
|
512
512
|
"Status bar warning items foreground color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
513
513
|
))
|
|
514
514
|
);
|
|
@@ -516,7 +516,7 @@ registerColor(
|
|
|
516
516
|
"statusBarItem.warningHoverBackground",
|
|
517
517
|
STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
518
518
|
( localize(
|
|
519
|
-
|
|
519
|
+
4307,
|
|
520
520
|
"Status bar warning items background color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
521
521
|
))
|
|
522
522
|
);
|
|
@@ -526,7 +526,7 @@ const ACTIVITY_BAR_BACKGROUND = registerColor("activityBar.background", {
|
|
|
526
526
|
hcDark: "#000000",
|
|
527
527
|
hcLight: "#FFFFFF"
|
|
528
528
|
}, ( localize(
|
|
529
|
-
|
|
529
|
+
4308,
|
|
530
530
|
"Activity bar background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
531
531
|
)));
|
|
532
532
|
const ACTIVITY_BAR_FOREGROUND = registerColor("activityBar.foreground", {
|
|
@@ -535,7 +535,7 @@ const ACTIVITY_BAR_FOREGROUND = registerColor("activityBar.foreground", {
|
|
|
535
535
|
hcDark: Color.white,
|
|
536
536
|
hcLight: editorForeground
|
|
537
537
|
}, ( localize(
|
|
538
|
-
|
|
538
|
+
4309,
|
|
539
539
|
"Activity bar item foreground color when it is active. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
540
540
|
)));
|
|
541
541
|
const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor("activityBar.inactiveForeground", {
|
|
@@ -544,7 +544,7 @@ const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor("activityBar.inactiveFore
|
|
|
544
544
|
hcDark: Color.white,
|
|
545
545
|
hcLight: editorForeground
|
|
546
546
|
}, ( localize(
|
|
547
|
-
|
|
547
|
+
4310,
|
|
548
548
|
"Activity bar item foreground color when it is inactive. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
549
549
|
)));
|
|
550
550
|
const ACTIVITY_BAR_BORDER = registerColor("activityBar.border", {
|
|
@@ -553,7 +553,7 @@ const ACTIVITY_BAR_BORDER = registerColor("activityBar.border", {
|
|
|
553
553
|
hcDark: contrastBorder,
|
|
554
554
|
hcLight: contrastBorder
|
|
555
555
|
}, ( localize(
|
|
556
|
-
|
|
556
|
+
4311,
|
|
557
557
|
"Activity bar border color separating to the side bar. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
558
558
|
)));
|
|
559
559
|
const ACTIVITY_BAR_ACTIVE_BORDER = registerColor("activityBar.activeBorder", {
|
|
@@ -562,7 +562,7 @@ const ACTIVITY_BAR_ACTIVE_BORDER = registerColor("activityBar.activeBorder", {
|
|
|
562
562
|
hcDark: contrastBorder,
|
|
563
563
|
hcLight: contrastBorder
|
|
564
564
|
}, ( localize(
|
|
565
|
-
|
|
565
|
+
4312,
|
|
566
566
|
"Activity bar border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
567
567
|
)));
|
|
568
568
|
const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor("activityBar.activeFocusBorder", {
|
|
@@ -571,11 +571,11 @@ const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor("activityBar.activeFocusB
|
|
|
571
571
|
hcDark: null,
|
|
572
572
|
hcLight: "#B5200D"
|
|
573
573
|
}, ( localize(
|
|
574
|
-
|
|
574
|
+
4313,
|
|
575
575
|
"Activity bar focus border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
576
576
|
)));
|
|
577
577
|
const ACTIVITY_BAR_ACTIVE_BACKGROUND = registerColor("activityBar.activeBackground", null, ( localize(
|
|
578
|
-
|
|
578
|
+
4314,
|
|
579
579
|
"Activity bar background color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
580
580
|
)));
|
|
581
581
|
const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor("activityBar.dropBorder", {
|
|
@@ -584,7 +584,7 @@ const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor("activityBar.dropBorder"
|
|
|
584
584
|
hcDark: null,
|
|
585
585
|
hcLight: null
|
|
586
586
|
}, ( localize(
|
|
587
|
-
|
|
587
|
+
4315,
|
|
588
588
|
"Drag and drop feedback color for the activity bar items. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
589
589
|
)));
|
|
590
590
|
const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor("activityBarBadge.background", {
|
|
@@ -593,11 +593,11 @@ const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor("activityBarBadge.background
|
|
|
593
593
|
hcDark: "#000000",
|
|
594
594
|
hcLight: "#0F4A85"
|
|
595
595
|
}, ( localize(
|
|
596
|
-
|
|
596
|
+
4316,
|
|
597
597
|
"Activity notification badge background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
598
598
|
)));
|
|
599
599
|
const ACTIVITY_BAR_BADGE_FOREGROUND = registerColor("activityBarBadge.foreground", Color.white, ( localize(
|
|
600
|
-
|
|
600
|
+
4317,
|
|
601
601
|
"Activity notification badge foreground color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
602
602
|
)));
|
|
603
603
|
const ACTIVITY_BAR_TOP_FOREGROUND = registerColor("activityBarTop.foreground", {
|
|
@@ -606,7 +606,7 @@ const ACTIVITY_BAR_TOP_FOREGROUND = registerColor("activityBarTop.foreground", {
|
|
|
606
606
|
hcDark: Color.white,
|
|
607
607
|
hcLight: editorForeground
|
|
608
608
|
}, ( localize(
|
|
609
|
-
|
|
609
|
+
4318,
|
|
610
610
|
"Active foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
611
611
|
)));
|
|
612
612
|
const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor("activityBarTop.activeBorder", {
|
|
@@ -615,11 +615,11 @@ const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor("activityBarTop.activeBorde
|
|
|
615
615
|
hcDark: contrastBorder,
|
|
616
616
|
hcLight: "#B5200D"
|
|
617
617
|
}, ( localize(
|
|
618
|
-
|
|
618
|
+
4319,
|
|
619
619
|
"Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
620
620
|
)));
|
|
621
621
|
registerColor("activityBarTop.activeBackground", null, ( localize(
|
|
622
|
-
|
|
622
|
+
4320,
|
|
623
623
|
"Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
624
624
|
)));
|
|
625
625
|
const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor("activityBarTop.inactiveForeground", {
|
|
@@ -628,16 +628,16 @@ const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor("activityBarTop.inact
|
|
|
628
628
|
hcDark: Color.white,
|
|
629
629
|
hcLight: editorForeground
|
|
630
630
|
}, ( localize(
|
|
631
|
-
|
|
631
|
+
4321,
|
|
632
632
|
"Inactive foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
633
633
|
)));
|
|
634
634
|
const ACTIVITY_BAR_TOP_DRAG_AND_DROP_BORDER = registerColor("activityBarTop.dropBorder", ACTIVITY_BAR_TOP_FOREGROUND, ( localize(
|
|
635
|
-
|
|
635
|
+
4322,
|
|
636
636
|
"Drag and drop feedback color for the items in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
637
637
|
)));
|
|
638
|
-
registerColor("activityBarTop.background", null, ( localize(
|
|
638
|
+
registerColor("activityBarTop.background", null, ( localize(4323, "Background color of the activity bar when set to top / bottom.")));
|
|
639
639
|
const PANEL_BACKGROUND = registerColor("panel.background", editorBackground, ( localize(
|
|
640
|
-
|
|
640
|
+
4324,
|
|
641
641
|
"Panel background color. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
642
642
|
)));
|
|
643
643
|
const PANEL_BORDER = registerColor("panel.border", {
|
|
@@ -646,7 +646,7 @@ const PANEL_BORDER = registerColor("panel.border", {
|
|
|
646
646
|
hcDark: contrastBorder,
|
|
647
647
|
hcLight: contrastBorder
|
|
648
648
|
}, ( localize(
|
|
649
|
-
|
|
649
|
+
4325,
|
|
650
650
|
"Panel border color to separate the panel from the editor. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
651
651
|
)));
|
|
652
652
|
const PANEL_TITLE_BORDER = registerColor("panelTitle.border", {
|
|
@@ -655,7 +655,7 @@ const PANEL_TITLE_BORDER = registerColor("panelTitle.border", {
|
|
|
655
655
|
hcDark: PANEL_BORDER,
|
|
656
656
|
hcLight: PANEL_BORDER
|
|
657
657
|
}, ( localize(
|
|
658
|
-
|
|
658
|
+
4326,
|
|
659
659
|
"Panel title border color on the bottom, separating the title from the views. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
660
660
|
)));
|
|
661
661
|
const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor("panelTitle.activeForeground", {
|
|
@@ -664,7 +664,7 @@ const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor("panelTitle.activeForeground
|
|
|
664
664
|
hcDark: Color.white,
|
|
665
665
|
hcLight: editorForeground
|
|
666
666
|
}, ( localize(
|
|
667
|
-
|
|
667
|
+
4327,
|
|
668
668
|
"Title color for the active panel. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
669
669
|
)));
|
|
670
670
|
const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor("panelTitle.inactiveForeground", {
|
|
@@ -673,7 +673,7 @@ const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor("panelTitle.inactiveForegr
|
|
|
673
673
|
hcDark: Color.white,
|
|
674
674
|
hcLight: editorForeground
|
|
675
675
|
}, ( localize(
|
|
676
|
-
|
|
676
|
+
4328,
|
|
677
677
|
"Title color for the inactive panel. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
678
678
|
)));
|
|
679
679
|
const PANEL_ACTIVE_TITLE_BORDER = registerColor("panelTitle.activeBorder", {
|
|
@@ -682,14 +682,14 @@ const PANEL_ACTIVE_TITLE_BORDER = registerColor("panelTitle.activeBorder", {
|
|
|
682
682
|
hcDark: contrastBorder,
|
|
683
683
|
hcLight: "#B5200D"
|
|
684
684
|
}, ( localize(
|
|
685
|
-
|
|
685
|
+
4329,
|
|
686
686
|
"Border color for the active panel title. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
687
687
|
)));
|
|
688
688
|
const PANEL_TITLE_BADGE_BACKGROUND = registerColor(
|
|
689
689
|
"panelTitleBadge.background",
|
|
690
690
|
ACTIVITY_BAR_BADGE_BACKGROUND,
|
|
691
691
|
( localize(
|
|
692
|
-
|
|
692
|
+
4330,
|
|
693
693
|
"Panel title badge background color. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
694
694
|
))
|
|
695
695
|
);
|
|
@@ -697,7 +697,7 @@ const PANEL_TITLE_BADGE_FOREGROUND = registerColor(
|
|
|
697
697
|
"panelTitleBadge.foreground",
|
|
698
698
|
ACTIVITY_BAR_BADGE_FOREGROUND,
|
|
699
699
|
( localize(
|
|
700
|
-
|
|
700
|
+
4331,
|
|
701
701
|
"Panel title badge foreground color. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
702
702
|
))
|
|
703
703
|
);
|
|
@@ -706,16 +706,16 @@ registerColor("panelInput.border", {
|
|
|
706
706
|
light: ( Color.fromHex("#ddd")),
|
|
707
707
|
hcDark: inputBorder,
|
|
708
708
|
hcLight: inputBorder
|
|
709
|
-
}, ( localize(
|
|
709
|
+
}, ( localize(4332, "Input box border for inputs in the panel.")));
|
|
710
710
|
const PANEL_DRAG_AND_DROP_BORDER = registerColor("panel.dropBorder", PANEL_ACTIVE_TITLE_FOREGROUND, ( localize(
|
|
711
|
-
|
|
711
|
+
4333,
|
|
712
712
|
"Drag and drop feedback color for the panel titles. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
713
713
|
)));
|
|
714
714
|
const PANEL_SECTION_DRAG_AND_DROP_BACKGROUND = registerColor(
|
|
715
715
|
"panelSection.dropBackground",
|
|
716
716
|
EDITOR_DRAG_AND_DROP_BACKGROUND,
|
|
717
717
|
( localize(
|
|
718
|
-
|
|
718
|
+
4334,
|
|
719
719
|
"Drag and drop feedback color for the panel sections. The color should have transparency so that the panel sections can still shine through. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
720
720
|
))
|
|
721
721
|
);
|
|
@@ -725,32 +725,32 @@ const PANEL_SECTION_HEADER_BACKGROUND = registerColor("panelSectionHeader.backgr
|
|
|
725
725
|
hcDark: null,
|
|
726
726
|
hcLight: null
|
|
727
727
|
}, ( localize(
|
|
728
|
-
|
|
728
|
+
4335,
|
|
729
729
|
"Panel section header background color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
730
730
|
)));
|
|
731
731
|
const PANEL_SECTION_HEADER_FOREGROUND = registerColor("panelSectionHeader.foreground", null, ( localize(
|
|
732
|
-
|
|
732
|
+
4336,
|
|
733
733
|
"Panel section header foreground color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
734
734
|
)));
|
|
735
735
|
const PANEL_SECTION_HEADER_BORDER = registerColor("panelSectionHeader.border", contrastBorder, ( localize(
|
|
736
|
-
|
|
736
|
+
4337,
|
|
737
737
|
"Panel section header border color used when multiple views are stacked vertically in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
738
738
|
)));
|
|
739
739
|
const PANEL_SECTION_BORDER = registerColor("panelSection.border", PANEL_BORDER, ( localize(
|
|
740
|
-
|
|
740
|
+
4338,
|
|
741
741
|
"Panel section border color used when multiple views are stacked horizontally in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
742
742
|
)));
|
|
743
|
-
const PANEL_STICKY_SCROLL_BACKGROUND = registerColor("panelStickyScroll.background", PANEL_BACKGROUND, ( localize(
|
|
744
|
-
const PANEL_STICKY_SCROLL_BORDER = registerColor("panelStickyScroll.border", null, ( localize(
|
|
745
|
-
const PANEL_STICKY_SCROLL_SHADOW = registerColor("panelStickyScroll.shadow", scrollbarShadow, ( localize(
|
|
746
|
-
registerColor("browser.border", TAB_BORDER, ( localize(
|
|
743
|
+
const PANEL_STICKY_SCROLL_BACKGROUND = registerColor("panelStickyScroll.background", PANEL_BACKGROUND, ( localize(4339, "Background color of sticky scroll in the panel.")));
|
|
744
|
+
const PANEL_STICKY_SCROLL_BORDER = registerColor("panelStickyScroll.border", null, ( localize(4340, "Border color of sticky scroll in the panel.")));
|
|
745
|
+
const PANEL_STICKY_SCROLL_SHADOW = registerColor("panelStickyScroll.shadow", scrollbarShadow, ( localize(4341, "Shadow color of sticky scroll in the panel.")));
|
|
746
|
+
registerColor("browser.border", TAB_BORDER, ( localize(4342, "Border color for integrated browser pages.")));
|
|
747
747
|
registerColor("profileBadge.background", {
|
|
748
748
|
dark: "#4D4D4D",
|
|
749
749
|
light: "#C4C4C4",
|
|
750
750
|
hcDark: Color.white,
|
|
751
751
|
hcLight: Color.black
|
|
752
752
|
}, ( localize(
|
|
753
|
-
|
|
753
|
+
4343,
|
|
754
754
|
"Profile badge background color. The profile badge shows on top of the settings gear icon in the activity bar."
|
|
755
755
|
)));
|
|
756
756
|
registerColor("profileBadge.foreground", {
|
|
@@ -759,24 +759,24 @@ registerColor("profileBadge.foreground", {
|
|
|
759
759
|
hcDark: Color.black,
|
|
760
760
|
hcLight: Color.white
|
|
761
761
|
}, ( localize(
|
|
762
|
-
|
|
762
|
+
4344,
|
|
763
763
|
"Profile badge foreground color. The profile badge shows on top of the settings gear icon in the activity bar."
|
|
764
764
|
)));
|
|
765
765
|
const STATUS_BAR_REMOTE_ITEM_BACKGROUND = registerColor(
|
|
766
766
|
"statusBarItem.remoteBackground",
|
|
767
767
|
ACTIVITY_BAR_BADGE_BACKGROUND,
|
|
768
|
-
( localize(
|
|
768
|
+
( localize(4345, "Background color for the remote indicator on the status bar."))
|
|
769
769
|
);
|
|
770
770
|
const STATUS_BAR_REMOTE_ITEM_FOREGROUND = registerColor(
|
|
771
771
|
"statusBarItem.remoteForeground",
|
|
772
772
|
ACTIVITY_BAR_BADGE_FOREGROUND,
|
|
773
|
-
( localize(
|
|
773
|
+
( localize(4346, "Foreground color for the remote indicator on the status bar."))
|
|
774
774
|
);
|
|
775
775
|
registerColor(
|
|
776
776
|
"statusBarItem.remoteHoverForeground",
|
|
777
777
|
STATUS_BAR_ITEM_HOVER_FOREGROUND,
|
|
778
778
|
( localize(
|
|
779
|
-
|
|
779
|
+
4347,
|
|
780
780
|
"Foreground color for the remote indicator on the status bar when hovering."
|
|
781
781
|
))
|
|
782
782
|
);
|
|
@@ -786,20 +786,20 @@ registerColor("statusBarItem.remoteHoverBackground", {
|
|
|
786
786
|
hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
787
787
|
hcLight: null
|
|
788
788
|
}, ( localize(
|
|
789
|
-
|
|
789
|
+
4348,
|
|
790
790
|
"Background color for the remote indicator on the status bar when hovering."
|
|
791
791
|
)));
|
|
792
|
-
registerColor("statusBarItem.offlineBackground", "#6c1717", ( localize(
|
|
792
|
+
registerColor("statusBarItem.offlineBackground", "#6c1717", ( localize(4349, "Status bar item background color when the workbench is offline.")));
|
|
793
793
|
registerColor(
|
|
794
794
|
"statusBarItem.offlineForeground",
|
|
795
795
|
STATUS_BAR_REMOTE_ITEM_FOREGROUND,
|
|
796
|
-
( localize(
|
|
796
|
+
( localize(4350, "Status bar item foreground color when the workbench is offline."))
|
|
797
797
|
);
|
|
798
798
|
registerColor(
|
|
799
799
|
"statusBarItem.offlineHoverForeground",
|
|
800
800
|
STATUS_BAR_ITEM_HOVER_FOREGROUND,
|
|
801
801
|
( localize(
|
|
802
|
-
|
|
802
|
+
4351,
|
|
803
803
|
"Status bar item foreground hover color when the workbench is offline."
|
|
804
804
|
))
|
|
805
805
|
);
|
|
@@ -809,18 +809,18 @@ registerColor("statusBarItem.offlineHoverBackground", {
|
|
|
809
809
|
hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
810
810
|
hcLight: null
|
|
811
811
|
}, ( localize(
|
|
812
|
-
|
|
812
|
+
4352,
|
|
813
813
|
"Status bar item background hover color when the workbench is offline."
|
|
814
814
|
)));
|
|
815
815
|
const EXTENSION_BADGE_BACKGROUND = registerColor(
|
|
816
816
|
"extensionBadge.remoteBackground",
|
|
817
817
|
ACTIVITY_BAR_BADGE_BACKGROUND,
|
|
818
|
-
( localize(
|
|
818
|
+
( localize(4353, "Background color for the remote badge in the extensions view."))
|
|
819
819
|
);
|
|
820
820
|
const EXTENSION_BADGE_FOREGROUND = registerColor(
|
|
821
821
|
"extensionBadge.remoteForeground",
|
|
822
822
|
ACTIVITY_BAR_BADGE_FOREGROUND,
|
|
823
|
-
( localize(
|
|
823
|
+
( localize(4354, "Foreground color for the remote badge in the extensions view."))
|
|
824
824
|
);
|
|
825
825
|
const SIDE_BAR_BACKGROUND = registerColor("sideBar.background", {
|
|
826
826
|
dark: "#252526",
|
|
@@ -828,11 +828,11 @@ const SIDE_BAR_BACKGROUND = registerColor("sideBar.background", {
|
|
|
828
828
|
hcDark: "#000000",
|
|
829
829
|
hcLight: "#FFFFFF"
|
|
830
830
|
}, ( localize(
|
|
831
|
-
|
|
831
|
+
4355,
|
|
832
832
|
"Side bar background color. The side bar is the container for views like explorer and search."
|
|
833
833
|
)));
|
|
834
834
|
const SIDE_BAR_FOREGROUND = registerColor("sideBar.foreground", null, ( localize(
|
|
835
|
-
|
|
835
|
+
4356,
|
|
836
836
|
"Side bar foreground color. The side bar is the container for views like explorer and search."
|
|
837
837
|
)));
|
|
838
838
|
const SIDE_BAR_BORDER = registerColor("sideBar.border", {
|
|
@@ -841,15 +841,15 @@ const SIDE_BAR_BORDER = registerColor("sideBar.border", {
|
|
|
841
841
|
hcDark: contrastBorder,
|
|
842
842
|
hcLight: contrastBorder
|
|
843
843
|
}, ( localize(
|
|
844
|
-
|
|
844
|
+
4357,
|
|
845
845
|
"Side bar border color on the side separating to the editor. The side bar is the container for views like explorer and search."
|
|
846
846
|
)));
|
|
847
847
|
registerColor("sideBarTitle.background", SIDE_BAR_BACKGROUND, ( localize(
|
|
848
|
-
|
|
848
|
+
4358,
|
|
849
849
|
"Side bar title background color. The side bar is the container for views like explorer and search."
|
|
850
850
|
)));
|
|
851
851
|
const SIDE_BAR_TITLE_FOREGROUND = registerColor("sideBarTitle.foreground", SIDE_BAR_FOREGROUND, ( localize(
|
|
852
|
-
|
|
852
|
+
4359,
|
|
853
853
|
"Side bar title foreground color. The side bar is the container for views like explorer and search."
|
|
854
854
|
)));
|
|
855
855
|
const SIDE_BAR_TITLE_BORDER = registerColor("sideBarTitle.border", {
|
|
@@ -858,11 +858,11 @@ const SIDE_BAR_TITLE_BORDER = registerColor("sideBarTitle.border", {
|
|
|
858
858
|
hcDark: SIDE_BAR_BORDER,
|
|
859
859
|
hcLight: SIDE_BAR_BORDER
|
|
860
860
|
}, ( localize(
|
|
861
|
-
|
|
861
|
+
4360,
|
|
862
862
|
"Side bar title border color on the bottom, separating the title from the views. The side bar is the container for views like explorer and search."
|
|
863
863
|
)));
|
|
864
864
|
const SIDE_BAR_DRAG_AND_DROP_BACKGROUND = registerColor("sideBar.dropBackground", EDITOR_DRAG_AND_DROP_BACKGROUND, ( localize(
|
|
865
|
-
|
|
865
|
+
4361,
|
|
866
866
|
"Drag and drop feedback color for the side bar sections. The color should have transparency so that the side bar sections can still shine through. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
867
867
|
)));
|
|
868
868
|
const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor("sideBarSectionHeader.background", {
|
|
@@ -871,82 +871,82 @@ const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor("sideBarSectionHeader.b
|
|
|
871
871
|
hcDark: null,
|
|
872
872
|
hcLight: null
|
|
873
873
|
}, ( localize(
|
|
874
|
-
|
|
874
|
+
4362,
|
|
875
875
|
"Side bar section header background color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
876
876
|
)));
|
|
877
877
|
const SIDE_BAR_SECTION_HEADER_FOREGROUND = registerColor("sideBarSectionHeader.foreground", SIDE_BAR_FOREGROUND, ( localize(
|
|
878
|
-
|
|
878
|
+
4363,
|
|
879
879
|
"Side bar section header foreground color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
880
880
|
)));
|
|
881
881
|
const SIDE_BAR_SECTION_HEADER_BORDER = registerColor("sideBarSectionHeader.border", contrastBorder, ( localize(
|
|
882
|
-
|
|
882
|
+
4364,
|
|
883
883
|
"Side bar section header border color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
884
884
|
)));
|
|
885
885
|
registerColor(
|
|
886
886
|
"sideBarActivityBarTop.border",
|
|
887
887
|
SIDE_BAR_SECTION_HEADER_BORDER,
|
|
888
888
|
( localize(
|
|
889
|
-
|
|
889
|
+
4365,
|
|
890
890
|
"Border color between the activity bar at the top/bottom and the views."
|
|
891
891
|
))
|
|
892
892
|
);
|
|
893
|
-
const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor("sideBarStickyScroll.background", SIDE_BAR_BACKGROUND, ( localize(
|
|
894
|
-
const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor("sideBarStickyScroll.border", null, ( localize(
|
|
895
|
-
const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor("sideBarStickyScroll.shadow", scrollbarShadow, ( localize(
|
|
893
|
+
const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor("sideBarStickyScroll.background", SIDE_BAR_BACKGROUND, ( localize(4366, "Background color of sticky scroll in the side bar.")));
|
|
894
|
+
const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor("sideBarStickyScroll.border", null, ( localize(4367, "Border color of sticky scroll in the side bar.")));
|
|
895
|
+
const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor("sideBarStickyScroll.shadow", scrollbarShadow, ( localize(4368, "Shadow color of sticky scroll in the side bar.")));
|
|
896
896
|
const TITLE_BAR_ACTIVE_FOREGROUND = registerColor("titleBar.activeForeground", {
|
|
897
897
|
dark: "#CCCCCC",
|
|
898
898
|
light: "#333333",
|
|
899
899
|
hcDark: "#FFFFFF",
|
|
900
900
|
hcLight: "#292929"
|
|
901
|
-
}, ( localize(
|
|
901
|
+
}, ( localize(4369, "Title bar foreground when the window is active.")));
|
|
902
902
|
const TITLE_BAR_INACTIVE_FOREGROUND = registerColor("titleBar.inactiveForeground", {
|
|
903
903
|
dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
|
|
904
904
|
light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
|
|
905
905
|
hcDark: null,
|
|
906
906
|
hcLight: "#292929"
|
|
907
|
-
}, ( localize(
|
|
907
|
+
}, ( localize(4370, "Title bar foreground when the window is inactive.")));
|
|
908
908
|
const TITLE_BAR_ACTIVE_BACKGROUND = registerColor("titleBar.activeBackground", {
|
|
909
909
|
dark: "#3C3C3C",
|
|
910
910
|
light: "#DDDDDD",
|
|
911
911
|
hcDark: "#000000",
|
|
912
912
|
hcLight: "#FFFFFF"
|
|
913
|
-
}, ( localize(
|
|
913
|
+
}, ( localize(4371, "Title bar background when the window is active.")));
|
|
914
914
|
const TITLE_BAR_INACTIVE_BACKGROUND = registerColor("titleBar.inactiveBackground", {
|
|
915
915
|
dark: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
|
|
916
916
|
light: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
|
|
917
917
|
hcDark: null,
|
|
918
918
|
hcLight: null
|
|
919
|
-
}, ( localize(
|
|
919
|
+
}, ( localize(4372, "Title bar background when the window is inactive.")));
|
|
920
920
|
const TITLE_BAR_BORDER = registerColor("titleBar.border", {
|
|
921
921
|
dark: null,
|
|
922
922
|
light: null,
|
|
923
923
|
hcDark: contrastBorder,
|
|
924
924
|
hcLight: contrastBorder
|
|
925
|
-
}, ( localize(
|
|
926
|
-
const MENUBAR_SELECTION_FOREGROUND = registerColor("menubar.selectionForeground", TITLE_BAR_ACTIVE_FOREGROUND, ( localize(
|
|
925
|
+
}, ( localize(4373, "Title bar border color.")));
|
|
926
|
+
const MENUBAR_SELECTION_FOREGROUND = registerColor("menubar.selectionForeground", TITLE_BAR_ACTIVE_FOREGROUND, ( localize(4374, "Foreground color of the selected menu item in the menubar.")));
|
|
927
927
|
const MENUBAR_SELECTION_BACKGROUND = registerColor("menubar.selectionBackground", {
|
|
928
928
|
dark: toolbarHoverBackground,
|
|
929
929
|
light: toolbarHoverBackground,
|
|
930
930
|
hcDark: null,
|
|
931
931
|
hcLight: null
|
|
932
|
-
}, ( localize(
|
|
932
|
+
}, ( localize(4375, "Background color of the selected menu item in the menubar.")));
|
|
933
933
|
registerColor("menubar.selectionBorder", {
|
|
934
934
|
dark: null,
|
|
935
935
|
light: null,
|
|
936
936
|
hcDark: activeContrastBorder,
|
|
937
937
|
hcLight: activeContrastBorder
|
|
938
|
-
}, ( localize(
|
|
939
|
-
registerColor("commandCenter.foreground", TITLE_BAR_ACTIVE_FOREGROUND, ( localize(
|
|
938
|
+
}, ( localize(4376, "Border color of the selected menu item in the menubar.")));
|
|
939
|
+
registerColor("commandCenter.foreground", TITLE_BAR_ACTIVE_FOREGROUND, ( localize(4377, "Foreground color of the command center")), false);
|
|
940
940
|
registerColor(
|
|
941
941
|
"commandCenter.activeForeground",
|
|
942
942
|
MENUBAR_SELECTION_FOREGROUND,
|
|
943
|
-
( localize(
|
|
943
|
+
( localize(4378, "Active foreground color of the command center")),
|
|
944
944
|
false
|
|
945
945
|
);
|
|
946
946
|
registerColor(
|
|
947
947
|
"commandCenter.inactiveForeground",
|
|
948
948
|
TITLE_BAR_INACTIVE_FOREGROUND,
|
|
949
|
-
( localize(
|
|
949
|
+
( localize(4379, "Foreground color of the command center when the window is inactive")),
|
|
950
950
|
false
|
|
951
951
|
);
|
|
952
952
|
const COMMAND_CENTER_BACKGROUND = registerColor("commandCenter.background", {
|
|
@@ -954,33 +954,33 @@ const COMMAND_CENTER_BACKGROUND = registerColor("commandCenter.background", {
|
|
|
954
954
|
hcDark: null,
|
|
955
955
|
light: ( Color.black.transparent(0.05)),
|
|
956
956
|
hcLight: null
|
|
957
|
-
}, ( localize(
|
|
957
|
+
}, ( localize(4380, "Background color of the command center")), false);
|
|
958
958
|
registerColor("commandCenter.activeBackground", {
|
|
959
959
|
dark: ( Color.white.transparent(0.08)),
|
|
960
960
|
hcDark: MENUBAR_SELECTION_BACKGROUND,
|
|
961
961
|
light: ( Color.black.transparent(0.08)),
|
|
962
962
|
hcLight: MENUBAR_SELECTION_BACKGROUND
|
|
963
|
-
}, ( localize(
|
|
963
|
+
}, ( localize(4381, "Active background color of the command center")), false);
|
|
964
964
|
registerColor("commandCenter.border", {
|
|
965
965
|
dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)),
|
|
966
966
|
hcDark: contrastBorder,
|
|
967
967
|
light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)),
|
|
968
968
|
hcLight: contrastBorder
|
|
969
|
-
}, ( localize(
|
|
969
|
+
}, ( localize(4382, "Border color of the command center")), false);
|
|
970
970
|
registerColor("commandCenter.activeBorder", {
|
|
971
971
|
dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)),
|
|
972
972
|
hcDark: TITLE_BAR_ACTIVE_FOREGROUND,
|
|
973
973
|
light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)),
|
|
974
974
|
hcLight: TITLE_BAR_ACTIVE_FOREGROUND
|
|
975
|
-
}, ( localize(
|
|
976
|
-
registerColor("commandCenter.inactiveBorder", ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(
|
|
975
|
+
}, ( localize(4383, "Active border color of the command center")), false);
|
|
976
|
+
registerColor("commandCenter.inactiveBorder", ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(4384, "Border color of the command center when the window is inactive")), false);
|
|
977
977
|
const NOTIFICATIONS_CENTER_BORDER = registerColor("notificationCenter.border", {
|
|
978
978
|
dark: widgetBorder,
|
|
979
979
|
light: widgetBorder,
|
|
980
980
|
hcDark: contrastBorder,
|
|
981
981
|
hcLight: contrastBorder
|
|
982
982
|
}, ( localize(
|
|
983
|
-
|
|
983
|
+
4385,
|
|
984
984
|
"Notifications center border color. Notifications slide in from the bottom right of the window."
|
|
985
985
|
)));
|
|
986
986
|
const NOTIFICATIONS_TOAST_BORDER = registerColor("notificationToast.border", {
|
|
@@ -989,23 +989,23 @@ const NOTIFICATIONS_TOAST_BORDER = registerColor("notificationToast.border", {
|
|
|
989
989
|
hcDark: contrastBorder,
|
|
990
990
|
hcLight: contrastBorder
|
|
991
991
|
}, ( localize(
|
|
992
|
-
|
|
992
|
+
4386,
|
|
993
993
|
"Notification toast border color. Notifications slide in from the bottom right of the window."
|
|
994
994
|
)));
|
|
995
995
|
registerColor("notifications.foreground", editorWidgetForeground, ( localize(
|
|
996
|
-
|
|
996
|
+
4387,
|
|
997
997
|
"Notifications foreground color. Notifications slide in from the bottom right of the window."
|
|
998
998
|
)));
|
|
999
999
|
const NOTIFICATIONS_BACKGROUND = registerColor("notifications.background", editorWidgetBackground, ( localize(
|
|
1000
|
-
|
|
1000
|
+
4388,
|
|
1001
1001
|
"Notifications background color. Notifications slide in from the bottom right of the window."
|
|
1002
1002
|
)));
|
|
1003
1003
|
registerColor("notificationLink.foreground", textLinkForeground, ( localize(
|
|
1004
|
-
|
|
1004
|
+
4389,
|
|
1005
1005
|
"Notification links foreground color. Notifications slide in from the bottom right of the window."
|
|
1006
1006
|
)));
|
|
1007
1007
|
const NOTIFICATIONS_CENTER_HEADER_FOREGROUND = registerColor("notificationCenterHeader.foreground", null, ( localize(
|
|
1008
|
-
|
|
1008
|
+
4390,
|
|
1009
1009
|
"Notifications center header foreground color. Notifications slide in from the bottom right of the window."
|
|
1010
1010
|
)));
|
|
1011
1011
|
const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor("notificationCenterHeader.background", {
|
|
@@ -1014,31 +1014,31 @@ const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor("notificationCenter
|
|
|
1014
1014
|
hcDark: NOTIFICATIONS_BACKGROUND,
|
|
1015
1015
|
hcLight: NOTIFICATIONS_BACKGROUND
|
|
1016
1016
|
}, ( localize(
|
|
1017
|
-
|
|
1017
|
+
4391,
|
|
1018
1018
|
"Notifications center header background color. Notifications slide in from the bottom right of the window."
|
|
1019
1019
|
)));
|
|
1020
1020
|
registerColor(
|
|
1021
1021
|
"notifications.border",
|
|
1022
1022
|
NOTIFICATIONS_CENTER_HEADER_BACKGROUND,
|
|
1023
1023
|
( localize(
|
|
1024
|
-
|
|
1024
|
+
4392,
|
|
1025
1025
|
"Notifications border color separating from other notifications in the notifications center. Notifications slide in from the bottom right of the window."
|
|
1026
1026
|
))
|
|
1027
1027
|
);
|
|
1028
1028
|
registerColor("notificationsErrorIcon.foreground", editorErrorForeground, ( localize(
|
|
1029
|
-
|
|
1029
|
+
4393,
|
|
1030
1030
|
"The color used for the icon of error notifications. Notifications slide in from the bottom right of the window."
|
|
1031
1031
|
)));
|
|
1032
1032
|
registerColor(
|
|
1033
1033
|
"notificationsWarningIcon.foreground",
|
|
1034
1034
|
editorWarningForeground,
|
|
1035
1035
|
( localize(
|
|
1036
|
-
|
|
1036
|
+
4394,
|
|
1037
1037
|
"The color used for the icon of warning notifications. Notifications slide in from the bottom right of the window."
|
|
1038
1038
|
))
|
|
1039
1039
|
);
|
|
1040
1040
|
registerColor("notificationsInfoIcon.foreground", editorInfoForeground, ( localize(
|
|
1041
|
-
|
|
1041
|
+
4395,
|
|
1042
1042
|
"The color used for the icon of info notifications. Notifications slide in from the bottom right of the window."
|
|
1043
1043
|
)));
|
|
1044
1044
|
const WINDOW_ACTIVE_BORDER = registerColor("window.activeBorder", {
|
|
@@ -1047,7 +1047,7 @@ const WINDOW_ACTIVE_BORDER = registerColor("window.activeBorder", {
|
|
|
1047
1047
|
hcDark: contrastBorder,
|
|
1048
1048
|
hcLight: contrastBorder
|
|
1049
1049
|
}, ( localize(
|
|
1050
|
-
|
|
1050
|
+
4396,
|
|
1051
1051
|
"The color used for the border of the window when it is active on macOS or Linux. Requires custom title bar style and custom or hidden window controls on Linux."
|
|
1052
1052
|
)));
|
|
1053
1053
|
const WINDOW_INACTIVE_BORDER = registerColor("window.inactiveBorder", {
|
|
@@ -1056,7 +1056,7 @@ const WINDOW_INACTIVE_BORDER = registerColor("window.inactiveBorder", {
|
|
|
1056
1056
|
hcDark: contrastBorder,
|
|
1057
1057
|
hcLight: contrastBorder
|
|
1058
1058
|
}, ( localize(
|
|
1059
|
-
|
|
1059
|
+
4397,
|
|
1060
1060
|
"The color used for the border of the window when it is inactive on macOS or Linux. Requires custom title bar style and custom or hidden window controls on Linux."
|
|
1061
1061
|
)));
|
|
1062
1062
|
|