@codingame/monaco-vscode-api 32.0.2 → 33.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (630) hide show
  1. package/missing-services.js +51 -7
  2. package/package.json +8 -8
  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/cellOperations.d.ts +26 -0
  439. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +746 -0
  440. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  441. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  442. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  443. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +13 -0
  444. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +300 -0
  445. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +8 -0
  446. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +55 -0
  447. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +273 -0
  448. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +1963 -0
  449. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +50 -0
  450. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +314 -0
  451. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +258 -0
  452. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +886 -0
  453. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +41 -0
  454. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +118 -0
  455. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +17 -0
  456. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +71 -0
  457. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +27 -0
  458. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +40 -0
  459. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +23 -0
  460. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +313 -0
  461. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +51 -0
  462. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +265 -0
  463. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +24 -0
  464. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +185 -0
  465. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +28 -0
  466. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +104 -0
  467. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +10 -0
  468. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +43 -0
  469. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +21 -0
  470. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +41 -0
  471. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +25 -0
  472. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +69 -0
  473. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +469 -0
  474. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +149 -0
  475. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +933 -0
  476. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +180 -0
  477. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +32 -0
  478. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +102 -0
  479. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +643 -0
  480. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +30 -0
  481. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +197 -0
  482. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +75 -0
  483. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +539 -0
  484. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +13 -0
  485. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +39 -0
  486. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  487. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  488. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  489. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  490. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  491. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  492. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  493. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  494. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  495. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  496. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  497. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  498. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  499. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  500. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  501. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  502. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  503. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +19 -0
  504. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +90 -0
  505. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +26 -0
  506. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +92 -0
  507. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  508. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.d.ts +1 -0
  509. package/vscode/src/vs/workbench/contrib/opener/browser/opener.contribution.js +44 -0
  510. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  511. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  512. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  513. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
  514. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  515. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  516. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  517. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  518. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  519. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  520. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  521. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  522. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  523. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  524. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  525. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  526. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  527. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  528. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  529. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  530. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  531. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  532. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
  533. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  534. package/vscode/src/vs/workbench/contrib/search/common/search.d.ts +2 -0
  535. package/vscode/src/vs/workbench/contrib/search/common/search.js +9 -1
  536. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  537. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  538. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  539. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  540. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  541. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  542. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  543. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +6 -6
  544. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  545. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  546. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  547. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  548. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  549. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  550. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
  551. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  552. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  553. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  554. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  555. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
  556. package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +9 -9
  557. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +2 -0
  558. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +104 -74
  559. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  560. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  561. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +2 -2
  562. package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
  563. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  564. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  565. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  566. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  567. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  568. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  569. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  570. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  571. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  572. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
  573. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  574. package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +14 -14
  575. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  576. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +2 -1
  577. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +14 -3
  578. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +31 -25
  579. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +15 -0
  580. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  581. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +11 -2
  582. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +65 -22
  583. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +2 -0
  584. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  585. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  586. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  587. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +15 -3
  588. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +19 -3
  589. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +2 -2
  590. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  591. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  592. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  593. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
  594. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  595. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  596. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  597. package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.js +1 -1
  598. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  599. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  600. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  601. package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
  602. package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
  603. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  604. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  605. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  606. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  607. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  608. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  609. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  610. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  611. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  612. package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +7 -0
  613. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  614. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  615. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  616. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
  617. package/vscode-dts/vscode.proposed.authIssuers.d.ts +14 -0
  618. package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +23 -3
  619. package/vscode-dts/vscode.proposed.chatProvider.d.ts +0 -9
  620. package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +5 -0
  621. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.d.ts +0 -7
  622. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputStateCache.service.js +0 -6
  623. package/vscode/src/vs/workbench/contrib/chat/common/tools/toolResultCompressor.d.ts +0 -39
  624. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.d.ts +0 -4
  625. package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +0 -9
  626. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.d.ts +0 -76
  627. package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +0 -470
  628. package/vscode/src/vs/workbench/contrib/extensions/browser/media/runtimeExtensionsEditor.css +0 -86
  629. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.d.ts +0 -15
  630. package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +0 -47
