@codingame/monaco-vscode-api 32.0.2 → 33.0.4

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.
Files changed (581) hide show
  1. package/missing-services.js +51 -7
  2. package/package.json +9 -9
  3. package/service-override/tools/views.d.ts +2 -2
  4. package/services.d.ts +3 -0
  5. package/services.js +8 -3
  6. package/vscode/product.json.js +1 -1
  7. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  8. package/vscode/src/vs/base/common/arrays.js +5 -1
  9. package/vscode/src/vs/base/common/async.js +94 -1
  10. package/vscode/src/vs/base/common/cache.js +22 -1
  11. package/vscode/src/vs/base/common/defaultAccount.d.ts +63 -0
  12. package/vscode/src/vs/base/common/policy.d.ts +1 -1
  13. package/vscode/src/vs/base/common/product.d.ts +0 -2
  14. package/vscode/src/vs/base/parts/ipc/common/ipc.net.d.ts +12 -0
  15. package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +1 -1
  16. package/vscode/src/vs/editor/common/config/editorOptions.js +1 -1
  17. package/vscode/src/vs/editor/common/textModelEditSource.js +18 -1
  18. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +2 -2
  19. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -0
  20. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +22 -2
  21. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +1 -0
  22. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +58 -17
  23. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  24. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  25. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  26. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  27. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  28. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  29. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  30. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  31. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  32. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  33. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  34. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  35. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  36. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  37. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  38. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/textualHighlightProvider.js +6 -3
  39. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  40. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  41. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +3 -0
  42. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  43. package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
  44. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +7 -0
  45. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +24 -10
  46. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +1 -0
  47. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +12 -12
  48. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +3 -3
  49. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  50. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  51. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  52. package/vscode/src/vs/platform/agentHost/browser/nullAgentHostService.d.ts +1 -1
  53. package/vscode/src/vs/platform/agentHost/common/agentHostUri.js +3 -0
  54. package/vscode/src/vs/platform/agentHost/common/agentPluginManager.d.ts +1 -1
  55. package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +1 -1
  56. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.d.ts +13 -4
  57. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.js +8 -3
  58. package/vscode/src/vs/platform/agentHost/common/remoteAgentHostService.service.d.ts +17 -1
  59. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.d.ts +27 -0
  60. package/vscode/src/vs/platform/agentHost/common/sshRemoteAgentHost.service.d.ts +20 -1
  61. package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +1 -1
  62. package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.d.ts +1054 -0
  63. package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.js +59 -0
  64. package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.d.ts +17 -1
  65. package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +6 -2
  66. package/vscode/src/vs/platform/agentHost/common/state/protocol/state.d.ts +5 -0
  67. package/vscode/src/vs/platform/agentHost/common/state/protocolUpgrade.d.ts +73 -0
  68. package/vscode/src/vs/platform/agentHost/common/state/sessionState.d.ts +139 -0
  69. package/vscode/src/vs/platform/agentHost/common/state/sessionState.js +24 -0
  70. package/vscode/src/vs/platform/browserView/common/browserView.d.ts +20 -0
  71. package/vscode/src/vs/platform/browserView/common/browserView.js +1 -0
  72. package/vscode/src/vs/platform/browserView/common/browserViewTelemetry.d.ts +3 -1
  73. package/vscode/src/vs/platform/configuration/common/configuration.js +1 -1
  74. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
  75. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  76. package/vscode/src/vs/platform/contextkey/common/contextkey.js +10 -10
  77. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  78. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  79. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +16 -1
  80. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.js +8 -0
  81. package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +9 -1
  82. package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
  83. package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
  84. package/vscode/src/vs/platform/environment/common/argv.d.ts +0 -2
  85. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
  86. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  87. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
  88. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
  89. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  90. package/vscode/src/vs/platform/files/common/files.js +6 -6
  91. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  92. package/vscode/src/vs/platform/hover/browser/hoverService.js +1 -1
  93. package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
  94. package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  95. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  96. package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
  97. package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
  98. package/vscode/src/vs/platform/list/browser/listService.js +25 -25
  99. package/vscode/src/vs/platform/log/common/log.js +6 -6
  100. package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
  101. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  102. package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +1 -1
  103. package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +5 -5
  104. package/vscode/src/vs/platform/networkFilter/common/networkFilterService.service.d.ts +2 -4
  105. package/vscode/src/vs/platform/notification/common/notification.js +3 -3
  106. package/vscode/src/vs/platform/policy/common/policy.d.ts +1 -1
  107. package/vscode/src/vs/platform/product/common/product.js +3 -3
  108. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
  109. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  110. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -6
  111. package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -1
  112. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  113. package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
  114. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  115. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +1 -1
  116. package/vscode/src/vs/platform/request/common/request.js +20 -20
  117. package/vscode/src/vs/platform/telemetry/common/telemetry.js +4 -1
  118. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
  119. package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +34 -34
  120. package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
  121. package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
  122. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +19 -19
  123. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +9 -9
  124. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
  125. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +48 -48
  126. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  127. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  128. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  129. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
  130. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +10 -10
  131. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  132. package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
  133. package/vscode/src/vs/platform/theme/common/sizeUtils.d.ts +5 -3
  134. package/vscode/src/vs/platform/theme/common/sizeUtils.js +17 -3
  135. package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +11 -11
  136. package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
  137. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  138. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  139. package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
  140. package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
  141. package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
  142. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  143. package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
  144. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  145. package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
  146. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +7 -1
  147. package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
  148. package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.d.ts +2 -2
  149. package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.js +2 -2
  150. package/vscode/src/vs/workbench/api/common/extHostChatStatus.js +9 -1
  151. package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +1 -0
  152. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  153. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
  154. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
  155. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -4
  156. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  157. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  158. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  159. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +4 -1
  160. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  161. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  162. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +12 -0
  163. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +98 -38
  164. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
  165. package/vscode/src/vs/workbench/browser/actions/developerActions.js +35 -35
  166. package/vscode/src/vs/workbench/browser/actions/layoutActions.js +127 -127
  167. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  168. package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
  169. package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
  170. package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
  171. package/vscode/src/vs/workbench/browser/editor.js +2 -2
  172. package/vscode/src/vs/workbench/browser/labels.js +4 -4
  173. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +23 -23
  174. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +26 -26
  175. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
  176. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  177. package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
  178. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  179. package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.js +1 -1
  180. package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
  181. package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
  182. package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
  183. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
  184. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
  185. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
  186. package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +19 -9
  187. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +1 -2
  188. package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +139 -176
  189. package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +28 -27
  190. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  191. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
  192. package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
  193. package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
  194. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +16 -10
  195. package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
  196. package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
  197. package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
  198. package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +3 -3
  199. package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +24 -7
  200. package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
  201. package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
  202. package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
  203. package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
  204. package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
  205. package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
  206. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +22 -22
  207. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
  208. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
  209. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +13 -13
  210. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
  211. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
  212. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
  213. package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
  214. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
  215. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  216. package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +27 -27
  217. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
  218. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
  219. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  220. package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +10 -10
  221. package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +15 -15
  222. package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +2 -2
  223. package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
  224. package/vscode/src/vs/workbench/browser/parts/views/treeView.js +7 -7
  225. package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +4 -4
  226. package/vscode/src/vs/workbench/browser/parts/views/viewMenuActions.d.ts +7 -2
  227. package/vscode/src/vs/workbench/browser/parts/views/viewMenuActions.js +28 -5
  228. package/vscode/src/vs/workbench/browser/parts/views/viewPane.d.ts +7 -0
  229. package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +11 -5
  230. package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +12 -9
  231. package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
  232. package/vscode/src/vs/workbench/browser/window.js +14 -14
  233. package/vscode/src/vs/workbench/browser/workbench.contribution.js +225 -225
  234. package/vscode/src/vs/workbench/common/configuration.js +9 -9
  235. package/vscode/src/vs/workbench/common/contextkeys.js +82 -82
  236. package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
  237. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
  238. package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
  239. package/vscode/src/vs/workbench/common/editor.js +4 -4
  240. package/vscode/src/vs/workbench/common/theme.js +161 -161
  241. package/vscode/src/vs/workbench/common/views.js +4 -4
  242. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +156 -156
  243. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  244. package/vscode/src/vs/workbench/contrib/browserView/common/browserEditorInput.js +1 -1
  245. package/vscode/src/vs/workbench/contrib/browserView/common/browserView.js +10 -7
  246. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -66
  247. package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.d.ts +8 -0
  248. package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.service.js +6 -0
  249. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.d.ts +70 -0
  250. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.service.js +6 -0
  251. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +12 -12
  252. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +1 -1
  253. package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +3 -3
  254. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
  255. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
  256. package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.d.ts +4 -2
  257. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
  258. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +43 -43
  259. package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -1
  260. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.service.d.ts +7 -0
  261. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatOutputPartStateCache.service.js +6 -0
  262. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +9 -9
  263. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +1 -0
  264. package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +93 -86
  265. package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +2 -2
  266. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +4 -6
  267. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +29 -21
  268. package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +7 -8
  269. package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +1 -1
  270. package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +41 -2
  271. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
  272. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +3 -0
  273. package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +1 -1
  274. package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
  275. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  276. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +17 -4
  277. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +152 -49
  278. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +20 -0
  279. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +3 -0
  280. package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +17 -8
  281. package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
  282. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +21 -19
  283. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
  284. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
  285. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +79 -79
  286. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +10 -10
  287. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.d.ts +92 -0
  288. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/extensionPromptFileService.js +329 -0
  289. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.d.ts +5 -44
  290. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +33 -276
  291. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.js +1 -1
  292. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +8 -8
  293. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
  294. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.js +7 -7
  295. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +2 -2
  296. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.js +3 -3
  297. package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +4 -4
  298. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
  299. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +2 -1
  300. package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +6 -5
  301. package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.service.d.ts +2 -1
  302. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
  303. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  304. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  305. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  306. package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
  307. package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
  308. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  309. package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
  310. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  311. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  312. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
  313. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  314. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +12 -12
  315. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  316. package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
  317. package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
  318. package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
  319. package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
  320. package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
  321. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
  322. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
  323. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
  324. package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
  325. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  326. package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
  327. package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
  328. package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
  329. package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
  330. package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
  331. package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
  332. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
  333. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.d.ts +7 -12
  334. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.js +68 -64
  335. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
  336. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  337. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
  338. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
  339. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
  340. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
  341. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
  342. package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
  343. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
  344. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  345. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
  346. package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
  347. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
  348. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
  349. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
  350. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
  351. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
  352. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  353. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  354. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
  355. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +6 -6
  356. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  357. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  358. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  359. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  360. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
  361. package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
  362. package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.d.ts +15 -0
  363. package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.js +85 -0
  364. package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
  365. package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
  366. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +41 -41
  367. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
  368. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
  369. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
  370. package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +149 -151
  371. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +179 -179
  372. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
  373. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
  374. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
  375. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
  376. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
  377. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
  378. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
  379. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +6 -6
  380. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
  381. package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +79 -76
  382. package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
  383. package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
  384. package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
  385. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  386. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
  387. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
  388. package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
  389. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
  390. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
  391. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
  392. package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
  393. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
  394. package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
  395. package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
  396. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
  397. package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
  398. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
  399. package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
  400. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  401. package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +28 -28
  402. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
  403. package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
  404. package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
  405. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
  406. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
  407. package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
  408. package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
  409. package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
  410. package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
  411. package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
  412. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  413. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  414. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  415. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  416. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  417. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.d.ts +17 -0
  418. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.js +108 -0
  419. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +8 -0
  420. package/vscode/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +49 -0
  421. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  422. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  423. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
  424. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
  425. package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +42 -42
  426. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
  427. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
  428. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  429. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  430. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  431. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  432. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
  433. package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
  434. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  435. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  436. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  437. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  438. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  439. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  440. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  441. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  442. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  443. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  444. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  445. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  446. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  447. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  448. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  449. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  450. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  451. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  452. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  453. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  454. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  455. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  456. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  457. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  458. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  459. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.d.ts +1 -0
  460. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.js +44 -0
  461. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  462. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  463. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  464. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
  465. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  466. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  467. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  468. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  469. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  470. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  471. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  472. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  473. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  474. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  475. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  476. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  477. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  478. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  479. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  480. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  481. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  482. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  483. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  484. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  485. package/vscode/src/vs/workbench/contrib/search/common/search.d.ts +2 -0
  486. package/vscode/src/vs/workbench/contrib/search/common/search.js +9 -1
  487. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  488. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  489. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  490. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  491. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  492. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  493. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  494. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +6 -6
  495. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  496. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  497. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  498. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  499. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  500. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  501. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
  502. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  503. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  504. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  505. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  506. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  507. package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +9 -9
  508. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +2 -0
  509. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +104 -74
  510. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  511. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  512. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +2 -2
  513. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  514. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  515. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  516. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  517. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  518. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  519. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  520. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  521. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  522. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  523. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  524. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  525. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +14 -14
  526. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  527. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +2 -1
  528. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +14 -3
  529. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +31 -25
  530. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +15 -0
  531. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  532. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +11 -2
  533. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +65 -22
  534. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +2 -0
  535. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  536. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  537. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  538. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +15 -3
  539. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +19 -3
  540. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +2 -2
  541. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  542. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  543. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  544. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
  545. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  546. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  547. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  548. package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.js +1 -1
  549. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  550. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  551. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  552. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
  553. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
  554. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  555. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  556. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  557. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  558. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  559. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  560. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  561. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  562. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  563. package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +7 -0
  564. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  565. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  566. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  567. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  568. package/vscode-dts/vscode.proposed.authIssuers.d.ts +14 -0
  569. package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +23 -3
  570. package/vscode-dts/vscode.proposed.chatProvider.d.ts +0 -9
  571. package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +5 -0
  572. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.d.ts +0 -7
  573. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.js +0 -6
  574. package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.d.ts +0 -39
  575. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.d.ts +0 -4
  576. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +0 -9
  577. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.d.ts +0 -76
  578. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +0 -470
  579. package/vscode/src/vs/workbench/contrib/extensions/browser/media/runtimeExtensionsEditor.css +0 -86
  580. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.d.ts +0 -15
  581. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +0 -47
