@codingame/monaco-vscode-api 15.0.0 → 15.0.2
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 +53 -4
- package/package.json +8 -8
- package/services.js +5 -5
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +2 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.js +125 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js +2 -3
- package/vscode/src/vs/editor/common/services/languageFeatureDebounce.js +2 -3
- package/vscode/src/vs/editor/common/services/languageFeaturesService.js +2 -3
- package/vscode/src/vs/editor/common/services/semanticTokensStylingService.js +2 -3
- package/vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.d.ts +15 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.js +93 -0
- package/vscode/src/vs/editor/contrib/documentSymbols/browser/outlineModel.js +2 -3
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +4 -4
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.d.ts +45 -0
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.js +215 -0
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.service.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +178 -0
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -2
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/indicatorView.js +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +18 -18
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.d.ts +6 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +21 -22
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/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 +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestMemory.d.ts +67 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestMemory.js +232 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +16 -16
- 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/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +12 -8
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +54 -54
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +255 -13
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +26 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +230 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- 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 +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +2 -2
- 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 +20 -20
- 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/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +94 -94
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +45 -45
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +22 -23
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- 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 +1 -1
- 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 +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/common/configuration.js +10 -10
- package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
- package/vscode/src/vs/workbench/common/editor/editorOptions.d.ts +3 -0
- package/vscode/src/vs/workbench/common/editor/editorOptions.js +52 -0
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +141 -141
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +32 -32
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/browser/codeEditorService.d.ts +13 -0
- package/vscode/src/vs/workbench/services/editor/browser/codeEditorService.js +87 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +83 -83
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
|
@@ -58,7 +58,7 @@ function renderQuickInputDescription(description, container, actionHandler) {
|
|
|
58
58
|
let title = node.title;
|
|
59
59
|
if (!title && node.href.startsWith('command:')) {
|
|
60
60
|
title = ( localize(
|
|
61
|
-
|
|
61
|
+
1912,
|
|
62
62
|
"Click to execute command '{0}'",
|
|
63
63
|
node.href.substring('command:'.length)
|
|
64
64
|
));
|
|
@@ -108,7 +108,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
108
108
|
{
|
|
109
109
|
id: 'http',
|
|
110
110
|
order: 15,
|
|
111
|
-
title: ( localize(
|
|
111
|
+
title: ( localize(1916, "HTTP")),
|
|
112
112
|
type: 'object',
|
|
113
113
|
scope: ConfigurationScope.MACHINE,
|
|
114
114
|
properties: {
|
|
@@ -116,7 +116,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
116
116
|
type: 'boolean',
|
|
117
117
|
default: useHostProxyDefault,
|
|
118
118
|
markdownDescription: ( localize(
|
|
119
|
-
|
|
119
|
+
1917,
|
|
120
120
|
"Controls whether in the remote extension host the local proxy configuration should be used. This setting only applies as a remote setting during [remote development](https://aka.ms/vscode-remote)."
|
|
121
121
|
)),
|
|
122
122
|
restricted: true
|
|
@@ -126,7 +126,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
126
126
|
{
|
|
127
127
|
id: 'http',
|
|
128
128
|
order: 15,
|
|
129
|
-
title: ( localize(
|
|
129
|
+
title: ( localize(1916, "HTTP")),
|
|
130
130
|
type: 'object',
|
|
131
131
|
scope: ConfigurationScope.APPLICATION,
|
|
132
132
|
properties: {
|
|
@@ -134,7 +134,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
134
134
|
type: 'boolean',
|
|
135
135
|
default: false,
|
|
136
136
|
description: ( localize(
|
|
137
|
-
|
|
137
|
+
1918,
|
|
138
138
|
"Controls whether use of Electron's fetch implementation instead of Node.js' should be enabled. All local extensions will get Electron's fetch implementation for the global fetch API."
|
|
139
139
|
)),
|
|
140
140
|
restricted: true
|
|
@@ -144,7 +144,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
144
144
|
{
|
|
145
145
|
id: 'http',
|
|
146
146
|
order: 15,
|
|
147
|
-
title: ( localize(
|
|
147
|
+
title: ( localize(1916, "HTTP")),
|
|
148
148
|
type: 'object',
|
|
149
149
|
scope: useHostProxy ? ConfigurationScope.APPLICATION : ConfigurationScope.MACHINE,
|
|
150
150
|
properties: {
|
|
@@ -152,7 +152,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
152
152
|
type: 'string',
|
|
153
153
|
pattern: '^(https?|socks|socks4a?|socks5h?)://([^:]*(:[^@]*)?@)?([^:]+|\\[[:0-9a-fA-F]+\\])(:\\d+)?/?$|^$',
|
|
154
154
|
markdownDescription: ( localize(
|
|
155
|
-
|
|
155
|
+
1919,
|
|
156
156
|
"The proxy setting to use. If not set, will be inherited from the `http_proxy` and `https_proxy` environment variables. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
157
157
|
'`#http.useLocalProxyConfiguration#`'
|
|
158
158
|
)),
|
|
@@ -162,7 +162,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
162
162
|
type: 'boolean',
|
|
163
163
|
default: true,
|
|
164
164
|
markdownDescription: ( localize(
|
|
165
|
-
|
|
165
|
+
1920,
|
|
166
166
|
"Controls whether the proxy server certificate should be verified against the list of supplied CAs. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
167
167
|
'`#http.useLocalProxyConfiguration#`'
|
|
168
168
|
)),
|
|
@@ -171,7 +171,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
171
171
|
'http.proxyKerberosServicePrincipal': {
|
|
172
172
|
type: 'string',
|
|
173
173
|
markdownDescription: ( localize(
|
|
174
|
-
|
|
174
|
+
1921,
|
|
175
175
|
"Overrides the principal service name for Kerberos authentication with the HTTP proxy. A default based on the proxy hostname is used when this is not set. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
176
176
|
'`#http.useLocalProxyConfiguration#`'
|
|
177
177
|
)),
|
|
@@ -181,7 +181,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
181
181
|
type: 'array',
|
|
182
182
|
items: { type: 'string' },
|
|
183
183
|
markdownDescription: ( localize(
|
|
184
|
-
|
|
184
|
+
1922,
|
|
185
185
|
"Specifies domain names for which proxy settings should be ignored for HTTP/HTTPS requests. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
186
186
|
'`#http.useLocalProxyConfiguration#`'
|
|
187
187
|
)),
|
|
@@ -191,7 +191,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
191
191
|
type: ['null', 'string'],
|
|
192
192
|
default: null,
|
|
193
193
|
markdownDescription: ( localize(
|
|
194
|
-
|
|
194
|
+
1923,
|
|
195
195
|
"The value to send as the `Proxy-Authorization` header for every network request. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
196
196
|
'`#http.useLocalProxyConfiguration#`'
|
|
197
197
|
)),
|
|
@@ -201,17 +201,17 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
201
201
|
type: 'string',
|
|
202
202
|
enum: ['off', 'on', 'fallback', 'override'],
|
|
203
203
|
enumDescriptions: [
|
|
204
|
-
( localize(
|
|
205
|
-
( localize(
|
|
204
|
+
( localize(1924, "Disable proxy support for extensions.")),
|
|
205
|
+
( localize(1925, "Enable proxy support for extensions.")),
|
|
206
206
|
( localize(
|
|
207
|
-
|
|
207
|
+
1926,
|
|
208
208
|
"Enable proxy support for extensions, fall back to request options, when no proxy found."
|
|
209
209
|
)),
|
|
210
|
-
( localize(
|
|
210
|
+
( localize(1927, "Enable proxy support for extensions, override request options.")),
|
|
211
211
|
],
|
|
212
212
|
default: 'override',
|
|
213
213
|
markdownDescription: ( localize(
|
|
214
|
-
|
|
214
|
+
1928,
|
|
215
215
|
"Use the proxy support for extensions. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
216
216
|
'`#http.useLocalProxyConfiguration#`'
|
|
217
217
|
)),
|
|
@@ -221,7 +221,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
221
221
|
type: 'boolean',
|
|
222
222
|
default: true,
|
|
223
223
|
markdownDescription: ( localize(
|
|
224
|
-
|
|
224
|
+
1929,
|
|
225
225
|
"Controls whether CA certificates should be loaded from the OS. On Windows and macOS, a reload of the window is required after turning this off. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
226
226
|
'`#http.useLocalProxyConfiguration#`'
|
|
227
227
|
)),
|
|
@@ -232,7 +232,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
232
232
|
tags: ['experimental'],
|
|
233
233
|
default: false,
|
|
234
234
|
markdownDescription: ( localize(
|
|
235
|
-
|
|
235
|
+
1930,
|
|
236
236
|
"Controls whether experimental loading of CA certificates from the OS should be enabled. This uses a more general approach than the default implementation. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
237
237
|
'`#http.useLocalProxyConfiguration#`'
|
|
238
238
|
)),
|
|
@@ -242,7 +242,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
242
242
|
type: 'boolean',
|
|
243
243
|
default: true,
|
|
244
244
|
markdownDescription: ( localize(
|
|
245
|
-
|
|
245
|
+
1931,
|
|
246
246
|
"Controls whether Node.js' fetch implementation should be extended with additional support. Currently proxy support ({1}) and system certificates ({2}) are added when the corresponding settings are enabled. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
247
247
|
'`#http.useLocalProxyConfiguration#`',
|
|
248
248
|
'`#http.proxySupport#`',
|
|
@@ -36,7 +36,7 @@ class NullEndpointTelemetryService {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
const telemetryLogId = 'telemetry';
|
|
39
|
-
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(
|
|
39
|
+
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(1950, "Telemetry")) };
|
|
40
40
|
function supportsTelemetry(productService, environmentService) {
|
|
41
41
|
if (!environmentService.isBuilt && !environmentService.disableTelemetry) {
|
|
42
42
|
return true;
|
|
@@ -59,13 +59,13 @@ class ColorRegistry {
|
|
|
59
59
|
}
|
|
60
60
|
if (needsTransparency) {
|
|
61
61
|
propertySchema.pattern = '^#(?:(?<rgba>[0-9a-fA-f]{3}[0-9a-eA-E])|(?:[0-9a-fA-F]{6}(?:(?![fF]{2})(?:[0-9a-fA-F]{2}))))?$';
|
|
62
|
-
propertySchema.patternErrorMessage = ( localize(
|
|
62
|
+
propertySchema.patternErrorMessage = ( localize(1983, 'This color must be transparent or it will obscure content'));
|
|
63
63
|
}
|
|
64
64
|
this.colorSchema.properties[id] = {
|
|
65
65
|
description,
|
|
66
66
|
oneOf: [
|
|
67
67
|
propertySchema,
|
|
68
|
-
{ type: 'string', const: DEFAULT_COLOR_CONFIG_VALUE, description: ( localize(
|
|
68
|
+
{ type: 'string', const: DEFAULT_COLOR_CONFIG_VALUE, description: ( localize(1984, 'Use the default color.')) }
|
|
69
69
|
]
|
|
70
70
|
};
|
|
71
71
|
this.colorReferenceSchema.enum.push(id);
|
|
@@ -4,48 +4,48 @@ import { Color } from '../../../../base/common/color.js';
|
|
|
4
4
|
import { registerColor, transparent } from '../colorUtils.js';
|
|
5
5
|
|
|
6
6
|
const foreground = registerColor('foreground', { dark: '#CCCCCC', light: '#616161', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(
|
|
7
|
-
|
|
7
|
+
1985,
|
|
8
8
|
"Overall foreground color. This color is only used if not overridden by a component."
|
|
9
9
|
)));
|
|
10
10
|
const disabledForeground = registerColor('disabledForeground', { dark: '#CCCCCC80', light: '#61616180', hcDark: '#A5A5A5', hcLight: '#7F7F7F' }, ( localize(
|
|
11
|
-
|
|
11
|
+
1986,
|
|
12
12
|
"Overall foreground for disabled elements. This color is only used if not overridden by a component."
|
|
13
13
|
)));
|
|
14
14
|
const errorForeground = registerColor('errorForeground', { dark: '#F48771', light: '#A1260D', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(
|
|
15
|
-
|
|
15
|
+
1987,
|
|
16
16
|
"Overall foreground color for error messages. This color is only used if not overridden by a component."
|
|
17
17
|
)));
|
|
18
18
|
const descriptionForeground = registerColor('descriptionForeground', { light: '#717171', dark: ( transparent(foreground, 0.7)), hcDark: ( transparent(foreground, 0.7)), hcLight: ( transparent(foreground, 0.7)) }, ( localize(
|
|
19
|
-
|
|
19
|
+
1988,
|
|
20
20
|
"Foreground color for description text providing additional information, for example for a label."
|
|
21
21
|
)));
|
|
22
|
-
const iconForeground = registerColor('icon.foreground', { dark: '#C5C5C5', light: '#424242', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(
|
|
22
|
+
const iconForeground = registerColor('icon.foreground', { dark: '#C5C5C5', light: '#424242', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(1989, "The default color for icons in the workbench.")));
|
|
23
23
|
const focusBorder = registerColor('focusBorder', { dark: '#007FD4', light: '#0090F1', hcDark: '#F38518', hcLight: '#006BBD' }, ( localize(
|
|
24
|
-
|
|
24
|
+
1990,
|
|
25
25
|
"Overall border color for focused elements. This color is only used if not overridden by a component."
|
|
26
26
|
)));
|
|
27
27
|
const contrastBorder = registerColor('contrastBorder', { light: null, dark: null, hcDark: '#6FC3DF', hcLight: '#0F4A85' }, ( localize(
|
|
28
|
-
|
|
28
|
+
1991,
|
|
29
29
|
"An extra border around elements to separate them from others for greater contrast."
|
|
30
30
|
)));
|
|
31
31
|
const activeContrastBorder = registerColor('contrastActiveBorder', { light: null, dark: null, hcDark: focusBorder, hcLight: focusBorder }, ( localize(
|
|
32
|
-
|
|
32
|
+
1992,
|
|
33
33
|
"An extra border around active elements to separate them from others for greater contrast."
|
|
34
34
|
)));
|
|
35
35
|
const selectionBackground = registerColor('selection.background', null, ( localize(
|
|
36
|
-
|
|
36
|
+
1993,
|
|
37
37
|
"The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor."
|
|
38
38
|
)));
|
|
39
|
-
const textLinkForeground = registerColor('textLink.foreground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(
|
|
39
|
+
const textLinkForeground = registerColor('textLink.foreground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(1994, "Foreground color for links in text.")));
|
|
40
40
|
const textLinkActiveForeground = registerColor('textLink.activeForeground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(
|
|
41
|
-
|
|
41
|
+
1995,
|
|
42
42
|
"Foreground color for links in text when clicked on and on mouse hover."
|
|
43
43
|
)));
|
|
44
|
-
registerColor('textSeparator.foreground', { light: '#0000002e', dark: '#ffffff2e', hcDark: Color.black, hcLight: '#292929' }, ( localize(
|
|
45
|
-
registerColor('textPreformat.foreground', { light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' }, ( localize(
|
|
46
|
-
registerColor('textPreformat.background', { light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' }, ( localize(
|
|
47
|
-
const textBlockQuoteBackground = registerColor('textBlockQuote.background', { light: '#f2f2f2', dark: '#222222', hcDark: null, hcLight: '#F2F2F2' }, ( localize(
|
|
48
|
-
const textBlockQuoteBorder = registerColor('textBlockQuote.border', { light: '#007acc80', dark: '#007acc80', hcDark: Color.white, hcLight: '#292929' }, ( localize(
|
|
49
|
-
registerColor('textCodeBlock.background', { light: '#dcdcdc66', dark: '#0a0a0a66', hcDark: Color.black, hcLight: '#F2F2F2' }, ( localize(
|
|
44
|
+
registerColor('textSeparator.foreground', { light: '#0000002e', dark: '#ffffff2e', hcDark: Color.black, hcLight: '#292929' }, ( localize(1996, "Color for text separators.")));
|
|
45
|
+
registerColor('textPreformat.foreground', { light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' }, ( localize(1997, "Foreground color for preformatted text segments.")));
|
|
46
|
+
registerColor('textPreformat.background', { light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' }, ( localize(1998, "Background color for preformatted text segments.")));
|
|
47
|
+
const textBlockQuoteBackground = registerColor('textBlockQuote.background', { light: '#f2f2f2', dark: '#222222', hcDark: null, hcLight: '#F2F2F2' }, ( localize(1999, "Background color for block quotes in text.")));
|
|
48
|
+
const textBlockQuoteBorder = registerColor('textBlockQuote.border', { light: '#007acc80', dark: '#007acc80', hcDark: Color.white, hcLight: '#292929' }, ( localize(2000, "Border color for block quotes in text.")));
|
|
49
|
+
registerColor('textCodeBlock.background', { light: '#dcdcdc66', dark: '#0a0a0a66', hcDark: Color.black, hcLight: '#F2F2F2' }, ( localize(2001, "Background color for code blocks in text.")));
|
|
50
50
|
|
|
51
51
|
export { activeContrastBorder, contrastBorder, descriptionForeground, disabledForeground, errorForeground, focusBorder, foreground, iconForeground, selectionBackground, textBlockQuoteBackground, textBlockQuoteBorder, textLinkActiveForeground, textLinkForeground };
|
|
@@ -5,13 +5,13 @@ import { foreground } from './baseColors.js';
|
|
|
5
5
|
import { editorErrorForeground, editorInfoForeground, editorWarningForeground } from './editorColors.js';
|
|
6
6
|
import { minimapFindMatch } from './minimapColors.js';
|
|
7
7
|
|
|
8
|
-
registerColor('charts.foreground', foreground, ( localize(
|
|
9
|
-
registerColor('charts.lines', ( transparent(foreground, .5)), ( localize(
|
|
10
|
-
const chartsRed = registerColor('charts.red', editorErrorForeground, ( localize(
|
|
11
|
-
const chartsBlue = registerColor('charts.blue', editorInfoForeground, ( localize(
|
|
12
|
-
const chartsYellow = registerColor('charts.yellow', editorWarningForeground, ( localize(
|
|
13
|
-
registerColor('charts.orange', minimapFindMatch, ( localize(
|
|
14
|
-
const chartsGreen = registerColor('charts.green', { dark: '#89D185', light: '#388A34', hcDark: '#89D185', hcLight: '#374e06' }, ( localize(
|
|
15
|
-
const chartsPurple = registerColor('charts.purple', { dark: '#B180D7', light: '#652D90', hcDark: '#B180D7', hcLight: '#652D90' }, ( localize(
|
|
8
|
+
registerColor('charts.foreground', foreground, ( localize(2002, "The foreground color used in charts.")));
|
|
9
|
+
registerColor('charts.lines', ( transparent(foreground, .5)), ( localize(2003, "The color used for horizontal lines in charts.")));
|
|
10
|
+
const chartsRed = registerColor('charts.red', editorErrorForeground, ( localize(2004, "The red color used in chart visualizations.")));
|
|
11
|
+
const chartsBlue = registerColor('charts.blue', editorInfoForeground, ( localize(2005, "The blue color used in chart visualizations.")));
|
|
12
|
+
const chartsYellow = registerColor('charts.yellow', editorWarningForeground, ( localize(2006, "The yellow color used in chart visualizations.")));
|
|
13
|
+
registerColor('charts.orange', minimapFindMatch, ( localize(2007, "The orange color used in chart visualizations.")));
|
|
14
|
+
const chartsGreen = registerColor('charts.green', { dark: '#89D185', light: '#388A34', hcDark: '#89D185', hcLight: '#374e06' }, ( localize(2008, "The green color used in chart visualizations.")));
|
|
15
|
+
const chartsPurple = registerColor('charts.purple', { dark: '#B180D7', light: '#652D90', hcDark: '#B180D7', hcLight: '#652D90' }, ( localize(2009, "The purple color used in chart visualizations.")));
|
|
16
16
|
|
|
17
17
|
export { chartsBlue, chartsGreen, chartsPurple, chartsRed, chartsYellow };
|
|
@@ -5,135 +5,135 @@ import { registerColor, transparent, lessProminent, darken, lighten } from '../c
|
|
|
5
5
|
import { foreground, contrastBorder, activeContrastBorder } from './baseColors.js';
|
|
6
6
|
import { scrollbarShadow, badgeBackground } from './miscColors.js';
|
|
7
7
|
|
|
8
|
-
const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, ( localize(
|
|
9
|
-
const editorForeground = registerColor('editor.foreground', { light: '#333333', dark: '#BBBBBB', hcDark: Color.white, hcLight: foreground }, ( localize(
|
|
10
|
-
registerColor('editorStickyScroll.background', editorBackground, ( localize(
|
|
11
|
-
registerColor('editorStickyScrollHover.background', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: null, hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.1)) }, ( localize(
|
|
12
|
-
registerColor('editorStickyScroll.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(
|
|
13
|
-
registerColor('editorStickyScroll.shadow', scrollbarShadow, ( localize(
|
|
14
|
-
const editorWidgetBackground = registerColor('editorWidget.background', { dark: '#252526', light: '#F3F3F3', hcDark: '#0C141F', hcLight: Color.white }, ( localize(
|
|
15
|
-
const editorWidgetForeground = registerColor('editorWidget.foreground', foreground, ( localize(
|
|
8
|
+
const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, ( localize(2010, "Editor background color.")));
|
|
9
|
+
const editorForeground = registerColor('editor.foreground', { light: '#333333', dark: '#BBBBBB', hcDark: Color.white, hcLight: foreground }, ( localize(2011, "Editor default foreground color.")));
|
|
10
|
+
registerColor('editorStickyScroll.background', editorBackground, ( localize(2012, "Background color of sticky scroll in the editor")));
|
|
11
|
+
registerColor('editorStickyScrollHover.background', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: null, hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.1)) }, ( localize(2013, "Background color of sticky scroll on hover in the editor")));
|
|
12
|
+
registerColor('editorStickyScroll.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2014, "Border color of sticky scroll in the editor")));
|
|
13
|
+
registerColor('editorStickyScroll.shadow', scrollbarShadow, ( localize(2015, " Shadow color of sticky scroll in the editor")));
|
|
14
|
+
const editorWidgetBackground = registerColor('editorWidget.background', { dark: '#252526', light: '#F3F3F3', hcDark: '#0C141F', hcLight: Color.white }, ( localize(2016, 'Background color of editor widgets, such as find/replace.')));
|
|
15
|
+
const editorWidgetForeground = registerColor('editorWidget.foreground', foreground, ( localize(2017, 'Foreground color of editor widgets, such as find/replace.')));
|
|
16
16
|
const editorWidgetBorder = registerColor('editorWidget.border', { dark: '#454545', light: '#C8C8C8', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(
|
|
17
|
-
|
|
17
|
+
2018,
|
|
18
18
|
'Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.'
|
|
19
19
|
)));
|
|
20
20
|
registerColor('editorWidget.resizeBorder', null, ( localize(
|
|
21
|
-
|
|
21
|
+
2019,
|
|
22
22
|
"Border color of the resize bar of editor widgets. The color is only used if the widget chooses to have a resize border and if the color is not overridden by a widget."
|
|
23
23
|
)));
|
|
24
24
|
registerColor('editorError.background', null, ( localize(
|
|
25
|
-
|
|
25
|
+
2020,
|
|
26
26
|
'Background color of error text in the editor. The color must not be opaque so as not to hide underlying decorations.'
|
|
27
27
|
)), true);
|
|
28
|
-
const editorErrorForeground = registerColor('editorError.foreground', { dark: '#F14C4C', light: '#E51400', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(
|
|
29
|
-
const editorErrorBorder = registerColor('editorError.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#E47777')).transparent(0.8)), hcLight: '#B5200D' }, ( localize(
|
|
28
|
+
const editorErrorForeground = registerColor('editorError.foreground', { dark: '#F14C4C', light: '#E51400', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(2021, 'Foreground color of error squigglies in the editor.')));
|
|
29
|
+
const editorErrorBorder = registerColor('editorError.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#E47777')).transparent(0.8)), hcLight: '#B5200D' }, ( localize(2022, 'If set, color of double underlines for errors in the editor.')));
|
|
30
30
|
const editorWarningBackground = registerColor('editorWarning.background', null, ( localize(
|
|
31
|
-
|
|
31
|
+
2023,
|
|
32
32
|
'Background color of warning text in the editor. The color must not be opaque so as not to hide underlying decorations.'
|
|
33
33
|
)), true);
|
|
34
|
-
const editorWarningForeground = registerColor('editorWarning.foreground', { dark: '#CCA700', light: '#BF8803', hcDark: '#FFD370', hcLight: '#895503' }, ( localize(
|
|
35
|
-
const editorWarningBorder = registerColor('editorWarning.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#FFCC00')).transparent(0.8)), hcLight: ( ( Color.fromHex('#FFCC00')).transparent(0.8)) }, ( localize(
|
|
34
|
+
const editorWarningForeground = registerColor('editorWarning.foreground', { dark: '#CCA700', light: '#BF8803', hcDark: '#FFD370', hcLight: '#895503' }, ( localize(2024, 'Foreground color of warning squigglies in the editor.')));
|
|
35
|
+
const editorWarningBorder = registerColor('editorWarning.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#FFCC00')).transparent(0.8)), hcLight: ( ( Color.fromHex('#FFCC00')).transparent(0.8)) }, ( localize(2025, 'If set, color of double underlines for warnings in the editor.')));
|
|
36
36
|
registerColor('editorInfo.background', null, ( localize(
|
|
37
|
-
|
|
37
|
+
2026,
|
|
38
38
|
'Background color of info text in the editor. The color must not be opaque so as not to hide underlying decorations.'
|
|
39
39
|
)), true);
|
|
40
|
-
const editorInfoForeground = registerColor('editorInfo.foreground', { dark: '#3794FF', light: '#1a85ff', hcDark: '#3794FF', hcLight: '#1a85ff' }, ( localize(
|
|
41
|
-
const editorInfoBorder = registerColor('editorInfo.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#3794FF')).transparent(0.8)), hcLight: '#292929' }, ( localize(
|
|
42
|
-
const editorHintForeground = registerColor('editorHint.foreground', { dark: ( ( Color.fromHex('#eeeeee')).transparent(0.7)), light: '#6c6c6c', hcDark: null, hcLight: null }, ( localize(
|
|
43
|
-
registerColor('editorHint.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#eeeeee')).transparent(0.8)), hcLight: '#292929' }, ( localize(
|
|
44
|
-
const editorActiveLinkForeground = registerColor('editorLink.activeForeground', { dark: '#4E94CE', light: Color.blue, hcDark: Color.cyan, hcLight: '#292929' }, ( localize(
|
|
45
|
-
const editorSelectionBackground = registerColor('editor.selectionBackground', { light: '#ADD6FF', dark: '#264F78', hcDark: '#f3f518', hcLight: '#0F4A85' }, ( localize(
|
|
46
|
-
const editorSelectionForeground = registerColor('editor.selectionForeground', { light: null, dark: null, hcDark: '#000000', hcLight: Color.white }, ( localize(
|
|
40
|
+
const editorInfoForeground = registerColor('editorInfo.foreground', { dark: '#3794FF', light: '#1a85ff', hcDark: '#3794FF', hcLight: '#1a85ff' }, ( localize(2027, 'Foreground color of info squigglies in the editor.')));
|
|
41
|
+
const editorInfoBorder = registerColor('editorInfo.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#3794FF')).transparent(0.8)), hcLight: '#292929' }, ( localize(2028, 'If set, color of double underlines for infos in the editor.')));
|
|
42
|
+
const editorHintForeground = registerColor('editorHint.foreground', { dark: ( ( Color.fromHex('#eeeeee')).transparent(0.7)), light: '#6c6c6c', hcDark: null, hcLight: null }, ( localize(2029, 'Foreground color of hint squigglies in the editor.')));
|
|
43
|
+
registerColor('editorHint.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#eeeeee')).transparent(0.8)), hcLight: '#292929' }, ( localize(2030, 'If set, color of double underlines for hints in the editor.')));
|
|
44
|
+
const editorActiveLinkForeground = registerColor('editorLink.activeForeground', { dark: '#4E94CE', light: Color.blue, hcDark: Color.cyan, hcLight: '#292929' }, ( localize(2031, 'Color of active links.')));
|
|
45
|
+
const editorSelectionBackground = registerColor('editor.selectionBackground', { light: '#ADD6FF', dark: '#264F78', hcDark: '#f3f518', hcLight: '#0F4A85' }, ( localize(2032, "Color of the editor selection.")));
|
|
46
|
+
const editorSelectionForeground = registerColor('editor.selectionForeground', { light: null, dark: null, hcDark: '#000000', hcLight: Color.white }, ( localize(2033, "Color of the selected text for high contrast.")));
|
|
47
47
|
const editorInactiveSelection = registerColor('editor.inactiveSelectionBackground', { light: ( transparent(editorSelectionBackground, 0.5)), dark: ( transparent(editorSelectionBackground, 0.5)), hcDark: ( transparent(editorSelectionBackground, 0.7)), hcLight: ( transparent(editorSelectionBackground, 0.5)) }, ( localize(
|
|
48
|
-
|
|
48
|
+
2034,
|
|
49
49
|
"Color of the selection in an inactive editor. The color must not be opaque so as not to hide underlying decorations."
|
|
50
50
|
)), true);
|
|
51
51
|
const editorSelectionHighlight = registerColor('editor.selectionHighlightBackground', { light: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), dark: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), hcDark: null, hcLight: null }, ( localize(
|
|
52
|
-
|
|
52
|
+
2035,
|
|
53
53
|
'Color for regions with the same content as the selection. The color must not be opaque so as not to hide underlying decorations.'
|
|
54
54
|
)), true);
|
|
55
|
-
registerColor('editor.selectionHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(
|
|
56
|
-
registerColor('editor.compositionBorder', { light: '#000000', dark: '#ffffff', hcLight: '#000000', hcDark: '#ffffff' }, ( localize(
|
|
57
|
-
const editorFindMatch = registerColor('editor.findMatchBackground', { light: '#A8AC94', dark: '#515C6A', hcDark: null, hcLight: null }, ( localize(
|
|
58
|
-
const editorFindMatchForeground = registerColor('editor.findMatchForeground', null, ( localize(
|
|
55
|
+
registerColor('editor.selectionHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2036, "Border color for regions with the same content as the selection.")));
|
|
56
|
+
registerColor('editor.compositionBorder', { light: '#000000', dark: '#ffffff', hcLight: '#000000', hcDark: '#ffffff' }, ( localize(2037, "The border color for an IME composition.")));
|
|
57
|
+
const editorFindMatch = registerColor('editor.findMatchBackground', { light: '#A8AC94', dark: '#515C6A', hcDark: null, hcLight: null }, ( localize(2038, "Color of the current search match.")));
|
|
58
|
+
const editorFindMatchForeground = registerColor('editor.findMatchForeground', null, ( localize(2039, "Text color of the current search match.")));
|
|
59
59
|
const editorFindMatchHighlight = registerColor('editor.findMatchHighlightBackground', { light: '#EA5C0055', dark: '#EA5C0055', hcDark: null, hcLight: null }, ( localize(
|
|
60
|
-
|
|
60
|
+
2040,
|
|
61
61
|
"Color of the other search matches. The color must not be opaque so as not to hide underlying decorations."
|
|
62
62
|
)), true);
|
|
63
|
-
const editorFindMatchHighlightForeground = registerColor('editor.findMatchHighlightForeground', null, ( localize(
|
|
63
|
+
const editorFindMatchHighlightForeground = registerColor('editor.findMatchHighlightForeground', null, ( localize(2041, "Foreground color of the other search matches.")), true);
|
|
64
64
|
const editorFindRangeHighlight = registerColor('editor.findRangeHighlightBackground', { dark: '#3a3d4166', light: '#b4b4b44d', hcDark: null, hcLight: null }, ( localize(
|
|
65
|
-
|
|
65
|
+
2042,
|
|
66
66
|
"Color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
|
|
67
67
|
)), true);
|
|
68
|
-
registerColor('editor.findMatchBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(
|
|
69
|
-
const editorFindMatchHighlightBorder = registerColor('editor.findMatchHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(
|
|
68
|
+
registerColor('editor.findMatchBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2043, "Border color of the current search match.")));
|
|
69
|
+
const editorFindMatchHighlightBorder = registerColor('editor.findMatchHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2044, "Border color of the other search matches.")));
|
|
70
70
|
const editorFindRangeHighlightBorder = registerColor('editor.findRangeHighlightBorder', { dark: null, light: null, hcDark: ( transparent(activeContrastBorder, 0.4)), hcLight: ( transparent(activeContrastBorder, 0.4)) }, ( localize(
|
|
71
|
-
|
|
71
|
+
2045,
|
|
72
72
|
"Border color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
|
|
73
73
|
)), true);
|
|
74
74
|
const editorHoverHighlight = registerColor('editor.hoverHighlightBackground', { light: '#ADD6FF26', dark: '#264f7840', hcDark: '#ADD6FF26', hcLight: null }, ( localize(
|
|
75
|
-
|
|
75
|
+
2046,
|
|
76
76
|
'Highlight below the word for which a hover is shown. The color must not be opaque so as not to hide underlying decorations.'
|
|
77
77
|
)), true);
|
|
78
|
-
const editorHoverBackground = registerColor('editorHoverWidget.background', editorWidgetBackground, ( localize(
|
|
79
|
-
const editorHoverForeground = registerColor('editorHoverWidget.foreground', editorWidgetForeground, ( localize(
|
|
80
|
-
const editorHoverBorder = registerColor('editorHoverWidget.border', editorWidgetBorder, ( localize(
|
|
81
|
-
const editorHoverStatusBarBackground = registerColor('editorHoverWidget.statusBarBackground', { dark: ( lighten(editorHoverBackground, 0.2)), light: ( darken(editorHoverBackground, 0.05)), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, ( localize(
|
|
82
|
-
const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: '#969696', light: '#969696', hcDark: Color.white, hcLight: Color.black }, ( localize(
|
|
83
|
-
const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: ( transparent(badgeBackground, .10)), light: ( transparent(badgeBackground, .10)), hcDark: ( transparent(Color.white, .10)), hcLight: ( transparent(badgeBackground, .10)) }, ( localize(
|
|
84
|
-
const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', editorInlayHintForeground, ( localize(
|
|
85
|
-
const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', editorInlayHintBackground, ( localize(
|
|
86
|
-
const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', editorInlayHintForeground, ( localize(
|
|
87
|
-
const editorInlayHintParameterBackground = registerColor('editorInlayHint.parameterBackground', editorInlayHintBackground, ( localize(
|
|
88
|
-
const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, ( localize(
|
|
89
|
-
registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, ( localize(
|
|
90
|
-
registerColor('editorLightBulbAi.foreground', editorLightBulbForeground, ( localize(
|
|
91
|
-
registerColor('editor.snippetTabstopHighlightBackground', { dark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), light: ( new Color(( new RGBA(10, 50, 100, 0.2)))), hcDark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), hcLight: ( new Color(( new RGBA(10, 50, 100, 0.2)))) }, ( localize(
|
|
92
|
-
registerColor('editor.snippetTabstopHighlightBorder', null, ( localize(
|
|
93
|
-
registerColor('editor.snippetFinalTabstopHighlightBackground', null, ( localize(
|
|
94
|
-
registerColor('editor.snippetFinalTabstopHighlightBorder', { dark: '#525252', light: ( new Color(( new RGBA(10, 50, 100, 0.5)))), hcDark: '#525252', hcLight: '#292929' }, ( localize(
|
|
78
|
+
const editorHoverBackground = registerColor('editorHoverWidget.background', editorWidgetBackground, ( localize(2047, 'Background color of the editor hover.')));
|
|
79
|
+
const editorHoverForeground = registerColor('editorHoverWidget.foreground', editorWidgetForeground, ( localize(2048, 'Foreground color of the editor hover.')));
|
|
80
|
+
const editorHoverBorder = registerColor('editorHoverWidget.border', editorWidgetBorder, ( localize(2049, 'Border color of the editor hover.')));
|
|
81
|
+
const editorHoverStatusBarBackground = registerColor('editorHoverWidget.statusBarBackground', { dark: ( lighten(editorHoverBackground, 0.2)), light: ( darken(editorHoverBackground, 0.05)), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, ( localize(2050, "Background color of the editor hover status bar.")));
|
|
82
|
+
const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: '#969696', light: '#969696', hcDark: Color.white, hcLight: Color.black }, ( localize(2051, 'Foreground color of inline hints')));
|
|
83
|
+
const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: ( transparent(badgeBackground, .10)), light: ( transparent(badgeBackground, .10)), hcDark: ( transparent(Color.white, .10)), hcLight: ( transparent(badgeBackground, .10)) }, ( localize(2052, 'Background color of inline hints')));
|
|
84
|
+
const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', editorInlayHintForeground, ( localize(2053, 'Foreground color of inline hints for types')));
|
|
85
|
+
const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', editorInlayHintBackground, ( localize(2054, 'Background color of inline hints for types')));
|
|
86
|
+
const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', editorInlayHintForeground, ( localize(2055, 'Foreground color of inline hints for parameters')));
|
|
87
|
+
const editorInlayHintParameterBackground = registerColor('editorInlayHint.parameterBackground', editorInlayHintBackground, ( localize(2056, 'Background color of inline hints for parameters')));
|
|
88
|
+
const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, ( localize(2057, "The color used for the lightbulb actions icon.")));
|
|
89
|
+
registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, ( localize(2058, "The color used for the lightbulb auto fix actions icon.")));
|
|
90
|
+
registerColor('editorLightBulbAi.foreground', editorLightBulbForeground, ( localize(2059, "The color used for the lightbulb AI icon.")));
|
|
91
|
+
registerColor('editor.snippetTabstopHighlightBackground', { dark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), light: ( new Color(( new RGBA(10, 50, 100, 0.2)))), hcDark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), hcLight: ( new Color(( new RGBA(10, 50, 100, 0.2)))) }, ( localize(2060, "Highlight background color of a snippet tabstop.")));
|
|
92
|
+
registerColor('editor.snippetTabstopHighlightBorder', null, ( localize(2061, "Highlight border color of a snippet tabstop.")));
|
|
93
|
+
registerColor('editor.snippetFinalTabstopHighlightBackground', null, ( localize(2062, "Highlight background color of the final tabstop of a snippet.")));
|
|
94
|
+
registerColor('editor.snippetFinalTabstopHighlightBorder', { dark: '#525252', light: ( new Color(( new RGBA(10, 50, 100, 0.5)))), hcDark: '#525252', hcLight: '#292929' }, ( localize(2063, "Highlight border color of the final tabstop of a snippet.")));
|
|
95
95
|
const defaultInsertColor = ( new Color(( new RGBA(155, 185, 85, .2))));
|
|
96
96
|
const defaultRemoveColor = ( new Color(( new RGBA(255, 0, 0, .2))));
|
|
97
97
|
const diffInserted = registerColor('diffEditor.insertedTextBackground', { dark: '#9ccc2c33', light: '#9ccc2c40', hcDark: null, hcLight: null }, ( localize(
|
|
98
|
-
|
|
98
|
+
2064,
|
|
99
99
|
'Background color for text that got inserted. The color must not be opaque so as not to hide underlying decorations.'
|
|
100
100
|
)), true);
|
|
101
101
|
const diffRemoved = registerColor('diffEditor.removedTextBackground', { dark: '#ff000033', light: '#ff000033', hcDark: null, hcLight: null }, ( localize(
|
|
102
|
-
|
|
102
|
+
2065,
|
|
103
103
|
'Background color for text that got removed. The color must not be opaque so as not to hide underlying decorations.'
|
|
104
104
|
)), true);
|
|
105
105
|
const diffInsertedLine = registerColor('diffEditor.insertedLineBackground', { dark: defaultInsertColor, light: defaultInsertColor, hcDark: null, hcLight: null }, ( localize(
|
|
106
|
-
|
|
106
|
+
2066,
|
|
107
107
|
'Background color for lines that got inserted. The color must not be opaque so as not to hide underlying decorations.'
|
|
108
108
|
)), true);
|
|
109
109
|
registerColor('diffEditor.removedLineBackground', { dark: defaultRemoveColor, light: defaultRemoveColor, hcDark: null, hcLight: null }, ( localize(
|
|
110
|
-
|
|
110
|
+
2067,
|
|
111
111
|
'Background color for lines that got removed. The color must not be opaque so as not to hide underlying decorations.'
|
|
112
112
|
)), true);
|
|
113
|
-
registerColor('diffEditorGutter.insertedLineBackground', null, ( localize(
|
|
114
|
-
registerColor('diffEditorGutter.removedLineBackground', null, ( localize(
|
|
115
|
-
const diffOverviewRulerInserted = registerColor('diffEditorOverview.insertedForeground', null, ( localize(
|
|
116
|
-
const diffOverviewRulerRemoved = registerColor('diffEditorOverview.removedForeground', null, ( localize(
|
|
117
|
-
registerColor('diffEditor.insertedTextBorder', { dark: null, light: null, hcDark: '#33ff2eff', hcLight: '#374E06' }, ( localize(
|
|
118
|
-
registerColor('diffEditor.removedTextBorder', { dark: null, light: null, hcDark: '#FF008F', hcLight: '#AD0707' }, ( localize(
|
|
119
|
-
registerColor('diffEditor.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(
|
|
113
|
+
registerColor('diffEditorGutter.insertedLineBackground', null, ( localize(2068, 'Background color for the margin where lines got inserted.')));
|
|
114
|
+
registerColor('diffEditorGutter.removedLineBackground', null, ( localize(2069, 'Background color for the margin where lines got removed.')));
|
|
115
|
+
const diffOverviewRulerInserted = registerColor('diffEditorOverview.insertedForeground', null, ( localize(2070, 'Diff overview ruler foreground for inserted content.')));
|
|
116
|
+
const diffOverviewRulerRemoved = registerColor('diffEditorOverview.removedForeground', null, ( localize(2071, 'Diff overview ruler foreground for removed content.')));
|
|
117
|
+
registerColor('diffEditor.insertedTextBorder', { dark: null, light: null, hcDark: '#33ff2eff', hcLight: '#374E06' }, ( localize(2072, 'Outline color for the text that got inserted.')));
|
|
118
|
+
registerColor('diffEditor.removedTextBorder', { dark: null, light: null, hcDark: '#FF008F', hcLight: '#AD0707' }, ( localize(2073, 'Outline color for text that got removed.')));
|
|
119
|
+
registerColor('diffEditor.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2074, 'Border color between the two text editors.')));
|
|
120
120
|
const diffDiagonalFill = registerColor('diffEditor.diagonalFill', { dark: '#cccccc33', light: '#22222233', hcDark: null, hcLight: null }, ( localize(
|
|
121
|
-
|
|
121
|
+
2075,
|
|
122
122
|
"Color of the diff editor's diagonal fill. The diagonal fill is used in side-by-side diff views."
|
|
123
123
|
)));
|
|
124
|
-
registerColor('diffEditor.unchangedRegionBackground', 'sideBar.background', ( localize(
|
|
125
|
-
registerColor('diffEditor.unchangedRegionForeground', 'foreground', ( localize(
|
|
126
|
-
registerColor('diffEditor.unchangedCodeBackground', { dark: '#74747429', light: '#b8b8b829', hcDark: null, hcLight: null }, ( localize(
|
|
127
|
-
const widgetShadow = registerColor('widget.shadow', { dark: ( transparent(Color.black, .36)), light: ( transparent(Color.black, .16)), hcDark: null, hcLight: null }, ( localize(
|
|
128
|
-
const widgetBorder = registerColor('widget.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(
|
|
129
|
-
const toolbarHoverBackground = registerColor('toolbar.hoverBackground', { dark: '#5a5d5e50', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(
|
|
130
|
-
registerColor('toolbar.hoverOutline', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(
|
|
131
|
-
registerColor('toolbar.activeBackground', { dark: ( lighten(toolbarHoverBackground, 0.1)), light: ( darken(toolbarHoverBackground, 0.1)), hcDark: null, hcLight: null }, ( localize(
|
|
132
|
-
const breadcrumbsForeground = registerColor('breadcrumb.foreground', ( transparent(foreground, 0.8)), ( localize(
|
|
133
|
-
const breadcrumbsBackground = registerColor('breadcrumb.background', editorBackground, ( localize(
|
|
134
|
-
const breadcrumbsFocusForeground = registerColor('breadcrumb.focusForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(
|
|
135
|
-
const breadcrumbsActiveSelectionForeground = registerColor('breadcrumb.activeSelectionForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(
|
|
136
|
-
const breadcrumbsPickerBackground = registerColor('breadcrumbPicker.background', editorWidgetBackground, ( localize(
|
|
124
|
+
registerColor('diffEditor.unchangedRegionBackground', 'sideBar.background', ( localize(2076, "The background color of unchanged blocks in the diff editor.")));
|
|
125
|
+
registerColor('diffEditor.unchangedRegionForeground', 'foreground', ( localize(2077, "The foreground color of unchanged blocks in the diff editor.")));
|
|
126
|
+
registerColor('diffEditor.unchangedCodeBackground', { dark: '#74747429', light: '#b8b8b829', hcDark: null, hcLight: null }, ( localize(2078, "The background color of unchanged code in the diff editor.")));
|
|
127
|
+
const widgetShadow = registerColor('widget.shadow', { dark: ( transparent(Color.black, .36)), light: ( transparent(Color.black, .16)), hcDark: null, hcLight: null }, ( localize(2079, 'Shadow color of widgets such as find/replace inside the editor.')));
|
|
128
|
+
const widgetBorder = registerColor('widget.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2080, 'Border color of widgets such as find/replace inside the editor.')));
|
|
129
|
+
const toolbarHoverBackground = registerColor('toolbar.hoverBackground', { dark: '#5a5d5e50', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(2081, "Toolbar background when hovering over actions using the mouse")));
|
|
130
|
+
registerColor('toolbar.hoverOutline', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2082, "Toolbar outline when hovering over actions using the mouse")));
|
|
131
|
+
registerColor('toolbar.activeBackground', { dark: ( lighten(toolbarHoverBackground, 0.1)), light: ( darken(toolbarHoverBackground, 0.1)), hcDark: null, hcLight: null }, ( localize(2083, "Toolbar background when holding the mouse over actions")));
|
|
132
|
+
const breadcrumbsForeground = registerColor('breadcrumb.foreground', ( transparent(foreground, 0.8)), ( localize(2084, "Color of focused breadcrumb items.")));
|
|
133
|
+
const breadcrumbsBackground = registerColor('breadcrumb.background', editorBackground, ( localize(2085, "Background color of breadcrumb items.")));
|
|
134
|
+
const breadcrumbsFocusForeground = registerColor('breadcrumb.focusForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2084, "Color of focused breadcrumb items.")));
|
|
135
|
+
const breadcrumbsActiveSelectionForeground = registerColor('breadcrumb.activeSelectionForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2086, "Color of selected breadcrumb items.")));
|
|
136
|
+
const breadcrumbsPickerBackground = registerColor('breadcrumbPicker.background', editorWidgetBackground, ( localize(2087, "Background color of breadcrumb item picker.")));
|
|
137
137
|
const headerTransparency = 0.5;
|
|
138
138
|
const currentBaseColor = ( ( Color.fromHex('#40C8AE')).transparent(headerTransparency));
|
|
139
139
|
const incomingBaseColor = ( ( Color.fromHex('#40A6FF')).transparent(headerTransparency));
|
|
@@ -141,49 +141,49 @@ const commonBaseColor = ( ( Color.fromHex('#606060')).transparent(0.4));
|
|
|
141
141
|
const contentTransparency = 0.4;
|
|
142
142
|
const rulerTransparency = 1;
|
|
143
143
|
const mergeCurrentHeaderBackground = registerColor('merge.currentHeaderBackground', { dark: currentBaseColor, light: currentBaseColor, hcDark: null, hcLight: null }, ( localize(
|
|
144
|
-
|
|
144
|
+
2088,
|
|
145
145
|
'Current header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
146
146
|
)), true);
|
|
147
147
|
registerColor('merge.currentContentBackground', ( transparent(mergeCurrentHeaderBackground, contentTransparency)), ( localize(
|
|
148
|
-
|
|
148
|
+
2089,
|
|
149
149
|
'Current content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
150
150
|
)), true);
|
|
151
151
|
const mergeIncomingHeaderBackground = registerColor('merge.incomingHeaderBackground', { dark: incomingBaseColor, light: incomingBaseColor, hcDark: null, hcLight: null }, ( localize(
|
|
152
|
-
|
|
152
|
+
2090,
|
|
153
153
|
'Incoming header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
154
154
|
)), true);
|
|
155
155
|
registerColor('merge.incomingContentBackground', ( transparent(mergeIncomingHeaderBackground, contentTransparency)), ( localize(
|
|
156
|
-
|
|
156
|
+
2091,
|
|
157
157
|
'Incoming content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
158
158
|
)), true);
|
|
159
159
|
const mergeCommonHeaderBackground = registerColor('merge.commonHeaderBackground', { dark: commonBaseColor, light: commonBaseColor, hcDark: null, hcLight: null }, ( localize(
|
|
160
|
-
|
|
160
|
+
2092,
|
|
161
161
|
'Common ancestor header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
162
162
|
)), true);
|
|
163
163
|
registerColor('merge.commonContentBackground', ( transparent(mergeCommonHeaderBackground, contentTransparency)), ( localize(
|
|
164
|
-
|
|
164
|
+
2093,
|
|
165
165
|
'Common ancestor content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
|
|
166
166
|
)), true);
|
|
167
167
|
const mergeBorder = registerColor('merge.border', { dark: null, light: null, hcDark: '#C3DF6F', hcLight: '#007ACC' }, ( localize(
|
|
168
|
-
|
|
168
|
+
2094,
|
|
169
169
|
'Border color on headers and the splitter in inline merge-conflicts.'
|
|
170
170
|
)));
|
|
171
|
-
registerColor('editorOverviewRuler.currentContentForeground', { dark: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), light: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(
|
|
172
|
-
registerColor('editorOverviewRuler.incomingContentForeground', { dark: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), light: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(
|
|
171
|
+
registerColor('editorOverviewRuler.currentContentForeground', { dark: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), light: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2095, 'Current overview ruler foreground for inline merge-conflicts.')));
|
|
172
|
+
registerColor('editorOverviewRuler.incomingContentForeground', { dark: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), light: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2096, 'Incoming overview ruler foreground for inline merge-conflicts.')));
|
|
173
173
|
registerColor('editorOverviewRuler.commonContentForeground', { dark: ( transparent(mergeCommonHeaderBackground, rulerTransparency)), light: ( transparent(mergeCommonHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(
|
|
174
|
-
|
|
174
|
+
2097,
|
|
175
175
|
'Common ancestor overview ruler foreground for inline merge-conflicts.'
|
|
176
176
|
)));
|
|
177
177
|
const overviewRulerFindMatchForeground = registerColor('editorOverviewRuler.findMatchForeground', { dark: '#d186167e', light: '#d186167e', hcDark: '#AB5A00', hcLight: '#AB5A00' }, ( localize(
|
|
178
|
-
|
|
178
|
+
2098,
|
|
179
179
|
'Overview ruler marker color for find matches. The color must not be opaque so as not to hide underlying decorations.'
|
|
180
180
|
)), true);
|
|
181
181
|
const overviewRulerSelectionHighlightForeground = registerColor('editorOverviewRuler.selectionHighlightForeground', '#A0A0A0CC', ( localize(
|
|
182
|
-
|
|
182
|
+
2099,
|
|
183
183
|
'Overview ruler marker color for selection highlights. The color must not be opaque so as not to hide underlying decorations.'
|
|
184
184
|
)), true);
|
|
185
|
-
const problemsErrorIconForeground = registerColor('problemsErrorIcon.foreground', editorErrorForeground, ( localize(
|
|
186
|
-
const problemsWarningIconForeground = registerColor('problemsWarningIcon.foreground', editorWarningForeground, ( localize(
|
|
187
|
-
const problemsInfoIconForeground = registerColor('problemsInfoIcon.foreground', editorInfoForeground, ( localize(
|
|
185
|
+
const problemsErrorIconForeground = registerColor('problemsErrorIcon.foreground', editorErrorForeground, ( localize(2100, "The color used for the problems error icon.")));
|
|
186
|
+
const problemsWarningIconForeground = registerColor('problemsWarningIcon.foreground', editorWarningForeground, ( localize(2101, "The color used for the problems warning icon.")));
|
|
187
|
+
const problemsInfoIconForeground = registerColor('problemsInfoIcon.foreground', editorInfoForeground, ( localize(2102, "The color used for the problems info icon.")));
|
|
188
188
|
|
|
189
189
|
export { breadcrumbsActiveSelectionForeground, breadcrumbsBackground, breadcrumbsFocusForeground, breadcrumbsForeground, breadcrumbsPickerBackground, defaultInsertColor, defaultRemoveColor, diffDiagonalFill, diffInserted, diffInsertedLine, diffOverviewRulerInserted, diffOverviewRulerRemoved, diffRemoved, editorActiveLinkForeground, editorBackground, editorErrorBorder, editorErrorForeground, editorFindMatch, editorFindMatchForeground, editorFindMatchHighlight, editorFindMatchHighlightBorder, editorFindMatchHighlightForeground, editorFindRangeHighlight, editorFindRangeHighlightBorder, editorForeground, editorHintForeground, editorHoverBackground, editorHoverBorder, editorHoverForeground, editorHoverHighlight, editorHoverStatusBarBackground, editorInactiveSelection, editorInfoBorder, editorInfoForeground, editorInlayHintBackground, editorInlayHintForeground, editorInlayHintParameterBackground, editorInlayHintParameterForeground, editorInlayHintTypeBackground, editorInlayHintTypeForeground, editorLightBulbForeground, editorSelectionBackground, editorSelectionForeground, editorSelectionHighlight, editorWarningBackground, editorWarningBorder, editorWarningForeground, editorWidgetBackground, editorWidgetBorder, editorWidgetForeground, mergeBorder, mergeCommonHeaderBackground, mergeCurrentHeaderBackground, mergeIncomingHeaderBackground, overviewRulerFindMatchForeground, overviewRulerSelectionHighlightForeground, problemsErrorIconForeground, problemsInfoIconForeground, problemsWarningIconForeground, toolbarHoverBackground, widgetBorder, widgetShadow };
|