@@ -30,7 +30,7 @@ const registry = ( Registry.as(Extensions.Configuration));
30
30
  "workbench.externalBrowser": {
31
31
  type: "string",
32
32
  markdownDescription: ( localize(
33
- 3856,
33
+ 3878,
34
34
  "Configure the browser to use for opening http or https links externally. This can either be the name of the browser (`edge`, `chrome`, `firefox`) or an absolute path to the browser's executable. Will use the system default if not set."
35
35
  )),
36
36
  included: isNative,
@@ -39,12 +39,12 @@ const registry = ( Registry.as(Extensions.Configuration));
39
39
  "workbench.editor.titleScrollbarSizing": {
40
40
  type: "string",
41
41
  enum: ["default", "large"],
42
- enumDescriptions: [( localize(3857, "The default size.")), ( localize(
43
- 3858,
42
+ enumDescriptions: [( localize(3879, "The default size.")), ( localize(
43
+ 3880,
44
44
  "Increases the size, so it can be grabbed more easily with the mouse."
45
45
  ))],
46
46
  description: ( localize(
47
- 3859,
47
+ 3881,
48
48
  "Controls the height of the scrollbars used for tabs and breadcrumbs in the editor title area."
49
49
  )),
50
50
  default: "default"
@@ -52,9 +52,9 @@ const registry = ( Registry.as(Extensions.Configuration));
52
52
  "workbench.editor.titleScrollbarVisibility": {
53
53
  type: "string",
54
54
  enum: ["auto", "visible", "hidden"],
55
- enumDescriptions: [( localize(3860, "The horizontal scrollbar will be visible only when necessary.")), ( localize(3861, "The horizontal scrollbar will always be visible.")), ( localize(3862, "The horizontal scrollbar will always be hidden."))],
55
+ enumDescriptions: [( localize(3882, "The horizontal scrollbar will be visible only when necessary.")), ( localize(3883, "The horizontal scrollbar will always be visible.")), ( localize(3884, "The horizontal scrollbar will always be hidden."))],
56
56
  description: ( localize(
57
- 3863,
57
+ 3885,
58
58
  "Controls the visibility of the scrollbars used for tabs and breadcrumbs in the editor title area."
59
59
  )),
60
60
  default: "auto"
@@ -62,12 +62,12 @@ const registry = ( Registry.as(Extensions.Configuration));
62
62
  [LayoutSettings.EDITOR_TABS_MODE]: {
63
63
  "type": "string",
64
64
  "enum": [EditorTabsMode.MULTIPLE, EditorTabsMode.SINGLE, EditorTabsMode.NONE],
65
- "enumDescriptions": [( localize(3864, "Each editor is displayed as a tab in the editor title area.")), ( localize(
66
- 3865,
65
+ "enumDescriptions": [( localize(3886, "Each editor is displayed as a tab in the editor title area.")), ( localize(
66
+ 3887,
67
67
  "The active editor is displayed as a single large tab in the editor title area."
68
- )), ( localize(3866, "The editor title area is not displayed."))],
68
+ )), ( localize(3888, "The editor title area is not displayed."))],
69
69
  "description": ( localize(
70
- 3867,
70
+ 3889,
71
71
  "Controls whether opened editors should show as individual tabs, one single large tab or if the title area should not be shown."
72
72
  )),
73
73
  "default": "multiple"
@@ -80,17 +80,17 @@ const registry = ( Registry.as(Extensions.Configuration));
80
80
  EditorActionsLocation.HIDDEN
81
81
  ],
82
82
  "markdownEnumDescriptions": [( localize(
83
- 3868,
83
+ 3890,
84
84
  "Show editor actions in the window title bar when {0} is set to {1}. Otherwise, editor actions are shown in the editor tab bar.",
85
85
  "`#workbench.editor.showTabs#`",
86
86
  "`none`"
87
87
  )), ( localize(
88
- 3869,
88
+ 3891,
89
89
  "Show editor actions in the window title bar. If {0} is set to {1}, editor actions are hidden.",
90
90
  "`#window.customTitleBarVisibility#`",
91
91
  "`never`"
92
- )), ( localize(3870, "Editor actions are not shown."))],
93
- "markdownDescription": ( localize(3871, "Controls where the editor actions are shown.")),
92
+ )), ( localize(3892, "Editor actions are not shown."))],
93
+ "markdownDescription": ( localize(3893, "Controls where the editor actions are shown.")),
94
94
  "default": "default",
95
95
  agentsWindow: {
96
96
  default: "default",
@@ -100,7 +100,7 @@ const registry = ( Registry.as(Extensions.Configuration));
100
100
  "workbench.editor.alwaysShowEditorActions": {
101
101
  "type": "boolean",
102
102
  "markdownDescription": ( localize(
103
- 3872,
103
+ 3894,
104
104
  "Controls whether to always show the editor actions, even when the editor group is not active."
105
105
  )),
106
106
  "default": false
@@ -108,7 +108,7 @@ const registry = ( Registry.as(Extensions.Configuration));
108
108
  "workbench.editor.wrapTabs": {
109
109
  "type": "boolean",
110
110
  "markdownDescription": ( localize(
111
- 3873,
111
+ 3895,
112
112
  "Controls whether tabs should be wrapped over multiple lines when exceeding available space or whether a scrollbar should appear instead. This value is ignored when {0} is not set to '{1}'.",
113
113
  "`#workbench.editor.showTabs#`",
114
114
  "`multiple`"
@@ -118,7 +118,7 @@ const registry = ( Registry.as(Extensions.Configuration));
118
118
  "workbench.editor.scrollToSwitchTabs": {
119
119
  "type": "boolean",
120
120
  "markdownDescription": ( localize(
121
- 3874,
121
+ 3896,
122
122
  "Controls whether scrolling over tabs will open them or not. By default tabs will only reveal upon scrolling, but not open. You can press and hold the Shift-key while scrolling to change this behavior for that duration. This value is ignored when {0} is not set to {1}.",
123
123
  "`#workbench.editor.showTabs#`",
124
124
  "`multiple`"
@@ -128,7 +128,7 @@ const registry = ( Registry.as(Extensions.Configuration));
128
128
  "workbench.editor.highlightModifiedTabs": {
129
129
  "type": "boolean",
130
130
  "markdownDescription": ( localize(
131
- 3875,
131
+ 3897,
132
132
  "Controls whether a top border is drawn on tabs for editors that have unsaved changes. This value is ignored when {0} is not set to {1}.",
133
133
  "`#workbench.editor.showTabs#`",
134
134
  `multiple`
@@ -137,18 +137,18 @@ const registry = ( Registry.as(Extensions.Configuration));
137
137
  },
138
138
  "workbench.editor.decorations.badges": {
139
139
  "type": "boolean",
140
- "markdownDescription": ( localize(3876, "Controls whether editor file decorations should use badges.")),
140
+ "markdownDescription": ( localize(3898, "Controls whether editor file decorations should use badges.")),
141
141
  "default": true
142
142
  },
143
143
  "workbench.editor.decorations.colors": {
144
144
  "type": "boolean",
145
- "markdownDescription": ( localize(3877, "Controls whether editor file decorations should use colors.")),
145
+ "markdownDescription": ( localize(3899, "Controls whether editor file decorations should use colors.")),
146
146
  "default": true
147
147
  },
148
148
  [CustomEditorLabelService.SETTING_ID_ENABLED]: {
149
149
  "type": "boolean",
150
150
  "markdownDescription": ( localize(
151
- 3878,
151
+ 3900,
152
152
  "Controls whether the custom workbench editor labels should be applied."
153
153
  )),
154
154
  "default": true
@@ -157,27 +157,27 @@ const registry = ( Registry.as(Extensions.Configuration));
157
157
  "type": "object",
158
158
  "markdownDescription": (() => {
159
159
  let customEditorLabelDescription = ( localize(
160
- 3879,
160
+ 3901,
161
161
  "Controls the rendering of the editor label. Each __Item__ is a pattern that matches a file path. Both relative and absolute file paths are supported. The relative path must include the WORKSPACE_FOLDER (e.g `WORKSPACE_FOLDER/src/**.tsx` or `*/src/**.tsx`). Absolute patterns must start with a `/`. In case multiple patterns match, the longest matching path will be picked. Each __Value__ is the template for the rendered editor when the __Item__ matches. Variables are substituted based on the context:"
162
162
  ));
163
163
  customEditorLabelDescription += "\n- " + [( localize(
164
- 3880,
164
+ 3902,
165
165
  "`${dirname}`: name of the folder in which the file is located (e.g. `WORKSPACE_FOLDER/folder/file.txt -> folder`)."
166
166
  )), ( localize(
167
- 3881,
167
+ 3903,
168
168
  "`${dirname(N)}`: name of the nth parent folder in which the file is located (e.g. `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). Folders can be picked from the start of the path by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). If the __Item__ is an absolute pattern path, the first folder (`N=-1`) refers to the first folder in the absolute path, otherwise it corresponds to the workspace folder."
169
169
  )), ( localize(
170
- 3882,
170
+ 3904,
171
171
  "`${filename}`: name of the file without the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> file`)."
172
172
  )), ( localize(
173
- 3883,
173
+ 3905,
174
174
  "`${extname}`: the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> txt`)."
175
175
  )), ( localize(
176
- 3884,
176
+ 3906,
177
177
  "`${extname(N)}`: the nth extension of the file separated by '.' (e.g. `N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1`). Extension can be picked from the start of the extension by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`)."
178
178
  ))].join("\n- ");
179
179
  customEditorLabelDescription += "\n\n" + ( localize(
180
- 3885,
180
+ 3907,
181
181
  "Example: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` will render a file `WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)`."
182
182
  ));
183
183
  return customEditorLabelDescription;
@@ -185,7 +185,7 @@ const registry = ( Registry.as(Extensions.Configuration));
185
185
  additionalProperties: {
186
186
  type: ["string", "null"],
187
187
  markdownDescription: ( localize(
188
- 3886,
188
+ 3908,
189
189
  "The template which should be rendered when the pattern matches. May include the variables ${dirname}, ${filename} and ${extname}."
190
190
  )),
191
191
  minLength: 1,
@@ -197,34 +197,34 @@ const registry = ( Registry.as(Extensions.Configuration));
197
197
  "type": "string",
198
198
  "enum": ["default", "short", "medium", "long"],
199
199
  "enumDescriptions": [( localize(
200
- 3887,
200
+ 3909,
201
201
  "Show the name of the file. When tabs are enabled and two files have the same name in one group the distinguishing sections of each file's path are added. When tabs are disabled, the path relative to the workspace folder is shown if the editor is active."
202
- )), ( localize(3888, "Show the name of the file followed by its directory name.")), ( localize(
203
- 3889,
202
+ )), ( localize(3910, "Show the name of the file followed by its directory name.")), ( localize(
203
+ 3911,
204
204
  "Show the name of the file followed by its path relative to the workspace folder."
205
- )), ( localize(3890, "Show the name of the file followed by its absolute path."))],
205
+ )), ( localize(3912, "Show the name of the file followed by its absolute path."))],
206
206
  "default": "default",
207
- "description": ( localize(3891, "Controls the format of the label for an editor."))
207
+ "description": ( localize(3913, "Controls the format of the label for an editor."))
208
208
  },
209
209
  "workbench.editor.untitled.labelFormat": {
210
210
  "type": "string",
211
211
  "enum": ["content", "name"],
212
212
  "enumDescriptions": [( localize(
213
- 3892,
213
+ 3914,
214
214
  "The name of the untitled file is derived from the contents of its first line unless it has an associated file path. It will fallback to the name in case the line is empty or contains no word characters."
215
215
  )), ( localize(
216
- 3893,
216
+ 3915,
217
217
  "The name of the untitled file is not derived from the contents of the file."
218
218
  ))],
219
219
  "default": "content",
220
- "description": ( localize(3894, "Controls the format of the label for an untitled editor."))
220
+ "description": ( localize(3916, "Controls the format of the label for an untitled editor."))
221
221
  },
222
222
  "workbench.editor.empty.hint": {
223
223
  "type": "string",
224
224
  "enum": ["text", "hidden"],
225
225
  "default": "text",
226
226
  "markdownDescription": ( localize(
227
- 3895,
227
+ 3917,
228
228
  "Controls if the empty editor text hint should be visible in the editor."
229
229
  ))
230
230
  },
@@ -232,7 +232,7 @@ const registry = ( Registry.as(Extensions.Configuration));
232
232
  type: "boolean",
233
233
  default: true,
234
234
  description: ( localize(
235
- 3896,
235
+ 3918,
236
236
  "Controls whether the language in a text editor is automatically detected unless the language has been explicitly set by the language picker. This can also be scoped by language so you can specify which languages you do not want to be switched off of. This is useful for languages like Markdown that often contain other languages that might trick language detection into thinking it's the embedded language and not Markdown."
237
237
  )),
238
238
  scope: ConfigurationScope.LANGUAGE_OVERRIDABLE
@@ -241,7 +241,7 @@ const registry = ( Registry.as(Extensions.Configuration));
241
241
  type: "boolean",
242
242
  default: true,
243
243
  description: ( localize(
244
- 3897,
244
+ 3919,
245
245
  "Enables use of editor history in language detection. This causes automatic language detection to favor languages that have been recently opened and allows for automatic language detection to operate with smaller inputs."
246
246
  ))
247
247
  },
@@ -249,7 +249,7 @@ const registry = ( Registry.as(Extensions.Configuration));
249
249
  type: "boolean",
250
250
  default: false,
251
251
  description: ( localize(
252
- 3898,
252
+ 3920,
253
253
  "When enabled, a language detection model that takes into account editor history will be given higher precedence."
254
254
  ))
255
255
  },
@@ -260,18 +260,18 @@ const registry = ( Registry.as(Extensions.Configuration));
260
260
  "notebookEditors": true
261
261
  },
262
262
  description: ( localize(
263
- 3899,
263
+ 3921,
264
264
  "When enabled, shows a status bar Quick Fix when the editor language doesn't match detected content language."
265
265
  )),
266
266
  additionalProperties: false,
267
267
  properties: {
268
268
  untitledEditors: {
269
269
  type: "boolean",
270
- description: ( localize(3900, "Show in untitled text editors"))
270
+ description: ( localize(3922, "Show in untitled text editors"))
271
271
  },
272
272
  notebookEditors: {
273
273
  type: "boolean",
274
- description: ( localize(3901, "Show in notebook editors"))
274
+ description: ( localize(3923, "Show in notebook editors"))
275
275
  }
276
276
  }
277
277
  },
@@ -280,7 +280,7 @@ const registry = ( Registry.as(Extensions.Configuration));
280
280
  enum: ["left", "right"],
281
281
  default: "right",
282
282
  markdownDescription: ( localize(
283
- 3902,
283
+ 3924,
284
284
  "Controls the position of the editor's tabs action buttons (close, unpin). This value is ignored when {0} is not set to {1}.",
285
285
  "`#workbench.editor.showTabs#`",
286
286
  "`multiple`"
@@ -289,18 +289,18 @@ const registry = ( Registry.as(Extensions.Configuration));
289
289
  "workbench.editor.tabActionCloseVisibility": {
290
290
  type: "boolean",
291
291
  default: true,
292
- description: ( localize(3903, "Controls the visibility of the tab close action button."))
292
+ description: ( localize(3925, "Controls the visibility of the tab close action button."))
293
293
  },
294
294
  "workbench.editor.tabActionUnpinVisibility": {
295
295
  type: "boolean",
296
296
  default: true,
297
- description: ( localize(3904, "Controls the visibility of the tab unpin action button."))
297
+ description: ( localize(3926, "Controls the visibility of the tab unpin action button."))
298
298
  },
299
299
  "workbench.editor.showTabIndex": {
300
300
  "type": "boolean",
301
301
  "default": false,
302
302
  "markdownDescription": ( localize(
303
- 3905,
303
+ 3927,
304
304
  "When enabled, will show the tab index. This value is ignored when {0} is not set to {1}.",
305
305
  "`#workbench.editor.showTabs#`",
306
306
  "`multiple`"
@@ -310,15 +310,15 @@ const registry = ( Registry.as(Extensions.Configuration));
310
310
  "type": "string",
311
311
  "enum": ["fit", "shrink", "fixed"],
312
312
  "default": "fit",
313
- "enumDescriptions": [( localize(3906, "Always keep tabs large enough to show the full editor label.")), ( localize(
314
- 3907,
313
+ "enumDescriptions": [( localize(3928, "Always keep tabs large enough to show the full editor label.")), ( localize(
314
+ 3929,
315
315
  "Allow tabs to get smaller when the available space is not enough to show all tabs at once."
316
316
  )), ( localize(
317
- 3908,
317
+ 3930,
318
318
  "Make all tabs the same size, while allowing them to get smaller when the available space is not enough to show all tabs at once."
319
319
  ))],
320
320
  "markdownDescription": ( localize(
321
- 3909,
321
+ 3931,
322
322
  "Controls the size of editor tabs. This value is ignored when {0} is not set to {1}.",
323
323
  "`#workbench.editor.showTabs#`",
324
324
  "`multiple`"
@@ -329,7 +329,7 @@ const registry = ( Registry.as(Extensions.Configuration));
329
329
  "default": 50,
330
330
  "minimum": 38,
331
331
  "markdownDescription": ( localize(
332
- 3910,
332
+ 3932,
333
333
  "Controls the minimum width of tabs when {0} size is set to {1}.",
334
334
  "`#workbench.editor.tabSizing#`",
335
335
  "`fixed`"
@@ -340,7 +340,7 @@ const registry = ( Registry.as(Extensions.Configuration));
340
340
  "default": 160,
341
341
  "minimum": 38,
342
342
  "markdownDescription": ( localize(
343
- 3911,
343
+ 3933,
344
344
  "Controls the maximum width of tabs when {0} size is set to {1}.",
345
345
  "`#workbench.editor.tabSizing#`",
346
346
  "`fixed`"
@@ -351,7 +351,7 @@ const registry = ( Registry.as(Extensions.Configuration));
351
351
  "enum": ["default", "compact"],
352
352
  "default": "default",
353
353
  "markdownDescription": ( localize(
354
- 3912,
354
+ 3934,
355
355
  "Controls the height of editor tabs. Also applies to the title control bar when {0} is not set to {1}.",
356
356
  "`#workbench.editor.showTabs#`",
357
357
  "`multiple`"
@@ -361,15 +361,15 @@ const registry = ( Registry.as(Extensions.Configuration));
361
361
  "type": "string",
362
362
  "enum": ["normal", "compact", "shrink"],
363
363
  "default": "normal",
364
- "enumDescriptions": [( localize(3913, "A pinned tab inherits the look of non pinned tabs.")), ( localize(
365
- 3914,
364
+ "enumDescriptions": [( localize(3935, "A pinned tab inherits the look of non pinned tabs.")), ( localize(
365
+ 3936,
366
366
  "A pinned tab will show in a compact form with only icon or first letter of the editor name."
367
367
  )), ( localize(
368
- 3915,
368
+ 3937,
369
369
  "A pinned tab shrinks to a compact fixed size showing parts of the editor name."
370
370
  ))],
371
371
  "markdownDescription": ( localize(
372
- 3916,
372
+ 3938,
373
373
  "Controls the size of pinned editor tabs. Pinned tabs are sorted to the beginning of all opened tabs and typically do not close until unpinned. This value is ignored when {0} is not set to {1}.",
374
374
  "`#workbench.editor.showTabs#`",
375
375
  "`multiple`"
@@ -379,7 +379,7 @@ const registry = ( Registry.as(Extensions.Configuration));
379
379
  "type": "boolean",
380
380
  "default": false,
381
381
  "markdownDescription": ( localize(
382
- 3917,
382
+ 3939,
383
383
  "When enabled, displays pinned tabs in a separate row above all other tabs. This value is ignored when {0} is not set to {1}.",
384
384
  "`#workbench.editor.showTabs#`",
385
385
  "`multiple`"
@@ -390,11 +390,11 @@ const registry = ( Registry.as(Extensions.Configuration));
390
390
  "enum": ["keyboardAndMouse", "keyboard", "mouse", "never"],
391
391
  "default": "keyboardAndMouse",
392
392
  "enumDescriptions": [( localize(
393
- 3918,
393
+ 3940,
394
394
  "Always prevent closing the pinned editor when using mouse middle click or keyboard."
395
- )), ( localize(3919, "Prevent closing the pinned editor when using the keyboard.")), ( localize(3920, "Prevent closing the pinned editor when using mouse middle click.")), ( localize(3921, "Never prevent closing a pinned editor."))],
395
+ )), ( localize(3941, "Prevent closing the pinned editor when using the keyboard.")), ( localize(3942, "Prevent closing the pinned editor when using mouse middle click.")), ( localize(3943, "Never prevent closing a pinned editor."))],
396
396
  description: ( localize(
397
- 3922,
397
+ 3944,
398
398
  "Controls whether pinned editors should close when keyboard or middle mouse click is used for closing."
399
399
  ))
400
400
  },
@@ -403,17 +403,17 @@ const registry = ( Registry.as(Extensions.Configuration));
403
403
  "enum": ["auto", "distribute", "split"],
404
404
  "default": "auto",
405
405
  "enumDescriptions": [( localize(
406
- 3923,
406
+ 3945,
407
407
  "Splits the active editor group to equal parts, unless all editor groups are already in equal parts. In that case, splits all the editor groups to equal parts."
408
- )), ( localize(3924, "Splits all the editor groups to equal parts.")), ( localize(3925, "Splits the active editor group to equal parts."))],
409
- "description": ( localize(3926, "Controls the size of editor groups when splitting them.")),
408
+ )), ( localize(3946, "Splits all the editor groups to equal parts.")), ( localize(3947, "Splits the active editor group to equal parts."))],
409
+ "description": ( localize(3948, "Controls the size of editor groups when splitting them.")),
410
410
  "keywords": ["pane"]
411
411
  },
412
412
  "workbench.editor.splitOnDragAndDrop": {
413
413
  "type": "boolean",
414
414
  "default": true,
415
415
  "description": ( localize(
416
- 3927,
416
+ 3949,
417
417
  "Controls if editor groups can be split from drag and drop operations by dropping an editor or file on the edges of the editor area."
418
418
  )),
419
419
  "keywords": ["pane"]
@@ -422,14 +422,14 @@ const registry = ( Registry.as(Extensions.Configuration));
422
422
  "type": "boolean",
423
423
  "default": true,
424
424
  "markdownDescription": ( localize(
425
- 3928,
425
+ 3950,
426
426
  "Controls if editors can be dragged out of the window to open them in a new window. Press and hold the `Alt` key while dragging to toggle this dynamically."
427
427
  ))
428
428
  },
429
429
  "workbench.editor.focusRecentEditorAfterClose": {
430
430
  "type": "boolean",
431
431
  "description": ( localize(
432
- 3929,
432
+ 3951,
433
433
  "Controls whether editors are closed in most recently used order or from left to right."
434
434
  )),
435
435
  "default": true
@@ -437,7 +437,7 @@ const registry = ( Registry.as(Extensions.Configuration));
437
437
  "workbench.editor.showIcons": {
438
438
  "type": "boolean",
439
439
  "description": ( localize(
440
- 3930,
440
+ 3952,
441
441
  "Controls whether opened editors should show with an icon or not. This requires a file icon theme to be enabled as well."
442
442
  )),
443
443
  "default": true
@@ -445,7 +445,7 @@ const registry = ( Registry.as(Extensions.Configuration));
445
445
  "workbench.editor.enablePreview": {
446
446
  "type": "boolean",
447
447
  "description": ( localize(
448
- 3931,
448
+ 3953,
449
449
  "Controls whether preview mode is used when editors open. There is a maximum of one preview mode editor per editor group. This editor displays its filename in italics on its tab or title label and in the Open Editors view. Its contents will be replaced by the next editor opened in preview mode. Making a change in a preview mode editor will persist it, as will a double-click on its label, or the 'Keep Open' option in its label context menu. Opening a file from Explorer with a double-click persists its editor immediately."
450
450
  )),
451
451
  "default": true
@@ -453,7 +453,7 @@ const registry = ( Registry.as(Extensions.Configuration));
453
453
  "workbench.editor.enablePreviewFromQuickOpen": {
454
454
  "type": "boolean",
455
455
  "markdownDescription": ( localize(
456
- 3932,
456
+ 3954,
457
457
  "Controls whether editors opened from Quick Open show as preview editors. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). When enabled, hold Ctrl before selection to open an editor as a non-preview. This value is ignored when {0} is not set to {1}.",
458
458
  "`#workbench.editor.showTabs#`",
459
459
  "`multiple`"
@@ -463,7 +463,7 @@ const registry = ( Registry.as(Extensions.Configuration));
463
463
  "workbench.editor.enablePreviewFromCodeNavigation": {
464
464
  "type": "boolean",
465
465
  "markdownDescription": ( localize(
466
- 3933,
466
+ 3955,
467
467
  "Controls whether editors remain in preview when a code navigation is started from them. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). This value is ignored when {0} is not set to {1}.",
468
468
  "`#workbench.editor.showTabs#`",
469
469
  "`multiple`"
@@ -473,7 +473,7 @@ const registry = ( Registry.as(Extensions.Configuration));
473
473
  "workbench.editor.closeOnFileDelete": {
474
474
  "type": "boolean",
475
475
  "description": ( localize(
476
- 3934,
476
+ 3956,
477
477
  "Controls whether editors showing a file that was opened during the session should close automatically when getting deleted or renamed by some other process. Disabling this will keep the editor open on such an event. Note that deleting from within the application will always close the editor and that editors with unsaved changes will never close to preserve your data."
478
478
  )),
479
479
  "default": false
@@ -483,7 +483,7 @@ const registry = ( Registry.as(Extensions.Configuration));
483
483
  "enum": ["left", "right", "first", "last"],
484
484
  "default": "right",
485
485
  "markdownDescription": ( localize(
486
- 3935,
486
+ 3957,
487
487
  "Controls where editors open. Select {0} or {1} to open editors to the left or right of the currently active one. Select {2} or {3} to open editors independently from the currently active one.",
488
488
  "`left`",
489
489
  "`right`",
@@ -496,14 +496,14 @@ const registry = ( Registry.as(Extensions.Configuration));
496
496
  "enum": ["right", "down"],
497
497
  "default": "right",
498
498
  "markdownDescription": ( localize(
499
- 3936,
499
+ 3958,
500
500
  "Controls the default direction of editors that are opened side by side (for example, from the Explorer). By default, editors will open on the right hand side of the currently active one. If changed to `down`, the editors will open below the currently active one. This also impacts the split editor action in the editor toolbar."
501
501
  ))
502
502
  },
503
503
  "workbench.editor.closeEmptyGroups": {
504
504
  "type": "boolean",
505
505
  "description": ( localize(
506
- 3937,
506
+ 3959,
507
507
  "Controls the behavior of empty editor groups when the last tab in the group is closed. When enabled, empty groups will automatically close. When disabled, empty groups will remain part of the grid."
508
508
  )),
509
509
  "default": true,
@@ -512,7 +512,7 @@ const registry = ( Registry.as(Extensions.Configuration));
512
512
  "workbench.editor.revealIfOpen": {
513
513
  "type": "boolean",
514
514
  "description": ( localize(
515
- 3938,
515
+ 3960,
516
516
  "Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored, such as when forcing an editor to open in a specific group or to the side of the currently active group."
517
517
  )),
518
518
  "default": false
@@ -520,11 +520,11 @@ const registry = ( Registry.as(Extensions.Configuration));
520
520
  "workbench.editor.useModal": {
521
521
  "type": "string",
522
522
  "enum": ["off", "some", "all"],
523
- "enumDescriptions": [( localize(3939, "Editors never open in a modal overlay.")), ( localize(
524
- 3940,
523
+ "enumDescriptions": [( localize(3961, "Editors never open in a modal overlay.")), ( localize(
524
+ 3962,
525
525
  "Certain editors such as Settings and Keyboard Shortcuts may open in a centered modal overlay."
526
- )), ( localize(3941, "All editors open in a centered modal overlay."))],
527
- "description": ( localize(3942, "Controls whether editors open in a modal overlay.")),
526
+ )), ( localize(3963, "All editors open in a centered modal overlay."))],
527
+ "description": ( localize(3964, "Controls whether editors open in a modal overlay.")),
528
528
  "default": "some",
529
529
  agentsWindow: {
530
530
  default: "all"
@@ -533,7 +533,7 @@ const registry = ( Registry.as(Extensions.Configuration));
533
533
  "workbench.editor.swipeToNavigate": {
534
534
  "type": "boolean",
535
535
  "description": ( localize(
536
- 3943,
536
+ 3965,
537
537
  "Navigate between open files using three-finger swipe horizontally. Note that System Preferences > Trackpad > More Gestures > 'Swipe between pages' must be set to 'Swipe with two or three fingers'."
538
538
  )),
539
539
  "default": false,
@@ -542,7 +542,7 @@ const registry = ( Registry.as(Extensions.Configuration));
542
542
  "workbench.editor.mouseBackForwardToNavigate": {
543
543
  "type": "boolean",
544
544
  "description": ( localize(
545
- 3944,
545
+ 3966,
546
546
  "Enables the use of mouse buttons four and five for commands 'Go Back' and 'Go Forward'."
547
547
  )),
548
548
  "default": true
@@ -552,15 +552,15 @@ const registry = ( Registry.as(Extensions.Configuration));
552
552
  "enum": ["default", "editorGroup", "editor"],
553
553
  "default": "default",
554
554
  "markdownDescription": ( localize(
555
- 3945,
555
+ 3967,
556
556
  "Controls the scope of history navigation in editors for commands such as 'Go Back' and 'Go Forward'."
557
557
  )),
558
- "enumDescriptions": [( localize(3946, "Navigate across all opened editors and editor groups.")), ( localize(3947, "Navigate only in editors of the active editor group.")), ( localize(3948, "Navigate only in the active editor."))]
558
+ "enumDescriptions": [( localize(3968, "Navigate across all opened editors and editor groups.")), ( localize(3969, "Navigate only in editors of the active editor group.")), ( localize(3970, "Navigate only in the active editor."))]
559
559
  },
560
560
  "workbench.editor.restoreViewState": {
561
561
  "type": "boolean",
562
562
  "markdownDescription": ( localize(
563
- 3949,
563
+ 3971,
564
564
  "Restores the last editor view state (such as scroll position) when re-opening editors after they have been closed. Editor view state is stored per editor group and discarded when a group closes. Use the {0} setting to use the last known view state across all editor groups in case no previous view state was found for a editor group.",
565
565
  "`#workbench.editor.sharedViewState#`"
566
566
  )),
@@ -570,7 +570,7 @@ const registry = ( Registry.as(Extensions.Configuration));
570
570
  "workbench.editor.sharedViewState": {
571
571
  "type": "boolean",
572
572
  "description": ( localize(
573
- 3950,
573
+ 3972,
574
574
  "Preserves the most recent editor view state (such as scroll position) across all editor groups and restores that if no specific editor view state is found for the editor group."
575
575
  )),
576
576
  "default": false
@@ -578,7 +578,7 @@ const registry = ( Registry.as(Extensions.Configuration));
578
578
  "workbench.editor.restoreEditors": {
579
579
  "type": "boolean",
580
580
  "description": ( localize(
581
- 3951,
581
+ 3973,
582
582
  "Controls whether editors are restored on startup. When disabled, only dirty editors will be restored from the previous session."
583
583
  )),
584
584
  "default": true,
@@ -592,16 +592,16 @@ const registry = ( Registry.as(Extensions.Configuration));
592
592
  "enum": ["vertical", "horizontal"],
593
593
  "default": "horizontal",
594
594
  "markdownDescription": ( localize(
595
- 3952,
595
+ 3974,
596
596
  "Controls the layout for when an editor is split in an editor group to be either vertical or horizontal."
597
597
  )),
598
- "enumDescriptions": [( localize(3953, "Editors are positioned from top to bottom.")), ( localize(3954, "Editors are positioned from left to right."))]
598
+ "enumDescriptions": [( localize(3975, "Editors are positioned from top to bottom.")), ( localize(3976, "Editors are positioned from left to right."))]
599
599
  },
600
600
  "workbench.editor.centeredLayoutAutoResize": {
601
601
  "type": "boolean",
602
602
  "default": true,
603
603
  "description": ( localize(
604
- 3955,
604
+ 3977,
605
605
  "Controls if the centered layout should automatically resize to maximum width when more than one group is open. Once only one group is open it will resize back to the original centered width."
606
606
  ))
607
607
  },
@@ -609,7 +609,7 @@ const registry = ( Registry.as(Extensions.Configuration));
609
609
  "type": "boolean",
610
610
  "default": false,
611
611
  "description": ( localize(
612
- 3956,
612
+ 3978,
613
613
  "Controls whether the centered layout tries to maintain constant width when the window is resized."
614
614
  ))
615
615
  },
@@ -618,18 +618,18 @@ const registry = ( Registry.as(Extensions.Configuration));
618
618
  "enum": ["maximize", "expand", "off"],
619
619
  "default": "expand",
620
620
  "markdownDescription": ( localize(
621
- 3957,
621
+ 3979,
622
622
  "Controls how the editor group is resized when double clicking on a tab. This value is ignored when {0} is not set to {1}.",
623
623
  "`#workbench.editor.showTabs#`",
624
624
  "`multiple`"
625
625
  )),
626
626
  "enumDescriptions": [( localize(
627
- 3958,
627
+ 3980,
628
628
  "All other editor groups are hidden and the current editor group is maximized to take up the entire editor area."
629
629
  )), ( localize(
630
- 3959,
630
+ 3981,
631
631
  "The editor group takes as much space as possible by making all other editor groups as small as possible."
632
- )), ( localize(3960, "No editor group is resized when double clicking on a tab."))],
632
+ )), ( localize(3982, "No editor group is resized when double clicking on a tab."))],
633
633
  agentsWindow: {
634
634
  default: "maximize",
635
635
  readOnly: true
@@ -639,7 +639,7 @@ const registry = ( Registry.as(Extensions.Configuration));
639
639
  "type": "boolean",
640
640
  "default": false,
641
641
  "description": ( localize(
642
- 3961,
642
+ 3983,
643
643
  "Controls if the number of opened editors should be limited or not. When enabled, less recently used editors will close to make space for newly opening editors."
644
644
  ))
645
645
  },
@@ -648,7 +648,7 @@ const registry = ( Registry.as(Extensions.Configuration));
648
648
  "default": 10,
649
649
  "exclusiveMinimum": 0,
650
650
  "markdownDescription": ( localize(
651
- 3962,
651
+ 3984,
652
652
  "Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",
653
653
  "`#workbench.editor.limit.perEditorGroup#`"
654
654
  ))
@@ -657,7 +657,7 @@ const registry = ( Registry.as(Extensions.Configuration));
657
657
  "type": "boolean",
658
658
  "default": false,
659
659
  "description": ( localize(
660
- 3963,
660
+ 3985,
661
661
  "Controls if the maximum number of opened editors should exclude dirty editors for counting towards the configured limit."
662
662
  ))
663
663
  },
@@ -665,7 +665,7 @@ const registry = ( Registry.as(Extensions.Configuration));
665
665
  "type": "boolean",
666
666
  "default": false,
667
667
  "description": ( localize(
668
- 3964,
668
+ 3986,
669
669
  "Controls if the limit of maximum opened editors should apply per editor group or across all editor groups."
670
670
  ))
671
671
  },
@@ -673,7 +673,7 @@ const registry = ( Registry.as(Extensions.Configuration));
673
673
  "type": "boolean",
674
674
  "default": true,
675
675
  "description": ( localize(
676
- 3965,
676
+ 3987,
677
677
  "Controls whether local file history is enabled. When enabled, the file contents of an editor that is saved will be stored to a backup location to be able to restore or review the contents later. Changing this setting has no effect on existing local file history entries."
678
678
  )),
679
679
  "scope": ConfigurationScope.RESOURCE
@@ -683,7 +683,7 @@ const registry = ( Registry.as(Extensions.Configuration));
683
683
  "default": 256,
684
684
  "minimum": 1,
685
685
  "description": ( localize(
686
- 3966,
686
+ 3988,
687
687
  "Controls the maximum size of a file (in KB) to be considered for local file history. Files that are larger will not be added to the local file history. Changing this setting has no effect on existing local file history entries."
688
688
  )),
689
689
  "scope": ConfigurationScope.RESOURCE
@@ -693,7 +693,7 @@ const registry = ( Registry.as(Extensions.Configuration));
693
693
  "default": 50,
694
694
  "minimum": 0,
695
695
  "description": ( localize(
696
- 3967,
696
+ 3989,
697
697
  "Controls the maximum number of local file history entries per file. When the number of local file history entries exceeds this number for a file, the oldest entries will be discarded."
698
698
  )),
699
699
  "scope": ConfigurationScope.RESOURCE
@@ -706,7 +706,7 @@ const registry = ( Registry.as(Extensions.Configuration));
706
706
  }
707
707
  },
708
708
  "markdownDescription": ( localize(
709
- 3968,
709
+ 3990,
710
710
  "Configure paths or [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files from the local file history. Glob patterns are always evaluated relative to the path of the workspace folder unless they are absolute paths. Changing this setting has no effect on existing local file history entries."
711
711
  )),
712
712
  "scope": ConfigurationScope.RESOURCE
@@ -716,7 +716,7 @@ const registry = ( Registry.as(Extensions.Configuration));
716
716
  "default": 10,
717
717
  "minimum": 1,
718
718
  "markdownDescription": ( localize(
719
- 3969,
719
+ 3991,
720
720
  "Configure an interval in seconds during which the last entry in local file history is replaced with the entry that is being added. This helps reduce the overall number of entries that are added, for example when auto save is enabled. This setting is only applied to entries that have the same source of origin. Changing this setting has no effect on existing local file history entries."
721
721
  )),
722
722
  "scope": ConfigurationScope.RESOURCE
@@ -724,7 +724,7 @@ const registry = ( Registry.as(Extensions.Configuration));
724
724
  "workbench.commandPalette.history": {
725
725
  "type": "number",
726
726
  "description": ( localize(
727
- 3970,
727
+ 3992,
728
728
  "Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."
729
729
  )),
730
730
  "default": 50,
@@ -733,7 +733,7 @@ const registry = ( Registry.as(Extensions.Configuration));
733
733
  "workbench.commandPalette.preserveInput": {
734
734
  "type": "boolean",
735
735
  "description": ( localize(
736
- 3971,
736
+ 3993,
737
737
  "Controls whether the last typed input to the command palette should be restored when opening it the next time."
738
738
  )),
739
739
  "default": false
@@ -742,7 +742,7 @@ const registry = ( Registry.as(Extensions.Configuration));
742
742
  "type": "boolean",
743
743
  tags: ["experimental"],
744
744
  "description": ( localize(
745
- 3972,
745
+ 3994,
746
746
  "Controls whether the command palette should have a list of commonly used commands."
747
747
  )),
748
748
  "default": false
@@ -750,16 +750,16 @@ const registry = ( Registry.as(Extensions.Configuration));
750
750
  "workbench.commandPalette.experimental.askChatLocation": {
751
751
  "type": "string",
752
752
  tags: ["experimental"],
753
- "description": ( localize(3973, "Controls where the command palette should ask chat questions.")),
753
+ "description": ( localize(3995, "Controls where the command palette should ask chat questions.")),
754
754
  "default": "chatView",
755
755
  enum: ["chatView", "quickChat"],
756
- enumDescriptions: [( localize(3974, "Ask chat questions in the Chat view.")), ( localize(3975, "Ask chat questions in Quick Chat."))]
756
+ enumDescriptions: [( localize(3996, "Ask chat questions in the Chat view.")), ( localize(3997, "Ask chat questions in Quick Chat."))]
757
757
  },
758
758
  "workbench.commandPalette.showAskInChat": {
759
759
  "type": "boolean",
760
760
  tags: ["experimental"],
761
761
  "description": ( localize(
762
- 3976,
762
+ 3998,
763
763
  "Controls whether the command palette shows 'Ask in Chat' option at the bottom."
764
764
  )),
765
765
  "default": true
@@ -768,7 +768,7 @@ const registry = ( Registry.as(Extensions.Configuration));
768
768
  "type": "boolean",
769
769
  tags: ["experimental"],
770
770
  "description": ( localize(
771
- 3977,
771
+ 3999,
772
772
  "Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."
773
773
  )),
774
774
  "default": true
@@ -776,7 +776,7 @@ const registry = ( Registry.as(Extensions.Configuration));
776
776
  "workbench.quickOpen.closeOnFocusLost": {
777
777
  "type": "boolean",
778
778
  "description": ( localize(
779
- 3978,
779
+ 4000,
780
780
  "Controls whether Quick Open should close automatically once it loses focus."
781
781
  )),
782
782
  "default": true
@@ -784,7 +784,7 @@ const registry = ( Registry.as(Extensions.Configuration));
784
784
  "workbench.quickOpen.preserveInput": {
785
785
  "type": "boolean",
786
786
  "description": ( localize(
787
- 3979,
787
+ 4001,
788
788
  "Controls whether the last typed input to Quick Open should be restored when opening it the next time."
789
789
  )),
790
790
  "default": false
@@ -792,7 +792,7 @@ const registry = ( Registry.as(Extensions.Configuration));
792
792
  "workbench.settings.openDefaultSettings": {
793
793
  "type": "boolean",
794
794
  "description": ( localize(
795
- 3980,
795
+ 4002,
796
796
  "Controls whether opening settings also opens an editor showing all default settings."
797
797
  )),
798
798
  "default": false
@@ -800,7 +800,7 @@ const registry = ( Registry.as(Extensions.Configuration));
800
800
  "workbench.settings.useSplitJSON": {
801
801
  "type": "boolean",
802
802
  "markdownDescription": ( localize(
803
- 3981,
803
+ 4003,
804
804
  "Controls whether to use the split JSON editor when editing settings as JSON."
805
805
  )),
806
806
  "default": false
@@ -808,7 +808,7 @@ const registry = ( Registry.as(Extensions.Configuration));
808
808
  "workbench.settings.openDefaultKeybindings": {
809
809
  "type": "boolean",
810
810
  "description": ( localize(
811
- 3982,
811
+ 4004,
812
812
  "Controls whether opening keybinding settings also opens an editor showing all default keybindings."
813
813
  )),
814
814
  "default": false
@@ -816,7 +816,7 @@ const registry = ( Registry.as(Extensions.Configuration));
816
816
  "workbench.settings.alwaysShowAdvancedSettings": {
817
817
  "type": "boolean",
818
818
  "description": ( localize(
819
- 3983,
819
+ 4005,
820
820
  "Controls whether advanced settings are always shown in the settings editor without requiring the `@tag:advanced` filter."
821
821
  )),
822
822
  "default": product.quality !== "stable"
@@ -826,7 +826,7 @@ const registry = ( Registry.as(Extensions.Configuration));
826
826
  "enum": ["left", "right"],
827
827
  "default": "left",
828
828
  "description": ( localize(
829
- 3984,
829
+ 4006,
830
830
  "Controls the location of the primary side bar and activity bar. They can either show on the left or right of the workbench. The secondary side bar will show on the opposite side of the workbench."
831
831
  )),
832
832
  agentsWindow: {
@@ -838,7 +838,7 @@ const registry = ( Registry.as(Extensions.Configuration));
838
838
  "type": "boolean",
839
839
  "default": true,
840
840
  "description": ( localize(
841
- 3985,
841
+ 4007,
842
842
  "Controls whether activity items in the panel title are shown as label or icon."
843
843
  ))
844
844
  },
@@ -847,7 +847,7 @@ const registry = ( Registry.as(Extensions.Configuration));
847
847
  "enum": ["left", "bottom", "top", "right"],
848
848
  "default": "bottom",
849
849
  "description": ( localize(
850
- 3986,
850
+ 4008,
851
851
  "Controls the default location of the panel (Terminal, Debug Console, Output, Problems) in a new workspace. It can either show at the bottom, top, right, or left of the editor area."
852
852
  )),
853
853
  agentsWindow: {
@@ -860,10 +860,10 @@ const registry = ( Registry.as(Extensions.Configuration));
860
860
  "enum": ["always", "never", "preserve"],
861
861
  "default": "preserve",
862
862
  "description": ( localize(
863
- 3987,
863
+ 4009,
864
864
  "Controls whether the panel opens maximized. It can either always open maximized, never open maximized, or open to the last state it was in before being closed."
865
865
  )),
866
- "enumDescriptions": [( localize(3988, "Always maximize the panel when opening it.")), ( localize(3989, "Never maximize the panel when opening it.")), ( localize(3990, "Open the panel to the state that it was in, before it was closed."))],
866
+ "enumDescriptions": [( localize(4010, "Always maximize the panel when opening it.")), ( localize(4011, "Never maximize the panel when opening it.")), ( localize(4012, "Open the panel to the state that it was in, before it was closed."))],
867
867
  agentsWindow: {
868
868
  default: "never",
869
869
  readOnly: true
@@ -880,16 +880,16 @@ const registry = ( Registry.as(Extensions.Configuration));
880
880
  ],
881
881
  "default": "visibleInWorkspace",
882
882
  "description": ( localize(
883
- 3991,
883
+ 4013,
884
884
  "Controls the default visibility of the secondary side bar in workspaces or empty windows that are opened for the first time. Can be overridden by the agent sessions startup editor setting."
885
885
  )),
886
- "enumDescriptions": [( localize(3992, "The secondary side bar is hidden by default.")), ( localize(
887
- 3993,
886
+ "enumDescriptions": [( localize(4014, "The secondary side bar is hidden by default.")), ( localize(
887
+ 4015,
888
888
  "The secondary side bar is visible by default if a workspace is opened."
889
- )), ( localize(3994, "The secondary side bar is visible by default.")), ( localize(
890
- 3995,
889
+ )), ( localize(4016, "The secondary side bar is visible by default.")), ( localize(
890
+ 4017,
891
891
  "The secondary side bar is visible and maximized by default if a workspace is opened."
892
- )), ( localize(3996, "The secondary side bar is visible and maximized by default."))],
892
+ )), ( localize(4018, "The secondary side bar is visible and maximized by default."))],
893
893
  agentsWindow: {
894
894
  default: "visibleInWorkspace",
895
895
  readOnly: true
@@ -900,7 +900,7 @@ const registry = ( Registry.as(Extensions.Configuration));
900
900
  "default": false,
901
901
  tags: ["experimental"],
902
902
  "description": ( localize(
903
- 3997,
903
+ 4019,
904
904
  "Controls whether the secondary side bar is enforced to always show maximized on startup and when there are no open editors, in layouts that support a maximized secondary side bar."
905
905
  )),
906
906
  agentsWindow: {
@@ -912,7 +912,7 @@ const registry = ( Registry.as(Extensions.Configuration));
912
912
  "type": "boolean",
913
913
  "default": true,
914
914
  "markdownDescription": ( localize(
915
- 3998,
915
+ 4020,
916
916
  "Controls whether activity items in the secondary side bar title are shown as label or icon. This setting only has an effect when {0} is not set to {1}.",
917
917
  "`#workbench.activityBar.location#`",
918
918
  "`top`"
@@ -926,7 +926,7 @@ const registry = ( Registry.as(Extensions.Configuration));
926
926
  "type": "boolean",
927
927
  "default": true,
928
928
  "description": ( localize(
929
- 3999,
929
+ 4021,
930
930
  "Controls the visibility of the status bar at the bottom of the workbench."
931
931
  )),
932
932
  agentsWindow: {
@@ -943,11 +943,11 @@ const registry = ( Registry.as(Extensions.Configuration));
943
943
  ],
944
944
  "default": NotificationsPosition.BOTTOM_RIGHT,
945
945
  "description": ( localize(
946
- 4000,
946
+ 4022,
947
947
  "Controls the position of the notification toasts and notification center."
948
948
  )),
949
- "enumDescriptions": [( localize(4001, "Show notifications in the bottom right corner.")), ( localize(4002, "Show notifications in the bottom left corner.")), ( localize(
950
- 4003,
949
+ "enumDescriptions": [( localize(4023, "Show notifications in the bottom right corner.")), ( localize(4024, "Show notifications in the bottom left corner.")), ( localize(
950
+ 4025,
951
951
  "Show notifications in the top right corner, similar to OS-level notifications."
952
952
  ))],
953
953
  "tags": ["experimental"],
@@ -959,7 +959,7 @@ const registry = ( Registry.as(Extensions.Configuration));
959
959
  "type": "boolean",
960
960
  "default": true,
961
961
  "description": ( localize(
962
- 4004,
962
+ 4026,
963
963
  "Controls the visibility of the Notifications button in the title bar. Only applies when notifications are positioned at the top right."
964
964
  ))
965
965
  },
@@ -968,19 +968,19 @@ const registry = ( Registry.as(Extensions.Configuration));
968
968
  "enum": ["default", "top", "bottom", "hidden"],
969
969
  "default": "default",
970
970
  "markdownDescription": ( localize(
971
- 4005,
971
+ 4027,
972
972
  "Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."
973
973
  )),
974
974
  "enumDescriptions": [( localize(
975
- 4006,
975
+ 4028,
976
976
  "Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."
977
977
  )), ( localize(
978
- 4007,
978
+ 4029,
979
979
  "Show the Activity Bar on top of the Primary and Secondary Side Bars."
980
980
  )), ( localize(
981
- 4008,
981
+ 4030,
982
982
  "Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."
983
- )), ( localize(4009, "Hide the Activity Bar in the Primary and Secondary Side Bars."))],
983
+ )), ( localize(4031, "Hide the Activity Bar in the Primary and Secondary Side Bars."))],
984
984
  agentsWindow: {
985
985
  default: "default",
986
986
  readOnly: true
@@ -990,7 +990,7 @@ const registry = ( Registry.as(Extensions.Configuration));
990
990
  "type": "boolean",
991
991
  "default": false,
992
992
  "markdownDescription": ( localize(
993
- 4010,
993
+ 4032,
994
994
  "Controls whether the Activity Bar is automatically hidden when there is only one view container to show. This applies to the Primary and Secondary Side Bars when {0} is set to {1} or {2}.",
995
995
  "`#workbench.activityBar.location#`",
996
996
  "`top`",
@@ -1005,7 +1005,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1005
1005
  "type": "boolean",
1006
1006
  "default": false,
1007
1007
  "markdownDescription": ( localize(
1008
- 4011,
1008
+ 4033,
1009
1009
  "Controls whether the Activity Bar uses a compact layout with smaller icons and reduced width. This setting only applies when {0} is set to {1}.",
1010
1010
  "`#workbench.activityBar.location#`",
1011
1011
  "`default`"
@@ -1020,12 +1020,12 @@ const registry = ( Registry.as(Extensions.Configuration));
1020
1020
  "enum": ["toggle", "focus"],
1021
1021
  "default": "toggle",
1022
1022
  "markdownDescription": ( localize(
1023
- 4012,
1023
+ 4034,
1024
1024
  "Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.",
1025
1025
  "`#workbench.activityBar.location#`",
1026
1026
  "`default`"
1027
1027
  )),
1028
- "enumDescriptions": [( localize(4013, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(4014, "Focus the Primary Side Bar if the clicked item is already visible."))],
1028
+ "enumDescriptions": [( localize(4035, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(4036, "Focus the Primary Side Bar if the clicked item is already visible."))],
1029
1029
  agentsWindow: {
1030
1030
  default: "toggle",
1031
1031
  readOnly: true
@@ -1035,21 +1035,21 @@ const registry = ( Registry.as(Extensions.Configuration));
1035
1035
  "type": "boolean",
1036
1036
  "default": false,
1037
1037
  "description": ( localize(
1038
- 4015,
1038
+ 4037,
1039
1039
  "Controls the visibility of view header actions. View header actions may either be always visible, or only visible when that view is focused or hovered over."
1040
1040
  ))
1041
1041
  },
1042
1042
  "workbench.view.showQuietly": {
1043
1043
  "type": "object",
1044
1044
  "description": ( localize(
1045
- 4016,
1045
+ 4038,
1046
1046
  "If an extension requests a hidden view to be shown, display a clickable status bar indicator instead."
1047
1047
  )),
1048
1048
  "scope": ConfigurationScope.WINDOW,
1049
1049
  "properties": {
1050
1050
  "workbench.panel.output": {
1051
1051
  "type": "boolean",
1052
- "description": ( localize(4017, "Output view"))
1052
+ "description": ( localize(4039, "Output view"))
1053
1053
  }
1054
1054
  },
1055
1055
  "additionalProperties": false
@@ -1058,15 +1058,15 @@ const registry = ( Registry.as(Extensions.Configuration));
1058
1058
  "type": "string",
1059
1059
  "enum": ["default", "antialiased", "none", "auto"],
1060
1060
  "default": "default",
1061
- "description": ( localize(4018, "Controls font aliasing method in the workbench.")),
1061
+ "description": ( localize(4040, "Controls font aliasing method in the workbench.")),
1062
1062
  "enumDescriptions": [( localize(
1063
- 4019,
1063
+ 4041,
1064
1064
  "Sub-pixel font smoothing. On most non-retina displays this will give the sharpest text."
1065
1065
  )), ( localize(
1066
- 4020,
1066
+ 4042,
1067
1067
  "Smooth the font on the level of the pixel, as opposed to the subpixel. Can make the font appear lighter overall."
1068
- )), ( localize(4021, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1069
- 4022,
1068
+ )), ( localize(4043, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
1069
+ 4044,
1070
1070
  "Applies `default` or `antialiased` automatically based on the DPI of displays."
1071
1071
  ))],
1072
1072
  "included": isMacintosh
@@ -1074,8 +1074,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1074
1074
  "workbench.settings.editor": {
1075
1075
  "type": "string",
1076
1076
  "enum": ["ui", "json"],
1077
- "enumDescriptions": [( localize(4023, "Use the settings UI editor.")), ( localize(4024, "Use the JSON file editor."))],
1078
- "description": ( localize(4025, "Determines which Settings editor to use by default.")),
1077
+ "enumDescriptions": [( localize(4045, "Use the settings UI editor.")), ( localize(4046, "Use the JSON file editor."))],
1078
+ "description": ( localize(4047, "Determines which Settings editor to use by default.")),
1079
1079
  "default": "ui",
1080
1080
  "scope": ConfigurationScope.WINDOW
1081
1081
  },
@@ -1083,14 +1083,14 @@ const registry = ( Registry.as(Extensions.Configuration));
1083
1083
  "type": "boolean",
1084
1084
  "default": true,
1085
1085
  "description": ( localize(
1086
- 4026,
1086
+ 4048,
1087
1087
  "Controls whether the AI search results toggle is shown in the search bar in the Settings editor after doing a search and once AI search results are available."
1088
1088
  ))
1089
1089
  },
1090
1090
  "workbench.hover.delay": {
1091
1091
  "type": "number",
1092
1092
  "description": ( localize(
1093
- 4027,
1093
+ 4049,
1094
1094
  "Controls the delay in milliseconds after which the hover is shown for workbench items (ex. some extension provided tree view items). Already visible items may require a refresh before reflecting this setting change."
1095
1095
  )),
1096
1096
  "default": isMacintosh ? 1500 : 500,
@@ -1099,7 +1099,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1099
1099
  "workbench.hover.reducedDelay": {
1100
1100
  "type": "number",
1101
1101
  "description": ( localize(
1102
- 4028,
1102
+ 4050,
1103
1103
  "Controls the reduced delay in milliseconds used for showing hovers in specific contexts where faster feedback is beneficial."
1104
1104
  )),
1105
1105
  "default": 500,
@@ -1108,10 +1108,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1108
1108
  "workbench.reduceMotion": {
1109
1109
  type: "string",
1110
1110
  description: ( localize(
1111
- 4029,
1111
+ 4051,
1112
1112
  "Controls whether the workbench should render with fewer animations."
1113
1113
  )),
1114
- "enumDescriptions": [( localize(4030, "Always render with reduced motion.")), ( localize(4031, "Do not render with reduced motion")), ( localize(4032, "Render with reduced motion based on OS configuration."))],
1114
+ "enumDescriptions": [( localize(4052, "Always render with reduced motion.")), ( localize(4053, "Do not render with reduced motion")), ( localize(4054, "Render with reduced motion based on OS configuration."))],
1115
1115
  default: "auto",
1116
1116
  tags: ["accessibility"],
1117
1117
  enum: ["on", "off", "auto"]
@@ -1119,10 +1119,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1119
1119
  "workbench.reduceTransparency": {
1120
1120
  type: "string",
1121
1121
  description: ( localize(
1122
- 4033,
1122
+ 4055,
1123
1123
  "Controls whether the workbench should render with fewer transparency and blur effects for improved performance."
1124
1124
  )),
1125
- "enumDescriptions": [( localize(4034, "Always render without transparency and blur effects.")), ( localize(4035, "Do not reduce transparency and blur effects.")), ( localize(4036, "Reduce transparency and blur effects based on OS configuration."))],
1125
+ "enumDescriptions": [( localize(4056, "Always render without transparency and blur effects.")), ( localize(4057, "Do not reduce transparency and blur effects.")), ( localize(4058, "Reduce transparency and blur effects based on OS configuration."))],
1126
1126
  default: "off",
1127
1127
  tags: ["accessibility"],
1128
1128
  enum: ["on", "off", "auto"]
@@ -1130,8 +1130,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1130
1130
  "workbench.navigationControl.enabled": {
1131
1131
  "type": "boolean",
1132
1132
  "default": true,
1133
- "markdownDescription": isWeb ? ( localize(4037, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1134
- 4038,
1133
+ "markdownDescription": isWeb ? ( localize(4059, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
1134
+ 4060,
1135
1135
  "Controls whether the navigation control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
1136
1136
  "`#window.customTitleBarVisibility#`",
1137
1137
  "`never`"
@@ -1144,8 +1144,8 @@ const registry = ( Registry.as(Extensions.Configuration));
1144
1144
  [LayoutSettings.LAYOUT_ACTIONS]: {
1145
1145
  "type": "boolean",
1146
1146
  "default": true,
1147
- "markdownDescription": isWeb ? ( localize(4039, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1148
- 4040,
1147
+ "markdownDescription": isWeb ? ( localize(4061, "Controls whether the layout control in the title bar is shown.")) : ( localize(
1148
+ 4062,
1149
1149
  "Controls whether the layout control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
1150
1150
  "`#window.customTitleBarVisibility#`",
1151
1151
  "`never`"
@@ -1158,13 +1158,13 @@ const registry = ( Registry.as(Extensions.Configuration));
1158
1158
  "workbench.layoutControl.type": {
1159
1159
  "type": "string",
1160
1160
  "enum": ["menu", "toggles", "both"],
1161
- "enumDescriptions": [( localize(4041, "Shows a single button with a dropdown of layout options.")), ( localize(
1162
- 4042,
1161
+ "enumDescriptions": [( localize(4063, "Shows a single button with a dropdown of layout options.")), ( localize(
1162
+ 4064,
1163
1163
  "Shows several buttons for toggling the visibility of the panels and side bar."
1164
- )), ( localize(4043, "Shows both the dropdown and toggle buttons."))],
1164
+ )), ( localize(4065, "Shows both the dropdown and toggle buttons."))],
1165
1165
  "default": "both",
1166
1166
  "description": ( localize(
1167
- 4044,
1167
+ 4066,
1168
1168
  "Controls whether the layout control in the custom title bar is displayed as a single menu button or with multiple UI toggles."
1169
1169
  )),
1170
1170
  agentsWindow: {
@@ -1175,7 +1175,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1175
1175
  "workbench.tips.enabled": {
1176
1176
  "type": "boolean",
1177
1177
  "default": true,
1178
- "description": ( localize(4045, "When enabled, will show the watermark tips when no editor is open.")),
1178
+ "description": ( localize(4067, "When enabled, will show the watermark tips when no editor is open.")),
1179
1179
  agentsWindow: {
1180
1180
  default: false
1181
1181
  }
@@ -1184,67 +1184,67 @@ const registry = ( Registry.as(Extensions.Configuration));
1184
1184
  "type": "boolean",
1185
1185
  "default": true,
1186
1186
  "description": ( localize(
1187
- 4046,
1187
+ 4068,
1188
1188
  "Controls whether shadow effects are shown around the side panels and other workbench elements."
1189
1189
  ))
1190
1190
  }
1191
1191
  }
1192
1192
  });
1193
1193
  let windowTitleDescription = ( localize(
1194
- 4047,
1194
+ 4069,
1195
1195
  "Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:"
1196
1196
  ));
1197
- windowTitleDescription += "\n- " + [( localize(4048, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1198
- 4049,
1197
+ windowTitleDescription += "\n- " + [( localize(4070, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
1198
+ 4071,
1199
1199
  "`${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)."
1200
1200
  )), ( localize(
1201
- 4050,
1201
+ 4072,
1202
1202
  "`${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)."
1203
1203
  )), ( localize(
1204
- 4051,
1204
+ 4073,
1205
1205
  "`${activeEditorLanguageId}`: the language identifier of the active editor (e.g. typescript)."
1206
1206
  )), ( localize(
1207
- 4052,
1207
+ 4074,
1208
1208
  "`${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder)."
1209
1209
  )), ( localize(
1210
- 4053,
1210
+ 4075,
1211
1211
  "`${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)."
1212
1212
  )), ( localize(
1213
- 4054,
1213
+ 4076,
1214
1214
  "`${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)."
1215
1215
  )), ( localize(
1216
- 4055,
1216
+ 4077,
1217
1217
  "`${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder)."
1218
1218
  )), ( localize(
1219
- 4056,
1219
+ 4078,
1220
1220
  "`${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)."
1221
1221
  )), ( localize(
1222
- 4057,
1222
+ 4079,
1223
1223
  "`${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))."
1224
1224
  )), ( localize(
1225
- 4058,
1225
+ 4080,
1226
1226
  "`${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace)."
1227
1227
  )), ( localize(
1228
- 4059,
1228
+ 4081,
1229
1229
  "`${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace)."
1230
1230
  )), ( localize(
1231
- 4060,
1231
+ 4082,
1232
1232
  "`${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used."
1233
- )), ( localize(4061, "`${appName}`: e.g. VS Code.")), ( localize(4062, "`${remoteName}`: e.g. SSH")), ( localize(
1234
- 4063,
1233
+ )), ( localize(4083, "`${appName}`: e.g. VS Code.")), ( localize(4084, "`${remoteName}`: e.g. SSH")), ( localize(
1234
+ 4085,
1235
1235
  "`${dirty}`: an indicator for when the active editor has unsaved changes."
1236
- )), ( localize(4064, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1237
- 4065,
1236
+ )), ( localize(4086, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
1237
+ 4087,
1238
1238
  "`${activeRepositoryName}`: the name of the active repository (e.g. vscode)."
1239
1239
  )), ( localize(
1240
- 4066,
1240
+ 4088,
1241
1241
  "`${activeRepositoryBranchName}`: the name of the active branch in the active repository (e.g. main)."
1242
1242
  )), ( localize(
1243
- 4067,
1243
+ 4089,
1244
1244
  "`${activeEditorState}`: provides information about the state of the active editor (e.g. modified). This will be appended by default when in screen reader mode with {0} enabled.",
1245
1245
  "`accessibility.windowTitleOptimized`"
1246
1246
  )), ( localize(
1247
- 4068,
1247
+ 4090,
1248
1248
  "`${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."
1249
1249
  ))].join("\n- ");
1250
1250
  registry.registerConfiguration({
@@ -1262,13 +1262,13 @@ const registry = ( Registry.as(Extensions.Configuration));
1262
1262
  "window.titleSeparator": {
1263
1263
  "type": "string",
1264
1264
  "default": defaultWindowTitleSeparator,
1265
- "markdownDescription": ( localize(4069, "Separator used by {0}.", "`#window.title#`"))
1265
+ "markdownDescription": ( localize(4091, "Separator used by {0}.", "`#window.title#`"))
1266
1266
  },
1267
1267
  [LayoutSettings.COMMAND_CENTER]: {
1268
1268
  type: "boolean",
1269
1269
  default: true,
1270
- markdownDescription: isWeb ? ( localize(4070, "Show command launcher together with the window title.")) : ( localize(
1271
- 4071,
1270
+ markdownDescription: isWeb ? ( localize(4092, "Show command launcher together with the window title.")) : ( localize(
1271
+ 4093,
1272
1272
  "Show command launcher together with the window title. This setting only has an effect when {0} is not set to {1}.",
1273
1273
  "`#window.customTitleBarVisibility#`",
1274
1274
  "`never`"
@@ -1282,19 +1282,19 @@ const registry = ( Registry.as(Extensions.Configuration));
1282
1282
  "type": "string",
1283
1283
  "enum": ["classic", "visible", "toggle", "hidden", "compact"],
1284
1284
  "markdownEnumDescriptions": [( localize(
1285
- 4072,
1285
+ 4094,
1286
1286
  "Menu is displayed at the top of the window and only hidden in full screen mode."
1287
1287
  )), ( localize(
1288
- 4073,
1288
+ 4095,
1289
1289
  "Menu is always visible at the top of the window even in full screen mode."
1290
1290
  )), isMacintosh ? ( localize(
1291
- 4074,
1291
+ 4096,
1292
1292
  "Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command."
1293
1293
  )) : ( localize(
1294
- 4075,
1294
+ 4097,
1295
1295
  "Menu is hidden but can be displayed at the top of the window via the Alt key."
1296
- )), ( localize(4076, "Menu is always hidden.")), isWeb ? ( localize(4077, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1297
- 4078,
1296
+ )), ( localize(4098, "Menu is always hidden.")), isWeb ? ( localize(4099, "Menu is displayed as a compact button in the side bar.")) : ( localize(
1297
+ 4100,
1298
1298
  "Menu is displayed as a compact button in the side bar. This value is ignored when {0} is {1} and {2} is either {3} or {4}.",
1299
1299
  "`#window.titleBarStyle#`",
1300
1300
  "`native`",
@@ -1305,10 +1305,10 @@ const registry = ( Registry.as(Extensions.Configuration));
1305
1305
  "default": isWeb ? "compact" : "classic",
1306
1306
  "scope": ConfigurationScope.APPLICATION,
1307
1307
  "markdownDescription": isMacintosh ? ( localize(
1308
- 4079,
1308
+ 4101,
1309
1309
  "Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and executing `Focus Application Menu` will show it. A setting of 'compact' will move the menu into the side bar."
1310
1310
  )) : ( localize(
1311
- 4080,
1311
+ 4102,
1312
1312
  "Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. A setting of 'compact' will move the menu into the side bar."
1313
1313
  )),
1314
1314
  "included": isWindows || isLinux || isWeb
@@ -1318,7 +1318,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1318
1318
  "default": true,
1319
1319
  "scope": ConfigurationScope.APPLICATION,
1320
1320
  "description": ( localize(
1321
- 4081,
1321
+ 4103,
1322
1322
  "Controls whether the main menus can be opened via Alt-key shortcuts. Disabling mnemonics allows to bind these Alt-key shortcuts to editor commands instead."
1323
1323
  )),
1324
1324
  "included": isWindows || isLinux
@@ -1328,7 +1328,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1328
1328
  "default": true,
1329
1329
  "scope": ConfigurationScope.APPLICATION,
1330
1330
  "markdownDescription": ( localize(
1331
- 4082,
1331
+ 4104,
1332
1332
  "Controls whether the menu bar will be focused by pressing the Alt-key. This setting has no effect on toggling the menu bar with the Alt-key."
1333
1333
  )),
1334
1334
  "included": isWindows || isLinux,
@@ -1340,37 +1340,37 @@ const registry = ( Registry.as(Extensions.Configuration));
1340
1340
  "window.openFilesInNewWindow": {
1341
1341
  "type": "string",
1342
1342
  "enum": ["on", "off", "default"],
1343
- "enumDescriptions": [( localize(4083, "Files will open in a new window.")), ( localize(
1344
- 4084,
1343
+ "enumDescriptions": [( localize(4105, "Files will open in a new window.")), ( localize(
1344
+ 4106,
1345
1345
  "Files will open in the window with the files' folder open or the last active window."
1346
1346
  )), isMacintosh ? ( localize(
1347
- 4085,
1347
+ 4107,
1348
1348
  "Files will open in the window with the files' folder open or the last active window unless opened via the Dock or from Finder."
1349
1349
  )) : ( localize(
1350
- 4086,
1350
+ 4108,
1351
1351
  "Files will open in a new window unless picked from within the application (e.g. via the File menu)."
1352
1352
  ))],
1353
1353
  "default": "off",
1354
1354
  "scope": ConfigurationScope.APPLICATION,
1355
1355
  "markdownDescription": isMacintosh ? ( localize(
1356
- 4087,
1356
+ 4109,
1357
1357
  "Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1358
1358
  )) : ( localize(
1359
- 4088,
1359
+ 4110,
1360
1360
  "Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1361
1361
  ))
1362
1362
  },
1363
1363
  "window.openFoldersInNewWindow": {
1364
1364
  "type": "string",
1365
1365
  "enum": ["on", "off", "default"],
1366
- "enumDescriptions": [( localize(4089, "Folders will open in a new window.")), ( localize(4090, "Folders will replace the last active window.")), ( localize(
1367
- 4091,
1366
+ "enumDescriptions": [( localize(4111, "Folders will open in a new window.")), ( localize(4112, "Folders will replace the last active window.")), ( localize(
1367
+ 4113,
1368
1368
  "Folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)."
1369
1369
  ))],
1370
1370
  "default": "default",
1371
1371
  "scope": ConfigurationScope.APPLICATION,
1372
1372
  "markdownDescription": ( localize(
1373
- 4092,
1373
+ 4114,
1374
1374
  "Controls whether folders should open in a new window or replace the last active window.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
1375
1375
  ))
1376
1376
  },
@@ -1378,21 +1378,21 @@ const registry = ( Registry.as(Extensions.Configuration));
1378
1378
  "type": "string",
1379
1379
  "enum": ["always", "keyboardOnly", "never"],
1380
1380
  "enumDescriptions": [isWeb ? ( localize(
1381
- 4093,
1381
+ 4115,
1382
1382
  "Always try to ask for confirmation. Note that browsers may still decide to close a tab or window without confirmation."
1383
- )) : ( localize(4094, "Always ask for confirmation.")), isWeb ? ( localize(
1384
- 4095,
1383
+ )) : ( localize(4116, "Always ask for confirmation.")), isWeb ? ( localize(
1384
+ 4117,
1385
1385
  "Only ask for confirmation if a keybinding was used to close the window. Note that detection may not be possible in some cases."
1386
- )) : ( localize(4096, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1387
- 4097,
1386
+ )) : ( localize(4118, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
1387
+ 4119,
1388
1388
  "Never explicitly ask for confirmation unless data loss is imminent."
1389
- )) : ( localize(4098, "Never explicitly ask for confirmation."))],
1389
+ )) : ( localize(4120, "Never explicitly ask for confirmation."))],
1390
1390
  "default": (isWeb && !isStandalone()) ? "keyboardOnly" : "never",
1391
1391
  "markdownDescription": isWeb ? ( localize(
1392
- 4099,
1392
+ 4121,
1393
1393
  "Controls whether to show a confirmation dialog before closing the browser tab or window. Note that even if enabled, browsers may still decide to close a tab or window without confirmation and that this setting is only a hint that may not work in all cases."
1394
1394
  )) : ( localize(
1395
- 4100,
1395
+ 4122,
1396
1396
  "Controls whether to show a confirmation dialog before closing a window or quitting the application."
1397
1397
  )),
1398
1398
  "scope": ConfigurationScope.APPLICATION
@@ -1411,7 +1411,7 @@ const registry = ( Registry.as(Extensions.Configuration));
1411
1411
  "type": "boolean",
1412
1412
  "default": true,
1413
1413
  "description": ( localize(
1414
- 4101,
1414
+ 4123,
1415
1415
  "Controls whether the problems are visible throughout the editor and workbench."
1416
1416
  ))
1417
1417
  }