@@ -5,23 +5,23 @@ 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(2200, "The foreground color used in charts.")));
9
- registerColor("charts.lines", ( transparent(foreground, .5)), ( localize(2201, "The color used for horizontal lines in charts.")));
10
- const chartsRed = registerColor("charts.red", editorErrorForeground, ( localize(2202, "The red color used in chart visualizations.")));
11
- const chartsBlue = registerColor("charts.blue", editorInfoForeground, ( localize(2203, "The blue color used in chart visualizations.")));
12
- const chartsYellow = registerColor("charts.yellow", editorWarningForeground, ( localize(2204, "The yellow color used in chart visualizations.")));
13
- registerColor("charts.orange", minimapFindMatch, ( localize(2205, "The orange color used in chart visualizations.")));
8
+ const chartsForeground = registerColor("charts.foreground", foreground, ( localize(2222, "The foreground color used in charts.")));
9
+ const chartsLines = registerColor("charts.lines", ( transparent(foreground, .5)), ( localize(2223, "The color used for horizontal lines in charts.")));
10
+ const chartsRed = registerColor("charts.red", editorErrorForeground, ( localize(2224, "The red color used in chart visualizations.")));
11
+ const chartsBlue = registerColor("charts.blue", editorInfoForeground, ( localize(2225, "The blue color used in chart visualizations.")));
12
+ const chartsYellow = registerColor("charts.yellow", editorWarningForeground, ( localize(2226, "The yellow color used in chart visualizations.")));
13
+ registerColor("charts.orange", minimapFindMatch, ( localize(2227, "The orange color used in chart visualizations.")));
14
14
  const chartsGreen = registerColor("charts.green", {
15
15
  dark: "#89D185",
16
16
  light: "#388A34",
17
17
  hcDark: "#89D185",
18
18
  hcLight: "#374e06"
19
- }, ( localize(2206, "The green color used in chart visualizations.")));
19
+ }, ( localize(2228, "The green color used in chart visualizations.")));
20
20
  const chartsPurple = registerColor("charts.purple", {
21
21
  dark: "#B180D7",
22
22
  light: "#652D90",
23
23
  hcDark: "#B180D7",
24
24
  hcLight: "#652D90"
25
- }, ( localize(2207, "The purple color used in chart visualizations.")));
25
+ }, ( localize(2229, "The purple color used in chart visualizations.")));
26
26
 
