@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
@@ -123,7 +123,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
123
123
  proxyConfiguration = [{
124
124
  id: "http",
125
125
  order: 15,
126
- title: ( localize(2104, "HTTP")),
126
+ title: ( localize(2126, "HTTP")),
127
127
  type: "object",
128
128
  scope: ConfigurationScope.MACHINE,
129
129
  properties: {
@@ -131,7 +131,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
131
131
  type: "boolean",
132
132
  default: useHostProxyDefault,
133
133
  markdownDescription: ( localize(
134
- 2105,
134
+ 2127,
135
135
  "Controls whether in the remote extension host the local proxy configuration should be used. This setting only applies as a remote setting during [remote development](https://aka.ms/vscode-remote)."
136
136
  )),
137
137
  restricted: true
@@ -140,7 +140,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
140
140
  }, {
141
141
  id: "http",
142
142
  order: 15,
143
- title: ( localize(2104, "HTTP")),
143
+ title: ( localize(2126, "HTTP")),
144
144
  type: "object",
145
145
  scope: ConfigurationScope.APPLICATION,
146
146
  properties: {
@@ -148,7 +148,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
148
148
  type: "boolean",
149
149
  default: false,
150
150
  description: ( localize(
151
- 2106,
151
+ 2128,
152
152
  "Controls whether use of Electron's fetch implementation instead of Node.js' should be enabled. All local extensions will get Electron's fetch implementation for the global fetch API."
153
153
  )),
154
154
  restricted: true
@@ -157,7 +157,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
157
157
  }, {
158
158
  id: "http",
159
159
  order: 15,
160
- title: ( localize(2104, "HTTP")),
160
+ title: ( localize(2126, "HTTP")),
161
161
  type: "object",
162
162
  scope: useHostProxy ? ConfigurationScope.APPLICATION : ConfigurationScope.MACHINE,
163
163
  properties: {
@@ -165,7 +165,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
165
165
  type: "string",
166
166
  pattern: "^(https?|socks|socks4a?|socks5h?)://([^:]*(:[^@]*)?@)?([^:]+|\\[[:0-9a-fA-F]+\\])(:\\d+)?/?$|^$",
167
167
  markdownDescription: ( localize(
168
- 2107,
168
+ 2129,
169
169
  "The proxy setting to use. If not set, will be inherited from the `http_proxy` and `https_proxy` environment variables. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
170
170
  "`#http.useLocalProxyConfiguration#`"
171
171
  )),
@@ -175,7 +175,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
175
175
  type: "boolean",
176
176
  default: true,
177
177
  markdownDescription: ( localize(
178
- 2108,
178
+ 2130,
179
179
  "Controls whether the proxy server certificate should be verified against the list of supplied CAs. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
180
180
  "`#http.useLocalProxyConfiguration#`"
181
181
  )),
@@ -184,7 +184,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
184
184
  "http.proxyKerberosServicePrincipal": {
185
185
  type: "string",
186
186
  markdownDescription: ( localize(
187
- 2109,
187
+ 2131,
188
188
  "Overrides the principal service name for Kerberos authentication with the HTTP proxy. A default based on the proxy hostname is used when this is not set. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
189
189
  "`#http.useLocalProxyConfiguration#`"
190
190
  )),
@@ -196,7 +196,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
196
196
  type: "string"
197
197
  },
198
198
  markdownDescription: ( localize(
199
- 2110,
199
+ 2132,
200
200
  "Specifies domain names for which proxy settings should be ignored for HTTP/HTTPS requests. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
201
201
  "`#http.useLocalProxyConfiguration#`"
202
202
  )),
@@ -206,7 +206,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
206
206
  type: ["null", "string"],
207
207
  default: null,
208
208
  markdownDescription: ( localize(
209
- 2111,
209
+ 2133,
210
210
  "The value to send as the `Proxy-Authorization` header for every network request. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
211
211
  "`#http.useLocalProxyConfiguration#`"
212
212
  )),
@@ -215,13 +215,13 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
215
215
  "http.proxySupport": {
216
216
  type: "string",
217
217
  enum: ["off", "on", "fallback", "override"],
218
- enumDescriptions: [( localize(2112, "Disable proxy support for extensions.")), ( localize(2113, "Enable proxy support for extensions.")), ( localize(
219
- 2114,
218
+ enumDescriptions: [( localize(2134, "Disable proxy support for extensions.")), ( localize(2135, "Enable proxy support for extensions.")), ( localize(
219
+ 2136,
220
220
  "Enable proxy support for extensions, fall back to request options, when no proxy found."
221
- )), ( localize(2115, "Enable proxy support for extensions, override request options."))],
221
+ )), ( localize(2137, "Enable proxy support for extensions, override request options."))],
222
222
  default: "override",
223
223
  markdownDescription: ( localize(
224
- 2116,
224
+ 2138,
225
225
  "Use the proxy support for extensions. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
226
226
  "`#http.useLocalProxyConfiguration#`"
227
227
  )),
@@ -231,7 +231,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
231
231
  type: "boolean",
232
232
  default: true,
233
233
  markdownDescription: ( localize(
234
- 2117,
234
+ 2139,
235
235
  "Controls whether CA certificates should be loaded from the OS. On Windows and macOS, a reload of the window is required after turning this off. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
236
236
  "`#http.useLocalProxyConfiguration#`"
237
237
  )),
@@ -242,7 +242,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
242
242
  tags: ["experimental"],
243
243
  default: systemCertificatesNodeDefault,
244
244
  markdownDescription: ( localize(
245
- 2118,
245
+ 2140,
246
246
  "Controls whether system certificates should be loaded using Node.js built-in support. Reload the window after changing this setting. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
247
247
  "`#http.useLocalProxyConfiguration#`"
248
248
  )),
@@ -256,7 +256,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
256
256
  tags: ["experimental"],
257
257
  default: false,
258
258
  markdownDescription: ( localize(
259
- 2119,
259
+ 2141,
260
260
  "Controls whether experimental loading of CA certificates from the OS should be enabled. This uses a more general approach than the default implementation. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
261
261
  "`#http.useLocalProxyConfiguration#`"
262
262
  )),
@@ -266,7 +266,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
266
266
  type: "boolean",
267
267
  default: true,
268
268
  markdownDescription: ( localize(
269
- 2120,
269
+ 2142,
270
270
  "Controls whether Node.js' fetch implementation should be extended with additional support. Currently proxy support ({1}) and system certificates ({2}) are added when the corresponding settings are enabled. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
271
271
  "`#http.useLocalProxyConfiguration#`",
272
272
  "`#http.proxySupport#`",
@@ -278,7 +278,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
278
278
  type: "boolean",
279
279
  default: true,
280
280
  markdownDescription: ( localize(
281
- 2121,
281
+ 2143,
282
282
  "Controls whether the built-in WebSocket implementation should be extended with additional support. Currently proxy support ({1}) and system certificates ({2}) are added when the corresponding settings are enabled. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
283
283
  "`#http.useLocalProxyConfiguration#`",
284
284
  "`#http.proxySupport#`",
@@ -292,7 +292,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
292
292
  minimum: -1,
293
293
  tags: ["experimental"],
294
294
  markdownDescription: ( localize(
295
- 2122,
295
+ 2144,
296
296
  "Controls the interval in seconds for checking network interface changes to invalidate the proxy cache. Set to -1 to disable. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
297
297
  "`#http.useLocalProxyConfiguration#`"
298
298
  )),
@@ -1,5 +1,8 @@
1
1
 
2
2
 
3
+ function telemetryLevelEnabled(service, level) {
4
+ return service.telemetryLevel >= level;
5
+ }
3
6
  function escapeModelIdForTelemetry(modelId) {
4
7
  return modelId?.replace(/[\/\\]/g, '|');
5
8
  }
@@ -25,4 +28,4 @@ var TelemetryConfiguration;
25
28
  TelemetryConfiguration["ON"] = "all";
26
29
  })(TelemetryConfiguration || (TelemetryConfiguration = {}));
27
30
 
28
- export { TELEMETRY_CRASH_REPORTER_SETTING_ID, TELEMETRY_OLD_SETTING_ID, TELEMETRY_SECTION_ID, TELEMETRY_SETTING_ID, TelemetryConfiguration, TelemetryLevel, escapeModelIdForTelemetry, firstSessionDateStorageKey, lastSessionDateStorageKey, machineIdKey };
31
+ export { TELEMETRY_CRASH_REPORTER_SETTING_ID, TELEMETRY_OLD_SETTING_ID, TELEMETRY_SECTION_ID, TELEMETRY_SETTING_ID, TelemetryConfiguration, TelemetryLevel, escapeModelIdForTelemetry, firstSessionDateStorageKey, lastSessionDateStorageKey, machineIdKey, telemetryLevelEnabled };
@@ -37,7 +37,7 @@ class NullEndpointTelemetryService {
37
37
  const telemetryLogId = "telemetry";
38
38
  const TelemetryLogGroup = {
39
39
  id: telemetryLogId,
40
- name: ( localize(2143, "Telemetry"))
40
+ name: ( localize(2165, "Telemetry"))
41
41
  };
42
42
  function supportsTelemetry(productService, environmentService) {
43
43
  if (!environmentService.isBuilt && !environmentService.disableTelemetry) {
@@ -28,23 +28,23 @@ const terminalIconSchema = {
28
28
  };
29
29
  const terminalProfileBaseProperties = {
30
30
  args: {
31
- description: ( localize(2145, "An optional set of arguments to run the shell executable with.")),
31
+ description: ( localize(2167, "An optional set of arguments to run the shell executable with.")),
32
32
  type: "array",
33
33
  items: {
34
34
  type: "string"
35
35
  }
36
36
  },
37
37
  icon: {
38
- description: ( localize(2146, "A codicon ID to associate with the terminal icon.")),
38
+ description: ( localize(2168, "A codicon ID to associate with the terminal icon.")),
39
39
  ...terminalIconSchema
40
40
  },
41
41
  color: {
42
- description: ( localize(2147, "A theme color ID to associate with the terminal icon.")),
42
+ description: ( localize(2169, "A theme color ID to associate with the terminal icon.")),
43
43
  ...terminalColorSchema
44
44
  },
45
45
  env: {
46
46
  markdownDescription: ( localize(
47
- 2148,
47
+ 2170,
48
48
  "An object with environment variables that will be added to the terminal profile process. Set to `null` to delete environment variables from the base environment."
49
49
  )),
50
50
  type: "object",
@@ -60,7 +60,7 @@ const terminalProfileSchema = {
60
60
  properties: {
61
61
  path: {
62
62
  description: ( localize(
63
- 2149,
63
+ 2171,
64
64
  "A single path to a shell executable or an array of paths that will be used as fallbacks when one fails."
65
65
  )),
66
66
  type: ["string", "array"],
@@ -70,7 +70,7 @@ const terminalProfileSchema = {
70
70
  },
71
71
  overrideName: {
72
72
  description: ( localize(
73
- 2150,
73
+ 2172,
74
74
  "Whether or not to replace the dynamic terminal title that detects what program is running with the static profile name."
75
75
  )),
76
76
  type: "boolean"
@@ -83,7 +83,7 @@ const terminalAutomationProfileSchema = {
83
83
  required: ["path"],
84
84
  properties: {
85
85
  path: {
86
- description: ( localize(2151, "A path to a shell executable.")),
86
+ description: ( localize(2173, "A path to a shell executable.")),
87
87
  type: ["string"],
88
88
  items: {
89
89
  type: "string"
@@ -95,7 +95,7 @@ const terminalAutomationProfileSchema = {
95
95
  function createTerminalProfileMarkdownDescription(platform) {
96
96
  const key = platform === Platform.Linux ? "linux" : platform === Platform.Mac ? "osx" : "windows";
97
97
  return localize(
98
- 2152,
98
+ 2174,
99
99
  "A set of terminal profile customizations for {0} which allows adding, removing or changing how terminals are launched. Profiles are made up of a mandatory path, optional arguments and other presentation options.\n\nTo override an existing profile use its profile name as the key, for example:\n\n{1}\n\n{2}Read more about configuring profiles{3}.",
100
100
  PlatformToString(platform),
101
101
  "```json\n\"terminal.integrated.profile." + key + "\": {\n \"bash\": null\n}\n```",
@@ -106,13 +106,13 @@ function createTerminalProfileMarkdownDescription(platform) {
106
106
  const terminalPlatformConfiguration = {
107
107
  id: "terminal",
108
108
  order: 100,
109
- title: ( localize(2153, "Integrated Terminal")),
109
+ title: ( localize(2175, "Integrated Terminal")),
110
110
  type: "object",
111
111
  properties: {
112
112
  [TerminalSettingId.AutomationProfileLinux]: {
113
113
  restricted: true,
114
114
  markdownDescription: ( localize(
115
- 2154,
115
+ 2176,
116
116
  "The terminal profile to use on Linux for automation-related terminal usage like tasks and debug."
117
117
  )),
118
118
  type: ["object", "null"],
@@ -130,7 +130,7 @@ const terminalPlatformConfiguration = {
130
130
  [TerminalSettingId.AutomationProfileMacOs]: {
131
131
  restricted: true,
132
132
  markdownDescription: ( localize(
133
- 2155,
133
+ 2177,
134
134
  "The terminal profile to use on macOS for automation-related terminal usage like tasks and debug."
135
135
  )),
136
136
  type: ["object", "null"],
@@ -148,7 +148,7 @@ const terminalPlatformConfiguration = {
148
148
  [TerminalSettingId.AutomationProfileWindows]: {
149
149
  restricted: true,
150
150
  markdownDescription: ( localize(
151
- 2156,
151
+ 2178,
152
152
  "The terminal profile to use for automation-related terminal usage like tasks and debug. This setting will currently be ignored if {0} (now deprecated) is set.",
153
153
  "`terminal.integrated.automationShell.windows`"
154
154
  )),
@@ -167,7 +167,7 @@ const terminalPlatformConfiguration = {
167
167
  [TerminalSettingId.AgentHostProfileLinux]: {
168
168
  restricted: true,
169
169
  markdownDescription: ( localize(
170
- 2157,
170
+ 2179,
171
171
  "The terminal profile to use on Linux for agent host terminals, including shells launched by AI agent tools. Accepts either a profile name from {0} or an inline profile object. When unset, falls back to {1}. Currently applies to the local agent host. Only the executable `path` is honored today; `args` and `env` from the profile are ignored. Remote agent hosts need remote-side shell configuration because local resolved paths may be invalid on the remote.",
172
172
  "`#terminal.integrated.profiles.linux#`",
173
173
  "`#terminal.integrated.defaultProfile.linux#`"
@@ -189,7 +189,7 @@ const terminalPlatformConfiguration = {
189
189
  [TerminalSettingId.AgentHostProfileMacOs]: {
190
190
  restricted: true,
191
191
  markdownDescription: ( localize(
192
- 2158,
192
+ 2180,
193
193
  "The terminal profile to use on macOS for agent host terminals, including shells launched by AI agent tools. Accepts either a profile name from {0} or an inline profile object. When unset, falls back to {1}. Currently applies to the local agent host. Only the executable `path` is honored today; `args` and `env` from the profile are ignored. Remote agent hosts need remote-side shell configuration because local resolved paths may be invalid on the remote.",
194
194
  "`#terminal.integrated.profiles.osx#`",
195
195
  "`#terminal.integrated.defaultProfile.osx#`"
@@ -211,7 +211,7 @@ const terminalPlatformConfiguration = {
211
211
  [TerminalSettingId.AgentHostProfileWindows]: {
212
212
  restricted: true,
213
213
  markdownDescription: ( localize(
214
- 2159,
214
+ 2181,
215
215
  "The terminal profile to use on Windows for agent host terminals, including shells launched by AI agent tools. Accepts either a profile name from {0} or an inline profile object. When unset, falls back to {1}. Currently applies to the local agent host. Only the executable `path` is honored today; `args` and `env` from the profile are ignored. Remote agent hosts need remote-side shell configuration because local resolved paths may be invalid on the remote.",
216
216
  "`#terminal.integrated.profiles.windows#`",
217
217
  "`#terminal.integrated.defaultProfile.windows#`"
@@ -256,7 +256,7 @@ const terminalPlatformConfiguration = {
256
256
  properties: {
257
257
  source: {
258
258
  description: ( localize(
259
- 2160,
259
+ 2182,
260
260
  "A profile source that will auto detect the paths to the shell. Note that non-standard executable locations are not supported and must be created manually in a new profile."
261
261
  )),
262
262
  enum: ["PowerShell", "Git Bash"]
@@ -268,15 +268,15 @@ const terminalPlatformConfiguration = {
268
268
  required: ["extensionIdentifier", "id", "title"],
269
269
  properties: {
270
270
  extensionIdentifier: {
271
- description: ( localize(2161, "The extension that contributed this profile.")),
271
+ description: ( localize(2183, "The extension that contributed this profile.")),
272
272
  type: "string"
273
273
  },
274
274
  id: {
275
- description: ( localize(2162, "The id of the extension terminal")),
275
+ description: ( localize(2184, "The id of the extension terminal")),
276
276
  type: "string"
277
277
  },
278
278
  title: {
279
- description: ( localize(2163, "The name of the extension terminal")),
279
+ description: ( localize(2185, "The name of the extension terminal")),
280
280
  type: "string"
281
281
  },
282
282
  ...terminalProfileBaseProperties
@@ -319,15 +319,15 @@ const terminalPlatformConfiguration = {
319
319
  required: ["extensionIdentifier", "id", "title"],
320
320
  properties: {
321
321
  extensionIdentifier: {
322
- description: ( localize(2164, "The extension that contributed this profile.")),
322
+ description: ( localize(2186, "The extension that contributed this profile.")),
323
323
  type: "string"
324
324
  },
325
325
  id: {
326
- description: ( localize(2165, "The id of the extension terminal")),
326
+ description: ( localize(2187, "The id of the extension terminal")),
327
327
  type: "string"
328
328
  },
329
329
  title: {
330
- description: ( localize(2166, "The name of the extension terminal")),
330
+ description: ( localize(2188, "The name of the extension terminal")),
331
331
  type: "string"
332
332
  },
333
333
  ...terminalProfileBaseProperties
@@ -367,15 +367,15 @@ const terminalPlatformConfiguration = {
367
367
  required: ["extensionIdentifier", "id", "title"],
368
368
  properties: {
369
369
  extensionIdentifier: {
370
- description: ( localize(2167, "The extension that contributed this profile.")),
370
+ description: ( localize(2189, "The extension that contributed this profile.")),
371
371
  type: "string"
372
372
  },
373
373
  id: {
374
- description: ( localize(2168, "The id of the extension terminal")),
374
+ description: ( localize(2190, "The id of the extension terminal")),
375
375
  type: "string"
376
376
  },
377
377
  title: {
378
- description: ( localize(2169, "The name of the extension terminal")),
378
+ description: ( localize(2191, "The name of the extension terminal")),
379
379
  type: "string"
380
380
  },
381
381
  ...terminalProfileBaseProperties
@@ -387,7 +387,7 @@ const terminalPlatformConfiguration = {
387
387
  },
388
388
  [TerminalSettingId.UseWslProfiles]: {
389
389
  description: ( localize(
390
- 2170,
390
+ 2192,
391
391
  "Controls whether or not WSL distros are shown in the terminal dropdown"
392
392
  )),
393
393
  type: "boolean",
@@ -396,7 +396,7 @@ const terminalPlatformConfiguration = {
396
396
  [TerminalSettingId.InheritEnv]: {
397
397
  scope: ConfigurationScope.APPLICATION,
398
398
  description: ( localize(
399
- 2171,
399
+ 2193,
400
400
  "Whether new shells should inherit their environment from VS Code, which may source a login shell to ensure $PATH and other development variables are initialized. This has no effect on Windows."
401
401
  )),
402
402
  type: "boolean",
@@ -405,7 +405,7 @@ const terminalPlatformConfiguration = {
405
405
  [TerminalSettingId.PersistentSessionScrollback]: {
406
406
  scope: ConfigurationScope.APPLICATION,
407
407
  markdownDescription: ( localize(
408
- 2172,
408
+ 2194,
409
409
  "Controls the maximum amount of lines that will be restored when reconnecting to a persistent terminal session. Increasing this will restore more lines of scrollback at the cost of more memory and increase the time it takes to connect to terminals on start up. This setting requires a restart to take effect and should be set to a value less than or equal to `#terminal.integrated.scrollback#`."
410
410
  )),
411
411
  type: "number",
@@ -413,13 +413,13 @@ const terminalPlatformConfiguration = {
413
413
  },
414
414
  [TerminalSettingId.ShowLinkHover]: {
415
415
  scope: ConfigurationScope.APPLICATION,
416
- description: ( localize(2173, "Whether to show hovers for links in the terminal output.")),
416
+ description: ( localize(2195, "Whether to show hovers for links in the terminal output.")),
417
417
  type: "boolean",
418
418
  default: true
419
419
  },
420
420
  [TerminalSettingId.IgnoreProcessNames]: {
421
421
  markdownDescription: ( localize(
422
- 2174,
422
+ 2196,
423
423
  "A set of process names to ignore when using the {0} setting.",
424
424
  "`#terminal.integrated.confirmOnKill#`"
425
425
  )),
@@ -449,12 +449,12 @@ function registerTerminalDefaultProfileConfiguration(detectedProfiles, extension
449
449
  defaultProfilesConfiguration = {
450
450
  id: "terminal",
451
451
  order: 100,
452
- title: ( localize(2153, "Integrated Terminal")),
452
+ title: ( localize(2175, "Integrated Terminal")),
453
453
  type: "object",
454
454
  properties: {
455
455
  [TerminalSettingId.DefaultProfileLinux]: {
456
456
  restricted: true,
457
- markdownDescription: ( localize(2175, "The default terminal profile on Linux.")),
457
+ markdownDescription: ( localize(2197, "The default terminal profile on Linux.")),
458
458
  type: ["string", "null"],
459
459
  default: null,
460
460
  enum: detectedProfiles?.os === OperatingSystem.Linux ? profileEnum?.values : undefined,
@@ -462,7 +462,7 @@ function registerTerminalDefaultProfileConfiguration(detectedProfiles, extension
462
462
  },
463
463
  [TerminalSettingId.DefaultProfileMacOs]: {
464
464
  restricted: true,
465
- markdownDescription: ( localize(2176, "The default terminal profile on macOS.")),
465
+ markdownDescription: ( localize(2198, "The default terminal profile on macOS.")),
466
466
  type: ["string", "null"],
467
467
  default: null,
468
468
  enum: detectedProfiles?.os === OperatingSystem.Macintosh ? profileEnum?.values : undefined,
@@ -470,7 +470,7 @@ function registerTerminalDefaultProfileConfiguration(detectedProfiles, extension
470
470
  },
471
471
  [TerminalSettingId.DefaultProfileWindows]: {
472
472
  restricted: true,
473
- markdownDescription: ( localize(2177, "The default terminal profile on Windows.")),
473
+ markdownDescription: ( localize(2199, "The default terminal profile on Windows.")),
474
474
  type: ["string", "null"],
475
475
  default: null,
476
476
  enum: detectedProfiles?.os === OperatingSystem.Windows ? profileEnum?.values : undefined,
@@ -8,7 +8,7 @@ import { isString, isObject } from '../../../base/common/types.js';
8
8
  function createProfileSchemaEnums(detectedProfiles, extensionProfiles) {
9
9
  const result = [{
10
10
  name: null,
11
- description: ( localize(2178, "Automatically detect the default"))
11
+ description: ( localize(2200, "Automatically detect the default"))
12
12
  }];
13
13
  result.push(...( detectedProfiles.map(e => {
14
14
  return {
@@ -81,14 +81,14 @@ class ColorRegistry extends Disposable {
81
81
  }
82
82
  if (needsTransparency) {
83
83
  propertySchema.pattern = "^#(?:(?<rgba>[0-9a-fA-f]{3}[0-9a-eA-E])|(?:[0-9a-fA-F]{6}(?:(?![fF]{2})(?:[0-9a-fA-F]{2}))))?$";
84
- propertySchema.patternErrorMessage = ( localize(2179, "This color must be transparent or it will obscure content"));
84
+ propertySchema.patternErrorMessage = ( localize(2201, "This color must be transparent or it will obscure content"));
85
85
  }
86
86
  this.colorSchema.properties[id] = {
87
87
  description,
88
88
  oneOf: [propertySchema, {
89
89
  type: "string",
90
90
  const: DEFAULT_COLOR_CONFIG_VALUE,
91
- description: ( localize(2180, "Use the default color."))
91
+ description: ( localize(2202, "Use the default color."))
92
92
  }]
93
93
  };
94
94
  this.colorReferenceSchema.enum.push(id);
@@ -9,7 +9,7 @@ const foreground = registerColor("foreground", {
9
9
  hcDark: "#FFFFFF",
10
10
  hcLight: "#292929"
11
11
  }, ( localize(
12
- 2181,
12
+ 2203,
13
13
  "Overall foreground color. This color is only used if not overridden by a component."
14
14
  )));
15
15
  registerColor("strongForeground", {
@@ -18,7 +18,7 @@ registerColor("strongForeground", {
18
18
  hcDark: "#FFFFFF",
19
19
  hcLight: "#000000"
20
20
  }, ( localize(
21
- 2182,
21
+ 2204,
22
22
  "Highest-contrast foreground color, intended for text or icons that need maximum legibility across various backgrounds. This color is only used if not overridden by a component."
23
23
  )));
24
24
  const disabledForeground = registerColor("disabledForeground", {
@@ -27,7 +27,7 @@ const disabledForeground = registerColor("disabledForeground", {
27
27
  hcDark: "#A5A5A5",
28
28
  hcLight: "#7F7F7F"
29
29
  }, ( localize(
30
- 2183,
30
+ 2205,
31
31
  "Overall foreground for disabled elements. This color is only used if not overridden by a component."
32
32
  )));
33
33
  const errorForeground = registerColor("errorForeground", {
@@ -36,7 +36,7 @@ const errorForeground = registerColor("errorForeground", {
36
36
  hcDark: "#F48771",
37
37
  hcLight: "#B5200D"
38
38
  }, ( localize(
39
- 2184,
39
+ 2206,
40
40
  "Overall foreground color for error messages. This color is only used if not overridden by a component."
41
41
  )));
42
42
  const descriptionForeground = registerColor("descriptionForeground", {
@@ -45,7 +45,7 @@ const descriptionForeground = registerColor("descriptionForeground", {
45
45
  hcDark: ( transparent(foreground, 0.7)),
46
46
  hcLight: ( transparent(foreground, 0.7))
47
47
  }, ( localize(
48
- 2185,
48
+ 2207,
49
49
  "Foreground color for description text providing additional information, for example for a label."
50
50
  )));
51
51
  const iconForeground = registerColor("icon.foreground", {
@@ -53,14 +53,14 @@ const iconForeground = registerColor("icon.foreground", {
53
53
  light: "#424242",
54
54
  hcDark: "#FFFFFF",
55
55
  hcLight: "#292929"
56
- }, ( localize(2186, "The default color for icons in the workbench.")));
56
+ }, ( localize(2208, "The default color for icons in the workbench.")));
57
57
  const focusBorder = registerColor("focusBorder", {
58
58
  dark: "#007FD4",
59
59
  light: "#0090F1",
60
60
  hcDark: "#F38518",
61
61
  hcLight: "#006BBD"
62
62
  }, ( localize(
63
- 2187,
63
+ 2209,
64
64
  "Overall border color for focused elements. This color is only used if not overridden by a component."
65
65
  )));
66
66
  const contrastBorder = registerColor("contrastBorder", {
@@ -69,7 +69,7 @@ const contrastBorder = registerColor("contrastBorder", {
69
69
  hcDark: "#6FC3DF",
70
70
  hcLight: "#0F4A85"
71
71
  }, ( localize(
72
- 2188,
72
+ 2210,
73
73
  "An extra border around elements to separate them from others for greater contrast."
74
74
  )));
75
75
  const activeContrastBorder = registerColor("contrastActiveBorder", {
@@ -78,11 +78,11 @@ const activeContrastBorder = registerColor("contrastActiveBorder", {
78
78
  hcDark: focusBorder,
79
79
  hcLight: focusBorder
80
80
  }, ( localize(
81
- 2189,
81
+ 2211,
82
82
  "An extra border around active elements to separate them from others for greater contrast."
83
83
  )));
84
84
  const selectionBackground = registerColor("selection.background", null, ( localize(
85
- 2190,
85
+ 2212,
86
86
  "The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor."
87
87
  )));
88
88
  const textLinkForeground = registerColor("textLink.foreground", {
@@ -90,14 +90,14 @@ const textLinkForeground = registerColor("textLink.foreground", {
90
90
  dark: "#3794FF",
91
91
  hcDark: "#21A6FF",
92
92
  hcLight: "#0F4A85"
93
- }, ( localize(2191, "Foreground color for links in text.")));
93
+ }, ( localize(2213, "Foreground color for links in text.")));
94
94
  const textLinkActiveForeground = registerColor("textLink.activeForeground", {
95
95
  light: "#006AB1",
96
96
  dark: "#3794FF",
97
97
  hcDark: "#21A6FF",
98
98
  hcLight: "#0F4A85"
99
99
  }, ( localize(
100
- 2192,
100
+ 2214,
101
101
  "Foreground color for links in text when clicked on and on mouse hover."
102
102
  )));
103
103
  registerColor("textSeparator.foreground", {
@@ -105,42 +105,42 @@ registerColor("textSeparator.foreground", {
105
105
  dark: "#ffffff2e",
106
106
  hcDark: Color.black,
107
107
  hcLight: "#292929"
108
- }, ( localize(2193, "Color for text separators.")));
108
+ }, ( localize(2215, "Color for text separators.")));
109
109
  registerColor("textPreformat.foreground", {
110
110
  light: "#A31515",
111
111
  dark: "#D7BA7D",
112
112
  hcDark: "#FFFFFF",
113
113
  hcLight: "#FFFFFF"
114
- }, ( localize(2194, "Foreground color for preformatted text segments.")));
114
+ }, ( localize(2216, "Foreground color for preformatted text segments.")));
115
115
  registerColor("textPreformat.background", {
116
116
  light: "#0000001A",
117
117
  dark: "#FFFFFF1A",
118
118
  hcDark: null,
119
119
  hcLight: "#09345f"
120
- }, ( localize(2195, "Background color for preformatted text segments.")));
120
+ }, ( localize(2217, "Background color for preformatted text segments.")));
121
121
  registerColor("textPreformat.border", {
122
122
  light: null,
123
123
  dark: null,
124
124
  hcDark: contrastBorder,
125
125
  hcLight: null
126
- }, ( localize(2196, "Border color for preformatted text segments.")));
126
+ }, ( localize(2218, "Border color for preformatted text segments.")));
127
127
  registerColor("textBlockQuote.background", {
128
128
  light: "#f2f2f2",
129
129
  dark: "#222222",
130
130
  hcDark: null,
131
131
  hcLight: "#F2F2F2"
132
- }, ( localize(2197, "Background color for block quotes in text.")));
132
+ }, ( localize(2219, "Background color for block quotes in text.")));
133
133
  registerColor("textBlockQuote.border", {
134
134
  light: "#007acc80",
135
135
  dark: "#007acc80",
136
136
  hcDark: Color.white,
137
137
  hcLight: "#292929"
138
- }, ( localize(2198, "Border color for block quotes in text.")));
138
+ }, ( localize(2220, "Border color for block quotes in text.")));
139
139
  registerColor("textCodeBlock.background", {
140
140
  light: "#dcdcdc66",
141
141
  dark: "#0a0a0a66",
142
142
  hcDark: Color.black,
143
143
  hcLight: "#F2F2F2"
144
- }, ( localize(2199, "Background color for code blocks in text.")));
144
+ }, ( localize(2221, "Background color for code blocks in text.")));
145
145
 
146
146
  export { activeContrastBorder, contrastBorder, descriptionForeground, disabledForeground, errorForeground, focusBorder, foreground, iconForeground, selectionBackground, textLinkActiveForeground, textLinkForeground };