27
- export { chartsBlue, chartsGreen, chartsPurple, chartsRed, chartsYellow };
27
+ export { chartsBlue, chartsForeground, chartsGreen, chartsLines, chartsPurple, chartsRed, chartsYellow };
@@ -10,50 +10,50 @@ const editorBackground = registerColor("editor.background", {
10
10
  dark: "#1E1E1E",
11
11
  hcDark: Color.black,
12
12
  hcLight: Color.white
13
- }, ( localize(2208, "Editor background color.")));
13
+ }, ( localize(2230, "Editor background color.")));
14
14
  const editorForeground = registerColor("editor.foreground", {
15
15
  light: "#333333",
16
16
  dark: "#BBBBBB",
17
17
  hcDark: Color.white,
18
18
  hcLight: foreground
19
- }, ( localize(2209, "Editor default foreground color.")));
20
- registerColor("editorStickyScroll.background", editorBackground, ( localize(2210, "Background color of sticky scroll in the editor")));
21
- registerColor("editorStickyScrollGutter.background", editorBackground, ( localize(2211, "Background color of the gutter part of sticky scroll in the editor")));
19
+ }, ( localize(2231, "Editor default foreground color.")));
20
+ registerColor("editorStickyScroll.background", editorBackground, ( localize(2232, "Background color of sticky scroll in the editor")));
21
+ registerColor("editorStickyScrollGutter.background", editorBackground, ( localize(2233, "Background color of the gutter part of sticky scroll in the editor")));
22
22
  registerColor("editorStickyScrollHover.background", {
23
23
  dark: "#2A2D2E",
24
24
  light: "#F0F0F0",
25
25
  hcDark: null,
26
26
  hcLight: ( ( Color.fromHex("#0F4A85")).transparent(0.1))
27
- }, ( localize(2212, "Background color of sticky scroll on hover in the editor")));
27
+ }, ( localize(2234, "Background color of sticky scroll on hover in the editor")));
28
28
  registerColor("editorStickyScroll.border", {
29
29
  dark: null,
30
30
  light: null,
31
31
  hcDark: contrastBorder,
32
32
  hcLight: contrastBorder
33
- }, ( localize(2213, "Border color of sticky scroll in the editor")));
34
- registerColor("editorStickyScroll.shadow", scrollbarShadow, ( localize(2214, " Shadow color of sticky scroll in the editor")));
33
+ }, ( localize(2235, "Border color of sticky scroll in the editor")));
34
+ registerColor("editorStickyScroll.shadow", scrollbarShadow, ( localize(2236, " Shadow color of sticky scroll in the editor")));
35
35
  const editorWidgetBackground = registerColor("editorWidget.background", {
36
36
  dark: "#252526",
37
37
  light: "#F3F3F3",
38
38
  hcDark: "#0C141F",
39
39
  hcLight: Color.white
40
- }, ( localize(2215, "Background color of editor widgets, such as find/replace.")));
41
- const editorWidgetForeground = registerColor("editorWidget.foreground", foreground, ( localize(2216, "Foreground color of editor widgets, such as find/replace.")));
40
+ }, ( localize(2237, "Background color of editor widgets, such as find/replace.")));
41
+ const editorWidgetForeground = registerColor("editorWidget.foreground", foreground, ( localize(2238, "Foreground color of editor widgets, such as find/replace.")));
42
42
  const editorWidgetBorder = registerColor("editorWidget.border", {
43
43
  dark: ( transparent(editorWidgetForeground, 0.2)),
44
44
  light: ( transparent(editorWidgetForeground, 0.2)),
45
45
  hcDark: contrastBorder,
46
46
  hcLight: contrastBorder
47
47
  }, ( localize(
48
- 2217,
48
+ 2239,
49
49
  "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."
50
50
  )));
51
51
  registerColor("editorWidget.resizeBorder", null, ( localize(
52
- 2218,
52
+ 2240,
53
53
  "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."
54
54
  )));
55
55
  registerColor("editorError.background", null, ( localize(
56
- 2219,
56
+ 2241,
57
57
  "Background color of error text in the editor. The color must not be opaque so as not to hide underlying decorations."
58
58
  )), true);
59
59
  const editorErrorForeground = registerColor("editorError.foreground", {
@@ -61,15 +61,15 @@ const editorErrorForeground = registerColor("editorError.foreground", {
61
61
  light: "#E51400",
62
62
  hcDark: "#F48771",
63
63
  hcLight: "#B5200D"
64
- }, ( localize(2220, "Foreground color of error squigglies in the editor.")));
64
+ }, ( localize(2242, "Foreground color of error squigglies in the editor.")));
65
65
  const editorErrorBorder = registerColor("editorError.border", {
66
66
  dark: null,
67
67
  light: null,
68
68
  hcDark: ( ( Color.fromHex("#E47777")).transparent(0.8)),
69
69
  hcLight: "#B5200D"
70
- }, ( localize(2221, "If set, color of double underlines for errors in the editor.")));
70
+ }, ( localize(2243, "If set, color of double underlines for errors in the editor.")));
71
71
  const editorWarningBackground = registerColor("editorWarning.background", null, ( localize(
72
- 2222,
72
+ 2244,
73
73
  "Background color of warning text in the editor. The color must not be opaque so as not to hide underlying decorations."
74
74
  )), true);
75
75
  const editorWarningForeground = registerColor("editorWarning.foreground", {
@@ -77,15 +77,15 @@ const editorWarningForeground = registerColor("editorWarning.foreground", {
77
77
  light: "#BF8803",
78
78
  hcDark: "#FFD370",
79
79
  hcLight: "#895503"
80
- }, ( localize(2223, "Foreground color of warning squigglies in the editor.")));
80
+ }, ( localize(2245, "Foreground color of warning squigglies in the editor.")));
81
81
  const editorWarningBorder = registerColor("editorWarning.border", {
82
82
  dark: null,
83
83
  light: null,
84
84
  hcDark: ( ( Color.fromHex("#FFCC00")).transparent(0.8)),
85
85
  hcLight: ( ( Color.fromHex("#FFCC00")).transparent(0.8))
86
- }, ( localize(2224, "If set, color of double underlines for warnings in the editor.")));
86
+ }, ( localize(2246, "If set, color of double underlines for warnings in the editor.")));
87
87
  registerColor("editorInfo.background", null, ( localize(
88
- 2225,
88
+ 2247,
89
89
  "Background color of info text in the editor. The color must not be opaque so as not to hide underlying decorations."
90
90
  )), true);
91
91
  const editorInfoForeground = registerColor("editorInfo.foreground", {
@@ -93,50 +93,50 @@ const editorInfoForeground = registerColor("editorInfo.foreground", {
93
93
  light: "#0063d3",
94
94
  hcDark: "#59a4f9",
95
95
  hcLight: "#0063d3"
96
- }, ( localize(2226, "Foreground color of info squigglies in the editor.")));
96
+ }, ( localize(2248, "Foreground color of info squigglies in the editor.")));
97
97
  const editorInfoBorder = registerColor("editorInfo.border", {
98
98
  dark: null,
99
99
  light: null,
100
100
  hcDark: ( ( Color.fromHex("#59a4f9")).transparent(0.8)),
101
101
  hcLight: "#292929"
102
- }, ( localize(2227, "If set, color of double underlines for infos in the editor.")));
102
+ }, ( localize(2249, "If set, color of double underlines for infos in the editor.")));
103
103
  const editorHintForeground = registerColor("editorHint.foreground", {
104
104
  dark: ( ( Color.fromHex("#eeeeee")).transparent(0.7)),
105
105
  light: "#6c6c6c",
106
106
  hcDark: null,
107
107
  hcLight: null
108
- }, ( localize(2228, "Foreground color of hint squigglies in the editor.")));
108
+ }, ( localize(2250, "Foreground color of hint squigglies in the editor.")));
109
109
  registerColor("editorHint.border", {
110
110
  dark: null,
111
111
  light: null,
112
112
  hcDark: ( ( Color.fromHex("#eeeeee")).transparent(0.8)),
113
113
  hcLight: "#292929"
114
- }, ( localize(2229, "If set, color of double underlines for hints in the editor.")));
114
+ }, ( localize(2251, "If set, color of double underlines for hints in the editor.")));
115
115
  const editorActiveLinkForeground = registerColor("editorLink.activeForeground", {
116
116
  dark: "#4E94CE",
117
117
  light: Color.blue,
118
118
  hcDark: Color.cyan,
119
119
  hcLight: "#292929"
120
- }, ( localize(2230, "Color of active links.")));
120
+ }, ( localize(2252, "Color of active links.")));
121
121
  const editorSelectionBackground = registerColor("editor.selectionBackground", {
122
122
  light: "#ADD6FF",
123
123
  dark: "#264F78",
124
124
  hcDark: "#f3f518",
125
125
  hcLight: "#0F4A85"
126
- }, ( localize(2231, "Color of the editor selection.")));
126
+ }, ( localize(2253, "Color of the editor selection.")));
127
127
  const editorSelectionForeground = registerColor("editor.selectionForeground", {
128
128
  light: null,
129
129
  dark: null,
130
130
  hcDark: "#000000",
131
131
  hcLight: Color.white
132
- }, ( localize(2232, "Color of the selected text for high contrast.")));
132
+ }, ( localize(2254, "Color of the selected text for high contrast.")));
133
133
  const editorInactiveSelection = registerColor("editor.inactiveSelectionBackground", {
134
134
  light: ( transparent(editorSelectionBackground, 0.5)),
135
135
  dark: ( transparent(editorSelectionBackground, 0.5)),
136
136
  hcDark: ( transparent(editorSelectionBackground, 0.7)),
137
137
  hcLight: ( transparent(editorSelectionBackground, 0.5))
138
138
  }, ( localize(
139
- 2233,
139
+ 2255,
140
140
  "Color of the selection in an inactive editor. The color must not be opaque so as not to hide underlying decorations."
141
141
  )), true);
142
142
  const editorSelectionHighlight = registerColor("editor.selectionHighlightBackground", {
@@ -145,7 +145,7 @@ const editorSelectionHighlight = registerColor("editor.selectionHighlightBackgro
145
145
  hcDark: null,
146
146
  hcLight: null
147
147
  }, ( localize(
148
- 2234,
148
+ 2256,
149
149
  "Color for regions with the same content as the selection. The color must not be opaque so as not to hide underlying decorations."
150
150
  )), true);
151
151
  registerColor("editor.selectionHighlightBorder", {
@@ -153,37 +153,37 @@ registerColor("editor.selectionHighlightBorder", {
153
153
  dark: null,
154
154
  hcDark: activeContrastBorder,
155
155
  hcLight: activeContrastBorder
156
- }, ( localize(2235, "Border color for regions with the same content as the selection.")));
156
+ }, ( localize(2257, "Border color for regions with the same content as the selection.")));
157
157
  registerColor("editor.compositionBorder", {
158
158
  light: "#000000",
159
159
  dark: "#ffffff",
160
160
  hcLight: "#000000",
161
161
  hcDark: "#ffffff"
162
- }, ( localize(2236, "The border color for an IME composition.")));
162
+ }, ( localize(2258, "The border color for an IME composition.")));
163
163
  const editorFindMatch = registerColor("editor.findMatchBackground", {
164
164
  light: "#A8AC94",
165
165
  dark: "#515C6A",
166
166
  hcDark: null,
167
167
  hcLight: null
168
- }, ( localize(2237, "Color of the current search match.")));
169
- const editorFindMatchForeground = registerColor("editor.findMatchForeground", null, ( localize(2238, "Text color of the current search match.")));
168
+ }, ( localize(2259, "Color of the current search match.")));
169
+ const editorFindMatchForeground = registerColor("editor.findMatchForeground", null, ( localize(2260, "Text color of the current search match.")));
170
170
  const editorFindMatchHighlight = registerColor("editor.findMatchHighlightBackground", {
171
171
  light: "#EA5C0055",
172
172
  dark: "#EA5C0055",
173
173
  hcDark: null,
174
174
  hcLight: null
175
175
  }, ( localize(
176
- 2239,
176
+ 2261,
177
177
  "Color of the other search matches. The color must not be opaque so as not to hide underlying decorations."
178
178
  )), true);
179
- const editorFindMatchHighlightForeground = registerColor("editor.findMatchHighlightForeground", null, ( localize(2240, "Foreground color of the other search matches.")), true);
179
+ const editorFindMatchHighlightForeground = registerColor("editor.findMatchHighlightForeground", null, ( localize(2262, "Foreground color of the other search matches.")), true);
180
180
  const editorFindRangeHighlight = registerColor("editor.findRangeHighlightBackground", {
181
181
  dark: "#3a3d4166",
182
182
  light: "#b4b4b44d",
183
183
  hcDark: null,
184
184
  hcLight: null
185
185
  }, ( localize(
186
- 2241,
186
+ 2263,
187
187
  "Color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
188
188
  )), true);
189
189
  registerColor("editor.findMatchBorder", {
@@ -191,20 +191,20 @@ registerColor("editor.findMatchBorder", {
191
191
  dark: null,
192
192
  hcDark: activeContrastBorder,
193
193
  hcLight: activeContrastBorder
194
- }, ( localize(2242, "Border color of the current search match.")));
194
+ }, ( localize(2264, "Border color of the current search match.")));
195
195
  const editorFindMatchHighlightBorder = registerColor("editor.findMatchHighlightBorder", {
196
196
  light: null,
197
197
  dark: null,
198
198
  hcDark: activeContrastBorder,
199
199
  hcLight: activeContrastBorder
200
- }, ( localize(2243, "Border color of the other search matches.")));
200
+ }, ( localize(2265, "Border color of the other search matches.")));
201
201
  const editorFindRangeHighlightBorder = registerColor("editor.findRangeHighlightBorder", {
202
202
  dark: null,
203
203
  light: null,
204
204
  hcDark: ( transparent(activeContrastBorder, 0.4)),
205
205
  hcLight: ( transparent(activeContrastBorder, 0.4))
206
206
  }, ( localize(
207
- 2244,
207
+ 2266,
208
208
  "Border color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
209
209
  )), true);
210
210
  const editorHoverHighlight = registerColor("editor.hoverHighlightBackground", {
@@ -213,77 +213,77 @@ const editorHoverHighlight = registerColor("editor.hoverHighlightBackground", {
213
213
  hcDark: "#ADD6FF26",
214
214
  hcLight: null
215
215
  }, ( localize(
216
- 2245,
216
+ 2267,
217
217
  "Highlight below the word for which a hover is shown. The color must not be opaque so as not to hide underlying decorations."
218
218
  )), true);
219
- const editorHoverBackground = registerColor("editorHoverWidget.background", editorWidgetBackground, ( localize(2246, "Background color of the editor hover.")));
220
- const editorHoverForeground = registerColor("editorHoverWidget.foreground", editorWidgetForeground, ( localize(2247, "Foreground color of the editor hover.")));
221
- const editorHoverBorder = registerColor("editorHoverWidget.border", editorWidgetBorder, ( localize(2248, "Border color of the editor hover.")));
219
+ const editorHoverBackground = registerColor("editorHoverWidget.background", editorWidgetBackground, ( localize(2268, "Background color of the editor hover.")));
220
+ const editorHoverForeground = registerColor("editorHoverWidget.foreground", editorWidgetForeground, ( localize(2269, "Foreground color of the editor hover.")));
221
+ const editorHoverBorder = registerColor("editorHoverWidget.border", editorWidgetBorder, ( localize(2270, "Border color of the editor hover.")));
222
222
  registerColor("editorHoverWidget.statusBarBackground", {
223
223
  dark: ( lighten(editorHoverBackground, 0.2)),
224
224
  light: ( darken(editorHoverBackground, 0.05)),
225
225
  hcDark: editorWidgetBackground,
226
226
  hcLight: editorWidgetBackground
227
- }, ( localize(2249, "Background color of the editor hover status bar.")));
227
+ }, ( localize(2271, "Background color of the editor hover status bar.")));
228
228
  const editorInlayHintForeground = registerColor("editorInlayHint.foreground", {
229
229
  dark: "#969696",
230
230
  light: "#969696",
231
231
  hcDark: Color.white,
232
232
  hcLight: Color.black
233
- }, ( localize(2250, "Foreground color of inline hints")));
233
+ }, ( localize(2272, "Foreground color of inline hints")));
234
234
  const editorInlayHintBackground = registerColor("editorInlayHint.background", {
235
235
  dark: ( transparent(badgeBackground, .10)),
236
236
  light: ( transparent(badgeBackground, .10)),
237
237
  hcDark: ( transparent(Color.white, .10)),
238
238
  hcLight: ( transparent(badgeBackground, .10))
239
- }, ( localize(2251, "Background color of inline hints")));
239
+ }, ( localize(2273, "Background color of inline hints")));
240
240
  const editorInlayHintTypeForeground = registerColor(
241
241
  "editorInlayHint.typeForeground",
242
242
  editorInlayHintForeground,
243
- ( localize(2252, "Foreground color of inline hints for types"))
243
+ ( localize(2274, "Foreground color of inline hints for types"))
244
244
  );
245
245
  const editorInlayHintTypeBackground = registerColor(
246
246
  "editorInlayHint.typeBackground",
247
247
  editorInlayHintBackground,
248
- ( localize(2253, "Background color of inline hints for types"))
248
+ ( localize(2275, "Background color of inline hints for types"))
249
249
  );
250
250
  const editorInlayHintParameterForeground = registerColor(
251
251
  "editorInlayHint.parameterForeground",
252
252
  editorInlayHintForeground,
253
- ( localize(2254, "Foreground color of inline hints for parameters"))
253
+ ( localize(2276, "Foreground color of inline hints for parameters"))
254
254
  );
255
255
  const editorInlayHintParameterBackground = registerColor(
256
256
  "editorInlayHint.parameterBackground",
257
257
  editorInlayHintBackground,
258
- ( localize(2255, "Background color of inline hints for parameters"))
258
+ ( localize(2277, "Background color of inline hints for parameters"))
259
259
  );
260
260
  const editorLightBulbForeground = registerColor("editorLightBulb.foreground", {
261
261
  dark: "#FFCC00",
262
262
  light: "#DDB100",
263
263
  hcDark: "#FFCC00",
264
264
  hcLight: "#007ACC"
265
- }, ( localize(2256, "The color used for the lightbulb actions icon.")));
265
+ }, ( localize(2278, "The color used for the lightbulb actions icon.")));
266
266
  registerColor("editorLightBulbAutoFix.foreground", {
267
267
  dark: "#75BEFF",
268
268
  light: "#007ACC",
269
269
  hcDark: "#75BEFF",
270
270
  hcLight: "#007ACC"
271
- }, ( localize(2257, "The color used for the lightbulb auto fix actions icon.")));
272
- registerColor("editorLightBulbAi.foreground", editorLightBulbForeground, ( localize(2258, "The color used for the lightbulb AI icon.")));
271
+ }, ( localize(2279, "The color used for the lightbulb auto fix actions icon.")));
272
+ registerColor("editorLightBulbAi.foreground", editorLightBulbForeground, ( localize(2280, "The color used for the lightbulb AI icon.")));
273
273
  registerColor("editor.snippetTabstopHighlightBackground", {
274
274
  dark: ( new Color(( new RGBA(124, 124, 124, 0.3)))),
275
275
  light: ( new Color(( new RGBA(10, 50, 100, 0.2)))),
276
276
  hcDark: ( new Color(( new RGBA(124, 124, 124, 0.3)))),
277
277
  hcLight: ( new Color(( new RGBA(10, 50, 100, 0.2))))
278
- }, ( localize(2259, "Highlight background color of a snippet tabstop.")));
279
- registerColor("editor.snippetTabstopHighlightBorder", null, ( localize(2260, "Highlight border color of a snippet tabstop.")));
280
- registerColor("editor.snippetFinalTabstopHighlightBackground", null, ( localize(2261, "Highlight background color of the final tabstop of a snippet.")));
278
+ }, ( localize(2281, "Highlight background color of a snippet tabstop.")));
279
+ registerColor("editor.snippetTabstopHighlightBorder", null, ( localize(2282, "Highlight border color of a snippet tabstop.")));
280
+ registerColor("editor.snippetFinalTabstopHighlightBackground", null, ( localize(2283, "Highlight background color of the final tabstop of a snippet.")));
281
281
  registerColor("editor.snippetFinalTabstopHighlightBorder", {
282
282
  dark: "#525252",
283
283
  light: ( new Color(( new RGBA(10, 50, 100, 0.5)))),
284
284
  hcDark: "#525252",
285
285
  hcLight: "#292929"
286
- }, ( localize(2262, "Highlight border color of the final tabstop of a snippet.")));
286
+ }, ( localize(2284, "Highlight border color of the final tabstop of a snippet.")));
287
287
  const defaultInsertColor = ( new Color(( new RGBA(155, 185, 85, .2))));
288
288
  const defaultRemoveColor = ( new Color(( new RGBA(255, 0, 0, .2))));
289
289
  const diffInserted = registerColor("diffEditor.insertedTextBackground", {
@@ -292,7 +292,7 @@ const diffInserted = registerColor("diffEditor.insertedTextBackground", {
292
292
  hcDark: null,
293
293
  hcLight: null
294
294
  }, ( localize(
295
- 2263,
295
+ 2285,
296
296
  "Background color for text that got inserted. The color must not be opaque so as not to hide underlying decorations."
297
297
  )), true);
298
298
  const diffRemoved = registerColor("diffEditor.removedTextBackground", {
@@ -301,7 +301,7 @@ const diffRemoved = registerColor("diffEditor.removedTextBackground", {
301
301
  hcDark: null,
302
302
  hcLight: null
303
303
  }, ( localize(
304
- 2264,
304
+ 2286,
305
305
  "Background color for text that got removed. The color must not be opaque so as not to hide underlying decorations."
306
306
  )), true);
307
307
  const diffInsertedLine = registerColor("diffEditor.insertedLineBackground", {
@@ -310,7 +310,7 @@ const diffInsertedLine = registerColor("diffEditor.insertedLineBackground", {
310
310
  hcDark: null,
311
311
  hcLight: null
312
312
  }, ( localize(
313
- 2265,
313
+ 2287,
314
314
  "Background color for lines that got inserted. The color must not be opaque so as not to hide underlying decorations."
315
315
  )), true);
316
316
  registerColor("diffEditor.removedLineBackground", {
@@ -319,97 +319,97 @@ registerColor("diffEditor.removedLineBackground", {
319
319
  hcDark: null,
320
320
  hcLight: null
321
321
  }, ( localize(
322
- 2266,
322
+ 2288,
323
323
  "Background color for lines that got removed. The color must not be opaque so as not to hide underlying decorations."
324
324
  )), true);
325
- registerColor("diffEditorGutter.insertedLineBackground", null, ( localize(2267, "Background color for the margin where lines got inserted.")));
326
- registerColor("diffEditorGutter.removedLineBackground", null, ( localize(2268, "Background color for the margin where lines got removed.")));
327
- const diffOverviewRulerInserted = registerColor("diffEditorOverview.insertedForeground", null, ( localize(2269, "Diff overview ruler foreground for inserted content.")));
328
- const diffOverviewRulerRemoved = registerColor("diffEditorOverview.removedForeground", null, ( localize(2270, "Diff overview ruler foreground for removed content.")));
325
+ registerColor("diffEditorGutter.insertedLineBackground", null, ( localize(2289, "Background color for the margin where lines got inserted.")));
326
+ registerColor("diffEditorGutter.removedLineBackground", null, ( localize(2290, "Background color for the margin where lines got removed.")));
327
+ const diffOverviewRulerInserted = registerColor("diffEditorOverview.insertedForeground", null, ( localize(2291, "Diff overview ruler foreground for inserted content.")));
328
+ const diffOverviewRulerRemoved = registerColor("diffEditorOverview.removedForeground", null, ( localize(2292, "Diff overview ruler foreground for removed content.")));
329
329
  registerColor("diffEditor.insertedTextBorder", {
330
330
  dark: null,
331
331
  light: null,
332
332
  hcDark: "#33ff2eff",
333
333
  hcLight: "#374E06"
334
- }, ( localize(2271, "Outline color for the text that got inserted.")));
334
+ }, ( localize(2293, "Outline color for the text that got inserted.")));
335
335
  registerColor("diffEditor.removedTextBorder", {
336
336
  dark: null,
337
337
  light: null,
338
338
  hcDark: "#FF008F",
339
339
  hcLight: "#AD0707"
340
- }, ( localize(2272, "Outline color for text that got removed.")));
340
+ }, ( localize(2294, "Outline color for text that got removed.")));
341
341
  registerColor("diffEditor.border", {
342
342
  dark: null,
343
343
  light: null,
344
344
  hcDark: contrastBorder,
345
345
  hcLight: contrastBorder
346
- }, ( localize(2273, "Border color between the two text editors.")));
346
+ }, ( localize(2295, "Border color between the two text editors.")));
347
347
  const diffDiagonalFill = registerColor("diffEditor.diagonalFill", {
348
348
  dark: "#cccccc33",
349
349
  light: "#22222233",
350
350
  hcDark: null,
351
351
  hcLight: null
352
352
  }, ( localize(
353
- 2274,
353
+ 2296,
354
354
  "Color of the diff editor's diagonal fill. The diagonal fill is used in side-by-side diff views."
355
355
  )));
356
356
  registerColor(
357
357
  "diffEditor.unchangedRegionBackground",
358
358
  "sideBar.background",
359
- ( localize(2275, "The background color of unchanged blocks in the diff editor."))
359
+ ( localize(2297, "The background color of unchanged blocks in the diff editor."))
360
360
  );
361
- registerColor("diffEditor.unchangedRegionForeground", "foreground", ( localize(2276, "The foreground color of unchanged blocks in the diff editor.")));
361
+ registerColor("diffEditor.unchangedRegionForeground", "foreground", ( localize(2298, "The foreground color of unchanged blocks in the diff editor.")));
362
362
  registerColor("diffEditor.unchangedCodeBackground", {
363
363
  dark: "#74747429",
364
364
  light: "#b8b8b829",
365
365
  hcDark: null,
366
366
  hcLight: null
367
- }, ( localize(2277, "The background color of unchanged code in the diff editor.")));
367
+ }, ( localize(2299, "The background color of unchanged code in the diff editor.")));
368
368
  const widgetShadow = registerColor("widget.shadow", {
369
369
  dark: ( transparent(Color.black, .36)),
370
370
  light: ( transparent(Color.black, .16)),
371
371
  hcDark: null,
372
372
  hcLight: null
373
- }, ( localize(2278, "Shadow color of widgets such as find/replace inside the editor.")));
373
+ }, ( localize(2300, "Shadow color of widgets such as find/replace inside the editor.")));
374
374
  const widgetBorder = registerColor("widget.border", {
375
375
  dark: null,
376
376
  light: null,
377
377
  hcDark: contrastBorder,
378
378
  hcLight: contrastBorder
379
- }, ( localize(2279, "Border color of widgets such as find/replace inside the editor.")));
379
+ }, ( localize(2301, "Border color of widgets such as find/replace inside the editor.")));
380
380
  const toolbarHoverBackground = registerColor("toolbar.hoverBackground", {
381
381
  dark: "#5a5d5e50",
382
382
  light: "#b8b8b850",
383
383
  hcDark: null,
384
384
  hcLight: null
385
- }, ( localize(2280, "Toolbar background when hovering over actions using the mouse")));
385
+ }, ( localize(2302, "Toolbar background when hovering over actions using the mouse")));
386
386
  registerColor("toolbar.hoverOutline", {
387
387
  dark: null,
388
388
  light: null,
389
389
  hcDark: activeContrastBorder,
390
390
  hcLight: activeContrastBorder
391
- }, ( localize(2281, "Toolbar outline when hovering over actions using the mouse")));
391
+ }, ( localize(2303, "Toolbar outline when hovering over actions using the mouse")));
392
392
  registerColor("toolbar.activeBackground", {
393
393
  dark: ( lighten(toolbarHoverBackground, 0.1)),
394
394
  light: ( darken(toolbarHoverBackground, 0.1)),
395
395
  hcDark: null,
396
396
  hcLight: null
397
- }, ( localize(2282, "Toolbar background when holding the mouse over actions")));
398
- const breadcrumbsForeground = registerColor("breadcrumb.foreground", ( transparent(foreground, 0.8)), ( localize(2283, "Color of focused breadcrumb items.")));
399
- const breadcrumbsBackground = registerColor("breadcrumb.background", editorBackground, ( localize(2284, "Background color of breadcrumb items.")));
397
+ }, ( localize(2304, "Toolbar background when holding the mouse over actions")));
398
+ const breadcrumbsForeground = registerColor("breadcrumb.foreground", ( transparent(foreground, 0.8)), ( localize(2305, "Color of focused breadcrumb items.")));
399
+ const breadcrumbsBackground = registerColor("breadcrumb.background", editorBackground, ( localize(2306, "Background color of breadcrumb items.")));
400
400
  const breadcrumbsFocusForeground = registerColor("breadcrumb.focusForeground", {
401
401
  light: ( darken(foreground, 0.2)),
402
402
  dark: ( lighten(foreground, 0.1)),
403
403
  hcDark: ( lighten(foreground, 0.1)),
404
404
  hcLight: ( lighten(foreground, 0.1))
405
- }, ( localize(2283, "Color of focused breadcrumb items.")));
405
+ }, ( localize(2305, "Color of focused breadcrumb items.")));
406
406
  const breadcrumbsActiveSelectionForeground = registerColor("breadcrumb.activeSelectionForeground", {
407
407
  light: ( darken(foreground, 0.2)),
408
408
  dark: ( lighten(foreground, 0.1)),
409
409
  hcDark: ( lighten(foreground, 0.1)),
410
410
  hcLight: ( lighten(foreground, 0.1))
411
- }, ( localize(2285, "Color of selected breadcrumb items.")));
412
- const breadcrumbsPickerBackground = registerColor("breadcrumbPicker.background", editorWidgetBackground, ( localize(2286, "Background color of breadcrumb item picker.")));
411
+ }, ( localize(2307, "Color of selected breadcrumb items.")));
412
+ const breadcrumbsPickerBackground = registerColor("breadcrumbPicker.background", editorWidgetBackground, ( localize(2308, "Background color of breadcrumb item picker.")));
413
413
  const headerTransparency = 0.5;
414
414
  const currentBaseColor = ( ( Color.fromHex("#40C8AE")).transparent(headerTransparency));
415
415
  const incomingBaseColor = ( ( Color.fromHex("#40A6FF")).transparent(headerTransparency));
@@ -422,11 +422,11 @@ const mergeCurrentHeaderBackground = registerColor("merge.currentHeaderBackgroun
422
422
  hcDark: null,
423
423
  hcLight: null
424
424
  }, ( localize(
425
- 2287,
425
+ 2309,
426
426
  "Current header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
427
427
  )), true);
428
428
  registerColor("merge.currentContentBackground", ( transparent(mergeCurrentHeaderBackground, contentTransparency)), ( localize(
429
- 2288,
429
+ 2310,
430
430
  "Current content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
431
431
  )), true);
432
432
  const mergeIncomingHeaderBackground = registerColor("merge.incomingHeaderBackground", {
@@ -435,11 +435,11 @@ const mergeIncomingHeaderBackground = registerColor("merge.incomingHeaderBackgro
435
435
  hcDark: null,
436
436
  hcLight: null
437
437
  }, ( localize(
438
- 2289,
438
+ 2311,
439
439
  "Incoming header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
440
440
  )), true);
441
441
  registerColor("merge.incomingContentBackground", ( transparent(mergeIncomingHeaderBackground, contentTransparency)), ( localize(
442
- 2290,
442
+ 2312,
443
443
  "Incoming content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
444
444
  )), true);
445
445
  const mergeCommonHeaderBackground = registerColor("merge.commonHeaderBackground", {
@@ -448,11 +448,11 @@ const mergeCommonHeaderBackground = registerColor("merge.commonHeaderBackground"
448
448
  hcDark: null,
449
449
  hcLight: null
450
450
  }, ( localize(
451
- 2291,
451
+ 2313,
452
452
  "Common ancestor header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
453
453
  )), true);
454
454
  registerColor("merge.commonContentBackground", ( transparent(mergeCommonHeaderBackground, contentTransparency)), ( localize(
455
- 2292,
455
+ 2314,
456
456
  "Common ancestor content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations."
457
457
  )), true);
458
458
  const mergeBorder = registerColor("merge.border", {
@@ -461,7 +461,7 @@ const mergeBorder = registerColor("merge.border", {
461
461
  hcDark: "#C3DF6F",
462
462
  hcLight: "#007ACC"
463
463
  }, ( localize(
464
- 2293,
464
+ 2315,
465
465
  "Border color on headers and the splitter in inline merge-conflicts."
466
466
  )));
467
467
  registerColor("editorOverviewRuler.currentContentForeground", {
@@ -469,20 +469,20 @@ registerColor("editorOverviewRuler.currentContentForeground", {
469
469
  light: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)),
470
470
  hcDark: mergeBorder,
471
471
  hcLight: mergeBorder
472
- }, ( localize(2294, "Current overview ruler foreground for inline merge-conflicts.")));
472
+ }, ( localize(2316, "Current overview ruler foreground for inline merge-conflicts.")));
473
473
  registerColor("editorOverviewRuler.incomingContentForeground", {
474
474
  dark: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)),
475
475
  light: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)),
476
476
  hcDark: mergeBorder,
477
477
  hcLight: mergeBorder
478
- }, ( localize(2295, "Incoming overview ruler foreground for inline merge-conflicts.")));
478
+ }, ( localize(2317, "Incoming overview ruler foreground for inline merge-conflicts.")));
479
479
  registerColor("editorOverviewRuler.commonContentForeground", {
480
480
  dark: ( transparent(mergeCommonHeaderBackground, rulerTransparency)),
481
481
  light: ( transparent(mergeCommonHeaderBackground, rulerTransparency)),
482
482
  hcDark: mergeBorder,
483
483
  hcLight: mergeBorder
484
484
  }, ( localize(
485
- 2296,
485
+ 2318,
486
486
  "Common ancestor overview ruler foreground for inline merge-conflicts."
487
487
  )));
488
488
  const overviewRulerFindMatchForeground = registerColor("editorOverviewRuler.findMatchForeground", {
@@ -491,20 +491,20 @@ const overviewRulerFindMatchForeground = registerColor("editorOverviewRuler.find
491
491
  hcDark: "#AB5A00",
492
492
  hcLight: "#AB5A00"
493
493
  }, ( localize(
494
- 2297,
494
+ 2319,
495
495
  "Overview ruler marker color for find matches. The color must not be opaque so as not to hide underlying decorations."
496
496
  )), true);
497
497
  const overviewRulerSelectionHighlightForeground = registerColor(
498
498
  "editorOverviewRuler.selectionHighlightForeground",
499
499
  "#A0A0A0CC",
500
500
  ( localize(
501
- 2298,
501
+ 2320,
502
502
  "Overview ruler marker color for selection highlights. The color must not be opaque so as not to hide underlying decorations."
503
503
  )),
504
504
  true
505
505
  );
506
- const problemsErrorIconForeground = registerColor("problemsErrorIcon.foreground", editorErrorForeground, ( localize(2299, "The color used for the problems error icon.")));
507
- const problemsWarningIconForeground = registerColor("problemsWarningIcon.foreground", editorWarningForeground, ( localize(2300, "The color used for the problems warning icon.")));
508
- const problemsInfoIconForeground = registerColor("problemsInfoIcon.foreground", editorInfoForeground, ( localize(2301, "The color used for the problems info icon.")));
506
+ const problemsErrorIconForeground = registerColor("problemsErrorIcon.foreground", editorErrorForeground, ( localize(2321, "The color used for the problems error icon.")));
507
+ const problemsWarningIconForeground = registerColor("problemsWarningIcon.foreground", editorWarningForeground, ( localize(2322, "The color used for the problems warning icon.")));
508
+ const problemsInfoIconForeground = registerColor("problemsInfoIcon.foreground", editorInfoForeground, ( localize(2323, "The color used for the problems info icon.")));
509
509
 
510
510
  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, 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 };