@codingame/monaco-vscode-api 32.0.0 → 32.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/base/common/paging.js +66 -2
- package/vscode/src/vs/platform/extensionManagement/common/unsupportedExtensionsMigration.d.ts +14 -0
- package/vscode/src/vs/platform/extensionManagement/common/unsupportedExtensionsMigration.js +145 -0
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.d.ts +19 -0
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.js +25 -0
- package/vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +43 -43
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +86 -86
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +23 -23
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +79 -79
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/reviewPlanTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactRulesTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +12 -12
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
- package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
- package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorDiffInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.d.ts +76 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +470 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +83 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +66 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.d.ts +83 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +1353 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +49 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +728 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.d.ts +63 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +522 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendations.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendations.js +18 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationsService.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationsService.js +263 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +2227 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +179 -179
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +40 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +77 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +93 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +100 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +151 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +1031 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.d.ts +235 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +1600 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.d.ts +314 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +3449 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.d.ts +44 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +368 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/keymapRecommendations.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/keymapRecommendations.js +30 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/languageRecommendations.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/languageRecommendations.js +30 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +910 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionManagement.css +12 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css +229 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-dark.svg +31 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-hc.svg +31 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading.svg +31 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/runtimeExtensionsEditor.css +86 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/remoteRecommendations.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/remoteRecommendations.js +38 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/unsupportedExtensionsMigrationContribution.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/unsupportedExtensionsMigrationContribution.js +41 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +38 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +179 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +90 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +50 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +47 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
- package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
- package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +28 -28
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
- package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +66 -66
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +42 -42
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +10 -10
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +9 -9
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +72 -72
- package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
- package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeOnboarding/common/onboardingTypes.js +14 -14
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +35 -0
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +876 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +2 -2
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/policies/common/accountPolicyService.js +1 -1
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
- package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
- package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
|
@@ -22,14 +22,14 @@ const debugToolBarBackground = registerColor("debugToolBar.background", {
|
|
|
22
22
|
light: "#F3F3F3",
|
|
23
23
|
hcDark: "#000000",
|
|
24
24
|
hcLight: "#FFFFFF"
|
|
25
|
-
}, ( localize(
|
|
26
|
-
const debugToolBarBorder = registerColor("debugToolBar.border", null, ( localize(
|
|
25
|
+
}, ( localize(8786, "Debug toolbar background color.")));
|
|
26
|
+
const debugToolBarBorder = registerColor("debugToolBar.border", null, ( localize(8787, "Debug toolbar border color.")));
|
|
27
27
|
const debugIconStartForeground = registerColor("debugIcon.startForeground", {
|
|
28
28
|
dark: "#89D185",
|
|
29
29
|
light: "#388A34",
|
|
30
30
|
hcDark: "#89D185",
|
|
31
31
|
hcLight: "#388A34"
|
|
32
|
-
}, ( localize(
|
|
32
|
+
}, ( localize(8788, "Debug toolbar icon for start debugging.")));
|
|
33
33
|
function registerColors() {
|
|
34
34
|
const debugTokenExpressionName = registerColor("debugTokenExpression.name", {
|
|
35
35
|
dark: "#c586c0",
|
|
@@ -132,55 +132,55 @@ function registerColors() {
|
|
|
132
132
|
light: "#007ACC",
|
|
133
133
|
hcDark: "#75BEFF",
|
|
134
134
|
hcLight: "#007ACC"
|
|
135
|
-
}, ( localize(
|
|
135
|
+
}, ( localize(8789, "Debug toolbar icon for pause.")));
|
|
136
136
|
const debugIconStopForeground = registerColor("debugIcon.stopForeground", {
|
|
137
137
|
dark: "#F48771",
|
|
138
138
|
light: "#A1260D",
|
|
139
139
|
hcDark: "#F48771",
|
|
140
140
|
hcLight: "#A1260D"
|
|
141
|
-
}, ( localize(
|
|
141
|
+
}, ( localize(8790, "Debug toolbar icon for stop.")));
|
|
142
142
|
const debugIconDisconnectForeground = registerColor("debugIcon.disconnectForeground", {
|
|
143
143
|
dark: "#F48771",
|
|
144
144
|
light: "#A1260D",
|
|
145
145
|
hcDark: "#F48771",
|
|
146
146
|
hcLight: "#A1260D"
|
|
147
|
-
}, ( localize(
|
|
147
|
+
}, ( localize(8791, "Debug toolbar icon for disconnect.")));
|
|
148
148
|
const debugIconRestartForeground = registerColor("debugIcon.restartForeground", {
|
|
149
149
|
dark: "#89D185",
|
|
150
150
|
light: "#388A34",
|
|
151
151
|
hcDark: "#89D185",
|
|
152
152
|
hcLight: "#388A34"
|
|
153
|
-
}, ( localize(
|
|
153
|
+
}, ( localize(8792, "Debug toolbar icon for restart.")));
|
|
154
154
|
const debugIconStepOverForeground = registerColor("debugIcon.stepOverForeground", {
|
|
155
155
|
dark: "#75BEFF",
|
|
156
156
|
light: "#007ACC",
|
|
157
157
|
hcDark: "#75BEFF",
|
|
158
158
|
hcLight: "#007ACC"
|
|
159
|
-
}, ( localize(
|
|
159
|
+
}, ( localize(8793, "Debug toolbar icon for step over.")));
|
|
160
160
|
const debugIconStepIntoForeground = registerColor("debugIcon.stepIntoForeground", {
|
|
161
161
|
dark: "#75BEFF",
|
|
162
162
|
light: "#007ACC",
|
|
163
163
|
hcDark: "#75BEFF",
|
|
164
164
|
hcLight: "#007ACC"
|
|
165
|
-
}, ( localize(
|
|
165
|
+
}, ( localize(8794, "Debug toolbar icon for step into.")));
|
|
166
166
|
const debugIconStepOutForeground = registerColor("debugIcon.stepOutForeground", {
|
|
167
167
|
dark: "#75BEFF",
|
|
168
168
|
light: "#007ACC",
|
|
169
169
|
hcDark: "#75BEFF",
|
|
170
170
|
hcLight: "#007ACC"
|
|
171
|
-
}, ( localize(
|
|
171
|
+
}, ( localize(8795, "Debug toolbar icon for step over.")));
|
|
172
172
|
const debugIconContinueForeground = registerColor("debugIcon.continueForeground", {
|
|
173
173
|
dark: "#75BEFF",
|
|
174
174
|
light: "#007ACC",
|
|
175
175
|
hcDark: "#75BEFF",
|
|
176
176
|
hcLight: "#007ACC"
|
|
177
|
-
}, ( localize(
|
|
177
|
+
}, ( localize(8796, "Debug toolbar icon for continue.")));
|
|
178
178
|
const debugIconStepBackForeground = registerColor("debugIcon.stepBackForeground", {
|
|
179
179
|
dark: "#75BEFF",
|
|
180
180
|
light: "#007ACC",
|
|
181
181
|
hcDark: "#75BEFF",
|
|
182
182
|
hcLight: "#007ACC"
|
|
183
|
-
}, ( localize(
|
|
183
|
+
}, ( localize(8797, "Debug toolbar icon for step back.")));
|
|
184
184
|
registerThemingParticipant((theme, collector) => {
|
|
185
185
|
const badgeBackgroundColor = theme.getColor(badgeBackground);
|
|
186
186
|
const badgeForegroundColor = theme.getColor(badgeForeground);
|
|
@@ -87,35 +87,35 @@ const BREAK_WHEN_VALUE_IS_ACCESSED_ID = "debug.breakWhenValueIsAccessed";
|
|
|
87
87
|
const BREAK_WHEN_VALUE_IS_READ_ID = "debug.breakWhenValueIsRead";
|
|
88
88
|
const TOGGLE_EXCEPTION_BREAKPOINTS_ID = "debug.toggleExceptionBreakpoints";
|
|
89
89
|
const ATTACH_TO_CURRENT_CODE_RENDERER = "debug.attachToCurrentCodeRenderer";
|
|
90
|
-
const DEBUG_COMMAND_CATEGORY = ( localize2(
|
|
91
|
-
const RESTART_LABEL = ( localize2(
|
|
92
|
-
const STEP_OVER_LABEL = ( localize2(
|
|
93
|
-
const STEP_INTO_LABEL = ( localize2(
|
|
94
|
-
const STEP_INTO_TARGET_LABEL = ( localize2(
|
|
95
|
-
const STEP_OUT_LABEL = ( localize2(
|
|
96
|
-
const PAUSE_LABEL = ( localize2(
|
|
97
|
-
const DISCONNECT_LABEL = ( localize2(
|
|
98
|
-
const DISCONNECT_AND_SUSPEND_LABEL = ( localize2(
|
|
99
|
-
const STOP_LABEL = ( localize2(
|
|
100
|
-
const CONTINUE_LABEL = ( localize2(
|
|
101
|
-
const FOCUS_SESSION_LABEL = ( localize2(
|
|
102
|
-
const SELECT_AND_START_LABEL = ( localize2(
|
|
103
|
-
const DEBUG_CONFIGURE_LABEL = ( localize(
|
|
104
|
-
const DEBUG_START_LABEL = ( localize2(
|
|
105
|
-
const DEBUG_RUN_LABEL = ( localize2(
|
|
106
|
-
const NEXT_DEBUG_CONSOLE_LABEL = ( localize2(
|
|
107
|
-
const PREV_DEBUG_CONSOLE_LABEL = ( localize2(
|
|
108
|
-
const OPEN_LOADED_SCRIPTS_LABEL = ( localize2(
|
|
109
|
-
const CALLSTACK_TOP_LABEL = ( localize2(
|
|
110
|
-
const CALLSTACK_BOTTOM_LABEL = ( localize2(
|
|
111
|
-
const CALLSTACK_UP_LABEL = ( localize2(
|
|
112
|
-
const CALLSTACK_DOWN_LABEL = ( localize2(
|
|
113
|
-
const COPY_EVALUATE_PATH_LABEL = ( localize2(
|
|
114
|
-
const COPY_VALUE_LABEL = ( localize2(
|
|
115
|
-
const COPY_ADDRESS_LABEL = ( localize2(
|
|
116
|
-
const ADD_TO_WATCH_LABEL = ( localize2(
|
|
117
|
-
const SELECT_DEBUG_CONSOLE_LABEL = ( localize2(
|
|
118
|
-
const SELECT_DEBUG_SESSION_LABEL = ( localize2(
|
|
90
|
+
const DEBUG_COMMAND_CATEGORY = ( localize2(8798, "Debug"));
|
|
91
|
+
const RESTART_LABEL = ( localize2(8799, "Restart"));
|
|
92
|
+
const STEP_OVER_LABEL = ( localize2(8800, "Step Over"));
|
|
93
|
+
const STEP_INTO_LABEL = ( localize2(8801, "Step Into"));
|
|
94
|
+
const STEP_INTO_TARGET_LABEL = ( localize2(8802, "Step Into Target"));
|
|
95
|
+
const STEP_OUT_LABEL = ( localize2(8803, "Step Out"));
|
|
96
|
+
const PAUSE_LABEL = ( localize2(8804, "Pause"));
|
|
97
|
+
const DISCONNECT_LABEL = ( localize2(8805, "Disconnect"));
|
|
98
|
+
const DISCONNECT_AND_SUSPEND_LABEL = ( localize2(8806, "Disconnect and Suspend"));
|
|
99
|
+
const STOP_LABEL = ( localize2(8807, "Stop"));
|
|
100
|
+
const CONTINUE_LABEL = ( localize2(8808, "Continue"));
|
|
101
|
+
const FOCUS_SESSION_LABEL = ( localize2(8809, "Focus Session"));
|
|
102
|
+
const SELECT_AND_START_LABEL = ( localize2(8810, "Select and Start Debugging"));
|
|
103
|
+
const DEBUG_CONFIGURE_LABEL = ( localize(8811, "Open '{0}'", "launch.json"));
|
|
104
|
+
const DEBUG_START_LABEL = ( localize2(8812, "Start Debugging"));
|
|
105
|
+
const DEBUG_RUN_LABEL = ( localize2(8813, "Start Without Debugging"));
|
|
106
|
+
const NEXT_DEBUG_CONSOLE_LABEL = ( localize2(8814, "Focus Next Debug Console"));
|
|
107
|
+
const PREV_DEBUG_CONSOLE_LABEL = ( localize2(8815, "Focus Previous Debug Console"));
|
|
108
|
+
const OPEN_LOADED_SCRIPTS_LABEL = ( localize2(8816, "Open Loaded Script..."));
|
|
109
|
+
const CALLSTACK_TOP_LABEL = ( localize2(8817, "Navigate to Top of Call Stack"));
|
|
110
|
+
const CALLSTACK_BOTTOM_LABEL = ( localize2(8818, "Navigate to Bottom of Call Stack"));
|
|
111
|
+
const CALLSTACK_UP_LABEL = ( localize2(8819, "Navigate Up Call Stack"));
|
|
112
|
+
const CALLSTACK_DOWN_LABEL = ( localize2(8820, "Navigate Down Call Stack"));
|
|
113
|
+
const COPY_EVALUATE_PATH_LABEL = ( localize2(8821, "Copy as Expression"));
|
|
114
|
+
const COPY_VALUE_LABEL = ( localize2(8822, "Copy Value"));
|
|
115
|
+
const COPY_ADDRESS_LABEL = ( localize2(8823, "Copy Address"));
|
|
116
|
+
const ADD_TO_WATCH_LABEL = ( localize2(8824, "Add to Watch"));
|
|
117
|
+
const SELECT_DEBUG_CONSOLE_LABEL = ( localize2(8825, "Select Debug Console"));
|
|
118
|
+
const SELECT_DEBUG_SESSION_LABEL = ( localize2(8826, "Select Debug Session"));
|
|
119
119
|
const DEBUG_QUICK_ACCESS_PREFIX = "debug ";
|
|
120
120
|
const DEBUG_CONSOLE_QUICK_ACCESS_PREFIX = "debug consoles ";
|
|
121
121
|
let dataBreakpointInfoResponse;
|
|
@@ -342,7 +342,7 @@ CommandsRegistry.registerCommand({
|
|
|
342
342
|
_id: t.id
|
|
343
343
|
})));
|
|
344
344
|
const pick = await quickInputService.pick(picks, {
|
|
345
|
-
placeHolder: ( localize(
|
|
345
|
+
placeHolder: ( localize(8827, "Choose the specific location"))
|
|
346
346
|
});
|
|
347
347
|
if (!pick) {
|
|
348
348
|
return;
|
|
@@ -353,7 +353,7 @@ CommandsRegistry.registerCommand({
|
|
|
353
353
|
}
|
|
354
354
|
}
|
|
355
355
|
}
|
|
356
|
-
return notificationService.warn(( localize(
|
|
356
|
+
return notificationService.warn(( localize(8828, "No executable code is associated at the current cursor position.")));
|
|
357
357
|
}
|
|
358
358
|
});
|
|
359
359
|
CommandsRegistry.registerCommand({
|
|
@@ -387,7 +387,7 @@ CommandsRegistry.registerCommand({
|
|
|
387
387
|
MenuRegistry.appendMenuItem(MenuId.EditorContext, {
|
|
388
388
|
command: {
|
|
389
389
|
id: JUMP_TO_CURSOR_ID,
|
|
390
|
-
title: ( localize(
|
|
390
|
+
title: ( localize(8829, "Jump to Cursor")),
|
|
391
391
|
category: DEBUG_COMMAND_CATEGORY
|
|
392
392
|
},
|
|
393
393
|
when: ( ContextKeyExpr.and(CONTEXT_JUMP_TO_CURSOR_SUPPORTED, EditorContextKeys.editorTextFocus)),
|
|
@@ -558,7 +558,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
558
558
|
label: target.label
|
|
559
559
|
}));
|
|
560
560
|
} else {
|
|
561
|
-
qp.placeholder = ( localize(
|
|
561
|
+
qp.placeholder = ( localize(8830, "No step targets available"));
|
|
562
562
|
}
|
|
563
563
|
});
|
|
564
564
|
}
|
|
@@ -946,7 +946,7 @@ registerAction2(class AddConfigurationAction extends Action2 {
|
|
|
946
946
|
constructor() {
|
|
947
947
|
super({
|
|
948
948
|
id: ADD_CONFIGURATION_ID,
|
|
949
|
-
title: ( localize2(
|
|
949
|
+
title: ( localize2(8831, "Add Configuration...")),
|
|
950
950
|
category: DEBUG_COMMAND_CATEGORY,
|
|
951
951
|
f1: true,
|
|
952
952
|
menu: {
|
|
@@ -1007,7 +1007,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
1007
1007
|
MenuRegistry.appendMenuItem(MenuId.EditorContext, {
|
|
1008
1008
|
command: {
|
|
1009
1009
|
id: TOGGLE_INLINE_BREAKPOINT_ID,
|
|
1010
|
-
title: ( localize(
|
|
1010
|
+
title: ( localize(8832, "Add Inline Breakpoint")),
|
|
1011
1011
|
category: DEBUG_COMMAND_CATEGORY
|
|
1012
1012
|
},
|
|
1013
1013
|
when: ( ContextKeyExpr.and(CONTEXT_IN_DEBUG_MODE, ( PanelFocusContext.toNegated()), EditorContextKeys.editorTextFocus, ( ChatContextKeys.inChatSession.toNegated()))),
|
|
@@ -1043,7 +1043,7 @@ registerAction2(class ToggleExceptionBreakpointsAction extends Action2 {
|
|
|
1043
1043
|
constructor() {
|
|
1044
1044
|
super({
|
|
1045
1045
|
id: TOGGLE_EXCEPTION_BREAKPOINTS_ID,
|
|
1046
|
-
title: ( localize2(
|
|
1046
|
+
title: ( localize2(8833, "Toggle Exception Breakpoints")),
|
|
1047
1047
|
category: DEBUG_COMMAND_CATEGORY,
|
|
1048
1048
|
f1: true,
|
|
1049
1049
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -1065,7 +1065,7 @@ registerAction2(class ToggleExceptionBreakpointsAction extends Action2 {
|
|
|
1065
1065
|
}
|
|
1066
1066
|
const disposables = ( new DisposableStore());
|
|
1067
1067
|
const quickPick = disposables.add(quickInputService.createQuickPick());
|
|
1068
|
-
quickPick.placeholder = ( localize(
|
|
1068
|
+
quickPick.placeholder = ( localize(8834, "Pick enabled exception breakpoints"));
|
|
1069
1069
|
quickPick.canSelectMany = true;
|
|
1070
1070
|
quickPick.matchOnDescription = true;
|
|
1071
1071
|
quickPick.matchOnDetail = true;
|
|
@@ -1116,7 +1116,7 @@ registerAction2(class extends Action2 {
|
|
|
1116
1116
|
constructor() {
|
|
1117
1117
|
super({
|
|
1118
1118
|
id: ATTACH_TO_CURRENT_CODE_RENDERER,
|
|
1119
|
-
title: ( localize2(
|
|
1119
|
+
title: ( localize2(8835, "Attach to Current Code Renderer"))
|
|
1120
1120
|
});
|
|
1121
1121
|
}
|
|
1122
1122
|
async run(accessor) {
|
|
@@ -71,8 +71,8 @@ registerColor("editor.inlineValuesForeground", {
|
|
|
71
71
|
light: "#00000080",
|
|
72
72
|
hcDark: "#ffffff80",
|
|
73
73
|
hcLight: "#00000080"
|
|
74
|
-
}, ( localize(
|
|
75
|
-
registerColor("editor.inlineValuesBackground", "#ffc80033", ( localize(
|
|
74
|
+
}, ( localize(8867, "Color for the debug inline value text.")));
|
|
75
|
+
registerColor("editor.inlineValuesBackground", "#ffc80033", ( localize(8868, "Color for the debug inline value background.")));
|
|
76
76
|
class InlineSegment {
|
|
77
77
|
constructor(column, text) {
|
|
78
78
|
this.column = column;
|
|
@@ -113,7 +113,7 @@ let DebugHoverWidget = class DebugHoverWidget {
|
|
|
113
113
|
this.treeContainer.setAttribute("role", "tree");
|
|
114
114
|
const tip = append(this.complexValueContainer, $(".tip"));
|
|
115
115
|
tip.textContent = ( localize(
|
|
116
|
-
|
|
116
|
+
8869,
|
|
117
117
|
"Hold {0} key to switch to editor language hover",
|
|
118
118
|
isMacintosh ? "Option" : "Alt"
|
|
119
119
|
));
|
|
@@ -372,10 +372,10 @@ let DebugHoverWidget = class DebugHoverWidget {
|
|
|
372
372
|
DebugHoverWidget = DebugHoverWidget_1 = ( __decorate([( __param(1, IDebugService)), ( __param(2, IInstantiationService)), ( __param(3, IMenuService)), ( __param(4, IContextKeyService)), ( __param(5, IContextMenuService))], DebugHoverWidget));
|
|
373
373
|
class DebugHoverAccessibilityProvider {
|
|
374
374
|
getWidgetAriaLabel() {
|
|
375
|
-
return localize(
|
|
375
|
+
return localize(8870, "Debug Hover");
|
|
376
376
|
}
|
|
377
377
|
getAriaLabel(element) {
|
|
378
|
-
return localize(
|
|
378
|
+
return localize(8871, "{0}, value {1}, variables, debug", element.name, element.value);
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
381
|
class DebugHoverDataSource extends AbstractExpressionDataSource {
|
|
@@ -3,92 +3,92 @@ import { Codicon } from '../../../../base/common/codicons.js';
|
|
|
3
3
|
import { localize } from '../../../../nls.js';
|
|
4
4
|
import { registerIcon } from '../../../../platform/theme/common/iconRegistry.js';
|
|
5
5
|
|
|
6
|
-
const debugConsoleViewIcon = registerIcon("debug-console-view-icon", Codicon.debugConsole, ( localize(
|
|
7
|
-
const runViewIcon = registerIcon("run-view-icon", Codicon.debugAlt, ( localize(
|
|
8
|
-
const variablesViewIcon = registerIcon("variables-view-icon", Codicon.debugAlt, ( localize(
|
|
9
|
-
const watchViewIcon = registerIcon("watch-view-icon", Codicon.debugAlt, ( localize(
|
|
10
|
-
const callStackViewIcon = registerIcon("callstack-view-icon", Codicon.debugAlt, ( localize(
|
|
11
|
-
const breakpointsViewIcon = registerIcon("breakpoints-view-icon", Codicon.debugAlt, ( localize(
|
|
12
|
-
const loadedScriptsViewIcon = registerIcon("loaded-scripts-view-icon", Codicon.debugAlt, ( localize(
|
|
6
|
+
const debugConsoleViewIcon = registerIcon("debug-console-view-icon", Codicon.debugConsole, ( localize(8872, "View icon of the debug console view.")));
|
|
7
|
+
const runViewIcon = registerIcon("run-view-icon", Codicon.debugAlt, ( localize(8873, "View icon of the run view.")));
|
|
8
|
+
const variablesViewIcon = registerIcon("variables-view-icon", Codicon.debugAlt, ( localize(8874, "View icon of the variables view.")));
|
|
9
|
+
const watchViewIcon = registerIcon("watch-view-icon", Codicon.debugAlt, ( localize(8875, "View icon of the watch view.")));
|
|
10
|
+
const callStackViewIcon = registerIcon("callstack-view-icon", Codicon.debugAlt, ( localize(8876, "View icon of the call stack view.")));
|
|
11
|
+
const breakpointsViewIcon = registerIcon("breakpoints-view-icon", Codicon.debugAlt, ( localize(8877, "View icon of the breakpoints view.")));
|
|
12
|
+
const loadedScriptsViewIcon = registerIcon("loaded-scripts-view-icon", Codicon.debugAlt, ( localize(8878, "View icon of the loaded scripts view.")));
|
|
13
13
|
const breakpoint = {
|
|
14
|
-
regular: registerIcon("debug-breakpoint", Codicon.debugBreakpoint, ( localize(
|
|
14
|
+
regular: registerIcon("debug-breakpoint", Codicon.debugBreakpoint, ( localize(8879, "Icon for breakpoints."))),
|
|
15
15
|
disabled: registerIcon(
|
|
16
16
|
"debug-breakpoint-disabled",
|
|
17
17
|
Codicon.debugBreakpointDisabled,
|
|
18
|
-
( localize(
|
|
18
|
+
( localize(8880, "Icon for disabled breakpoints."))
|
|
19
19
|
),
|
|
20
20
|
unverified: registerIcon(
|
|
21
21
|
"debug-breakpoint-unverified",
|
|
22
22
|
Codicon.debugBreakpointUnverified,
|
|
23
|
-
( localize(
|
|
23
|
+
( localize(8881, "Icon for unverified breakpoints."))
|
|
24
24
|
),
|
|
25
|
-
pending: registerIcon("debug-breakpoint-pending", Codicon.debugBreakpointPending, ( localize(
|
|
25
|
+
pending: registerIcon("debug-breakpoint-pending", Codicon.debugBreakpointPending, ( localize(8882, "Icon for breakpoints waiting on another breakpoint.")))
|
|
26
26
|
};
|
|
27
27
|
const functionBreakpoint = {
|
|
28
28
|
regular: registerIcon(
|
|
29
29
|
"debug-breakpoint-function",
|
|
30
30
|
Codicon.debugBreakpointFunction,
|
|
31
|
-
( localize(
|
|
31
|
+
( localize(8883, "Icon for function breakpoints."))
|
|
32
32
|
),
|
|
33
33
|
disabled: registerIcon(
|
|
34
34
|
"debug-breakpoint-function-disabled",
|
|
35
35
|
Codicon.debugBreakpointFunctionDisabled,
|
|
36
|
-
( localize(
|
|
36
|
+
( localize(8884, "Icon for disabled function breakpoints."))
|
|
37
37
|
),
|
|
38
38
|
unverified: registerIcon(
|
|
39
39
|
"debug-breakpoint-function-unverified",
|
|
40
40
|
Codicon.debugBreakpointFunctionUnverified,
|
|
41
|
-
( localize(
|
|
41
|
+
( localize(8885, "Icon for unverified function breakpoints."))
|
|
42
42
|
)
|
|
43
43
|
};
|
|
44
44
|
const conditionalBreakpoint = {
|
|
45
45
|
regular: registerIcon(
|
|
46
46
|
"debug-breakpoint-conditional",
|
|
47
47
|
Codicon.debugBreakpointConditional,
|
|
48
|
-
( localize(
|
|
48
|
+
( localize(8886, "Icon for conditional breakpoints."))
|
|
49
49
|
),
|
|
50
50
|
disabled: registerIcon(
|
|
51
51
|
"debug-breakpoint-conditional-disabled",
|
|
52
52
|
Codicon.debugBreakpointConditionalDisabled,
|
|
53
|
-
( localize(
|
|
53
|
+
( localize(8887, "Icon for disabled conditional breakpoints."))
|
|
54
54
|
),
|
|
55
55
|
unverified: registerIcon(
|
|
56
56
|
"debug-breakpoint-conditional-unverified",
|
|
57
57
|
Codicon.debugBreakpointConditionalUnverified,
|
|
58
|
-
( localize(
|
|
58
|
+
( localize(8888, "Icon for unverified conditional breakpoints."))
|
|
59
59
|
)
|
|
60
60
|
};
|
|
61
61
|
const dataBreakpoint = {
|
|
62
|
-
regular: registerIcon("debug-breakpoint-data", Codicon.debugBreakpointData, ( localize(
|
|
62
|
+
regular: registerIcon("debug-breakpoint-data", Codicon.debugBreakpointData, ( localize(8889, "Icon for data breakpoints."))),
|
|
63
63
|
disabled: registerIcon(
|
|
64
64
|
"debug-breakpoint-data-disabled",
|
|
65
65
|
Codicon.debugBreakpointDataDisabled,
|
|
66
|
-
( localize(
|
|
66
|
+
( localize(8890, "Icon for disabled data breakpoints."))
|
|
67
67
|
),
|
|
68
68
|
unverified: registerIcon(
|
|
69
69
|
"debug-breakpoint-data-unverified",
|
|
70
70
|
Codicon.debugBreakpointDataUnverified,
|
|
71
|
-
( localize(
|
|
71
|
+
( localize(8891, "Icon for unverified data breakpoints."))
|
|
72
72
|
)
|
|
73
73
|
};
|
|
74
74
|
const logBreakpoint = {
|
|
75
|
-
regular: registerIcon("debug-breakpoint-log", Codicon.debugBreakpointLog, ( localize(
|
|
75
|
+
regular: registerIcon("debug-breakpoint-log", Codicon.debugBreakpointLog, ( localize(8892, "Icon for log breakpoints."))),
|
|
76
76
|
disabled: registerIcon(
|
|
77
77
|
"debug-breakpoint-log-disabled",
|
|
78
78
|
Codicon.debugBreakpointLogDisabled,
|
|
79
|
-
( localize(
|
|
79
|
+
( localize(8893, "Icon for disabled log breakpoint."))
|
|
80
80
|
),
|
|
81
81
|
unverified: registerIcon(
|
|
82
82
|
"debug-breakpoint-log-unverified",
|
|
83
83
|
Codicon.debugBreakpointLogUnverified,
|
|
84
|
-
( localize(
|
|
84
|
+
( localize(8894, "Icon for unverified log breakpoints."))
|
|
85
85
|
)
|
|
86
86
|
};
|
|
87
|
-
const debugBreakpointHint = registerIcon("debug-hint", Codicon.debugHint, ( localize(
|
|
87
|
+
const debugBreakpointHint = registerIcon("debug-hint", Codicon.debugHint, ( localize(8895, "Icon for breakpoint hints shown on hover in editor glyph margin.")));
|
|
88
88
|
const debugBreakpointUnsupported = registerIcon(
|
|
89
89
|
"debug-breakpoint-unsupported",
|
|
90
90
|
Codicon.debugBreakpointUnsupported,
|
|
91
|
-
( localize(
|
|
91
|
+
( localize(8896, "Icon for unsupported breakpoints."))
|
|
92
92
|
);
|
|
93
93
|
const allBreakpoints = [
|
|
94
94
|
breakpoint,
|
|
@@ -97,41 +97,41 @@ const allBreakpoints = [
|
|
|
97
97
|
dataBreakpoint,
|
|
98
98
|
logBreakpoint
|
|
99
99
|
];
|
|
100
|
-
const debugStackframe = registerIcon("debug-stackframe", Codicon.debugStackframe, ( localize(
|
|
101
|
-
const debugStackframeFocused = registerIcon("debug-stackframe-focused", Codicon.debugStackframeFocused, ( localize(
|
|
102
|
-
const debugGripper = registerIcon("debug-gripper", Codicon.gripper, ( localize(
|
|
103
|
-
const debugRestartFrame = registerIcon("debug-restart-frame", Codicon.debugRestartFrame, ( localize(
|
|
104
|
-
const debugStop = registerIcon("debug-stop", Codicon.debugStop, ( localize(
|
|
105
|
-
const debugDisconnect = registerIcon("debug-disconnect", Codicon.debugDisconnect, ( localize(
|
|
106
|
-
const debugRestart = registerIcon("debug-restart", Codicon.debugRestart, ( localize(
|
|
107
|
-
const debugStepOver = registerIcon("debug-step-over", Codicon.debugStepOver, ( localize(
|
|
108
|
-
const debugStepInto = registerIcon("debug-step-into", Codicon.debugStepInto, ( localize(
|
|
109
|
-
const debugStepOut = registerIcon("debug-step-out", Codicon.debugStepOut, ( localize(
|
|
110
|
-
const debugStepBack = registerIcon("debug-step-back", Codicon.debugStepBack, ( localize(
|
|
111
|
-
const debugPause = registerIcon("debug-pause", Codicon.debugPause, ( localize(
|
|
112
|
-
const debugContinue = registerIcon("debug-continue", Codicon.debugContinue, ( localize(
|
|
113
|
-
const debugReverseContinue = registerIcon("debug-reverse-continue", Codicon.debugReverseContinue, ( localize(
|
|
114
|
-
const debugRun = registerIcon("debug-run", Codicon.run, ( localize(
|
|
115
|
-
const debugStart = registerIcon("debug-start", Codicon.debugStart, ( localize(
|
|
116
|
-
const debugConfigure = registerIcon("debug-configure", Codicon.gear, ( localize(
|
|
117
|
-
registerIcon("debug-console", Codicon.gear, ( localize(
|
|
118
|
-
const debugRemoveConfig = registerIcon("debug-remove-config", Codicon.trash, ( localize(
|
|
119
|
-
registerIcon("debug-collapse-all", Codicon.collapseAll, ( localize(
|
|
120
|
-
const callstackViewSession = registerIcon("callstack-view-session", Codicon.bug, ( localize(
|
|
121
|
-
const debugConsoleClearAll = registerIcon("debug-console-clear-all", Codicon.clearAll, ( localize(
|
|
122
|
-
const watchExpressionsRemoveAll = registerIcon("watch-expressions-remove-all", Codicon.closeAll, ( localize(
|
|
123
|
-
const watchExpressionRemove = registerIcon("watch-expression-remove", Codicon.removeClose, ( localize(
|
|
124
|
-
const watchExpressionsAdd = registerIcon("watch-expressions-add", Codicon.add, ( localize(
|
|
125
|
-
const watchExpressionsAddFuncBreakpoint = registerIcon("watch-expressions-add-function-breakpoint", Codicon.add, ( localize(
|
|
100
|
+
const debugStackframe = registerIcon("debug-stackframe", Codicon.debugStackframe, ( localize(8897, "Icon for a stackframe shown in the editor glyph margin.")));
|
|
101
|
+
const debugStackframeFocused = registerIcon("debug-stackframe-focused", Codicon.debugStackframeFocused, ( localize(8898, "Icon for a focused stackframe shown in the editor glyph margin.")));
|
|
102
|
+
const debugGripper = registerIcon("debug-gripper", Codicon.gripper, ( localize(8899, "Icon for the debug bar gripper.")));
|
|
103
|
+
const debugRestartFrame = registerIcon("debug-restart-frame", Codicon.debugRestartFrame, ( localize(8900, "Icon for the debug restart frame action.")));
|
|
104
|
+
const debugStop = registerIcon("debug-stop", Codicon.debugStop, ( localize(8901, "Icon for the debug stop action.")));
|
|
105
|
+
const debugDisconnect = registerIcon("debug-disconnect", Codicon.debugDisconnect, ( localize(8902, "Icon for the debug disconnect action.")));
|
|
106
|
+
const debugRestart = registerIcon("debug-restart", Codicon.debugRestart, ( localize(8903, "Icon for the debug restart action.")));
|
|
107
|
+
const debugStepOver = registerIcon("debug-step-over", Codicon.debugStepOver, ( localize(8904, "Icon for the debug step over action.")));
|
|
108
|
+
const debugStepInto = registerIcon("debug-step-into", Codicon.debugStepInto, ( localize(8905, "Icon for the debug step into action.")));
|
|
109
|
+
const debugStepOut = registerIcon("debug-step-out", Codicon.debugStepOut, ( localize(8906, "Icon for the debug step out action.")));
|
|
110
|
+
const debugStepBack = registerIcon("debug-step-back", Codicon.debugStepBack, ( localize(8907, "Icon for the debug step back action.")));
|
|
111
|
+
const debugPause = registerIcon("debug-pause", Codicon.debugPause, ( localize(8908, "Icon for the debug pause action.")));
|
|
112
|
+
const debugContinue = registerIcon("debug-continue", Codicon.debugContinue, ( localize(8909, "Icon for the debug continue action.")));
|
|
113
|
+
const debugReverseContinue = registerIcon("debug-reverse-continue", Codicon.debugReverseContinue, ( localize(8910, "Icon for the debug reverse continue action.")));
|
|
114
|
+
const debugRun = registerIcon("debug-run", Codicon.run, ( localize(8911, "Icon for the run or debug action.")));
|
|
115
|
+
const debugStart = registerIcon("debug-start", Codicon.debugStart, ( localize(8912, "Icon for the debug start action.")));
|
|
116
|
+
const debugConfigure = registerIcon("debug-configure", Codicon.gear, ( localize(8913, "Icon for the debug configure action.")));
|
|
117
|
+
registerIcon("debug-console", Codicon.gear, ( localize(8914, "Icon for the debug console open action.")));
|
|
118
|
+
const debugRemoveConfig = registerIcon("debug-remove-config", Codicon.trash, ( localize(8915, "Icon for removing debug configurations.")));
|
|
119
|
+
registerIcon("debug-collapse-all", Codicon.collapseAll, ( localize(8916, "Icon for the collapse all action in the debug views.")));
|
|
120
|
+
const callstackViewSession = registerIcon("callstack-view-session", Codicon.bug, ( localize(8917, "Icon for the session icon in the call stack view.")));
|
|
121
|
+
const debugConsoleClearAll = registerIcon("debug-console-clear-all", Codicon.clearAll, ( localize(8918, "Icon for the clear all action in the debug console.")));
|
|
122
|
+
const watchExpressionsRemoveAll = registerIcon("watch-expressions-remove-all", Codicon.closeAll, ( localize(8919, "Icon for the Remove All action in the watch view.")));
|
|
123
|
+
const watchExpressionRemove = registerIcon("watch-expression-remove", Codicon.removeClose, ( localize(8920, "Icon for the Remove action in the watch view.")));
|
|
124
|
+
const watchExpressionsAdd = registerIcon("watch-expressions-add", Codicon.add, ( localize(8921, "Icon for the add action in the watch view.")));
|
|
125
|
+
const watchExpressionsAddFuncBreakpoint = registerIcon("watch-expressions-add-function-breakpoint", Codicon.add, ( localize(8922, "Icon for the add function breakpoint action in the watch view.")));
|
|
126
126
|
const watchExpressionsAddDataBreakpoint = registerIcon(
|
|
127
127
|
"watch-expressions-add-data-breakpoint",
|
|
128
128
|
Codicon.variableGroup,
|
|
129
|
-
( localize(
|
|
129
|
+
( localize(8923, "Icon for the add data breakpoint action in the breakpoints view."))
|
|
130
130
|
);
|
|
131
|
-
const breakpointsRemoveAll = registerIcon("breakpoints-remove-all", Codicon.closeAll, ( localize(
|
|
132
|
-
const breakpointsActivate = registerIcon("breakpoints-activate", Codicon.activateBreakpoints, ( localize(
|
|
133
|
-
const debugConsoleEvaluationInput = registerIcon("debug-console-evaluation-input", Codicon.arrowSmallRight, ( localize(
|
|
134
|
-
const debugConsoleEvaluationPrompt = registerIcon("debug-console-evaluation-prompt", Codicon.chevronRight, ( localize(
|
|
135
|
-
const debugInspectMemory = registerIcon("debug-inspect-memory", Codicon.fileBinary, ( localize(
|
|
131
|
+
const breakpointsRemoveAll = registerIcon("breakpoints-remove-all", Codicon.closeAll, ( localize(8924, "Icon for the Remove All action in the breakpoints view.")));
|
|
132
|
+
const breakpointsActivate = registerIcon("breakpoints-activate", Codicon.activateBreakpoints, ( localize(8925, "Icon for the activate action in the breakpoints view.")));
|
|
133
|
+
const debugConsoleEvaluationInput = registerIcon("debug-console-evaluation-input", Codicon.arrowSmallRight, ( localize(8926, "Icon for the debug evaluation input marker.")));
|
|
134
|
+
const debugConsoleEvaluationPrompt = registerIcon("debug-console-evaluation-prompt", Codicon.chevronRight, ( localize(8927, "Icon for the debug evaluation prompt.")));
|
|
135
|
+
const debugInspectMemory = registerIcon("debug-inspect-memory", Codicon.fileBinary, ( localize(8928, "Icon for the inspect memory action.")));
|
|
136
136
|
|
|
137
137
|
export { allBreakpoints, breakpoint, breakpointsActivate, breakpointsRemoveAll, breakpointsViewIcon, callStackViewIcon, callstackViewSession, conditionalBreakpoint, dataBreakpoint, debugBreakpointHint, debugBreakpointUnsupported, debugConfigure, debugConsoleClearAll, debugConsoleEvaluationInput, debugConsoleEvaluationPrompt, debugConsoleViewIcon, debugContinue, debugDisconnect, debugGripper, debugInspectMemory, debugPause, debugRemoveConfig, debugRestart, debugRestartFrame, debugReverseContinue, debugRun, debugStackframe, debugStackframeFocused, debugStart, debugStepBack, debugStepInto, debugStepOut, debugStepOver, debugStop, functionBreakpoint, loadedScriptsViewIcon, logBreakpoint, runViewIcon, variablesViewIcon, watchExpressionRemove, watchExpressionsAdd, watchExpressionsAddDataBreakpoint, watchExpressionsAddFuncBreakpoint, watchExpressionsRemoveAll, watchViewIcon };
|
|
@@ -19,7 +19,7 @@ async function showDebugSessionMenu(accessor, selectAndStartID) {
|
|
|
19
19
|
});
|
|
20
20
|
localDisposableStore.add(quickPick);
|
|
21
21
|
quickPick.matchOnLabel = quickPick.matchOnDescription = quickPick.matchOnDetail = quickPick.sortByLabel = false;
|
|
22
|
-
quickPick.placeholder = ( localize(
|
|
22
|
+
quickPick.placeholder = ( localize(8966, "Search debug sessions by name"));
|
|
23
23
|
const pickItems = _getPicksAndActiveItem(
|
|
24
24
|
quickPick.value,
|
|
25
25
|
selectAndStartID,
|
|
@@ -80,7 +80,7 @@ function _getPicksAndActiveItem(filter, selectAndStartID, debugService, viewsSer
|
|
|
80
80
|
type: "separator"
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
|
-
const createDebugSessionLabel = ( localize(
|
|
83
|
+
const createDebugSessionLabel = ( localize(8967, "Start a New Debug Session"));
|
|
84
84
|
debugConsolePicks.push({
|
|
85
85
|
label: `$(plus) ${createDebugSessionLabel}`,
|
|
86
86
|
ariaLabel: createDebugSessionLabel,
|
|
@@ -97,7 +97,7 @@ function _getSessionInfo(session) {
|
|
|
97
97
|
let description = "";
|
|
98
98
|
let ariaLabel = "";
|
|
99
99
|
if (parentName) {
|
|
100
|
-
ariaLabel = ( localize(
|
|
100
|
+
ariaLabel = ( localize(8968, "Session {0} spawned from {1}", label, parentName));
|
|
101
101
|
description = parentName;
|
|
102
102
|
}
|
|
103
103
|
return {
|
|
@@ -29,13 +29,13 @@ import { widgetClose } from '../../../../platform/theme/common/iconRegistry.js';
|
|
|
29
29
|
|
|
30
30
|
registerCss(exceptionWidget);
|
|
31
31
|
const $ = $$1;
|
|
32
|
-
const debugExceptionWidgetBorder = registerColor("debugExceptionWidget.border", "#a31515", ( localize(
|
|
32
|
+
const debugExceptionWidgetBorder = registerColor("debugExceptionWidget.border", "#a31515", ( localize(9003, "Exception widget border color.")));
|
|
33
33
|
const debugExceptionWidgetBackground = registerColor("debugExceptionWidget.background", {
|
|
34
34
|
dark: "#420b0d",
|
|
35
35
|
light: "#f1dfde",
|
|
36
36
|
hcDark: "#420b0d",
|
|
37
37
|
hcLight: "#f1dfde"
|
|
38
|
-
}, ( localize(
|
|
38
|
+
}, ( localize(9004, "Exception widget background color.")));
|
|
39
39
|
let ExceptionWidget = class ExceptionWidget extends ZoneWidget {
|
|
40
40
|
constructor(
|
|
41
41
|
editor,
|
|
@@ -88,10 +88,10 @@ let ExceptionWidget = class ExceptionWidget extends ZoneWidget {
|
|
|
88
88
|
append(title, label);
|
|
89
89
|
const actions = $(".actions");
|
|
90
90
|
append(title, actions);
|
|
91
|
-
label.textContent = this.exceptionInfo.id ? ( localize(
|
|
91
|
+
label.textContent = this.exceptionInfo.id ? ( localize(9005, "Exception has occurred: {0}", this.exceptionInfo.id)) : ( localize(9006, "Exception has occurred."));
|
|
92
92
|
let ariaLabel = label.textContent;
|
|
93
93
|
const actionBar = this._disposables.add(( new ActionBar(actions)));
|
|
94
|
-
actionBar.push(( new Action("editor.closeExceptionWidget", ( localize(
|
|
94
|
+
actionBar.push(( new Action("editor.closeExceptionWidget", ( localize(9007, "Close")), ThemeIcon.asClassName(widgetClose), true, async () => {
|
|
95
95
|
const contribution = this.editor.getContribution(EDITOR_CONTRIBUTION_ID);
|
|
96
96
|
contribution?.closeExceptionWidget();
|
|
97
97
|
})), {
|
|
@@ -345,8 +345,8 @@ let LinkDetector = class LinkDetector {
|
|
|
345
345
|
return;
|
|
346
346
|
}
|
|
347
347
|
link.classList.add("link");
|
|
348
|
-
const followLink = uri && this.tunnelService.canTunnel(uri) ? ( localize(
|
|
349
|
-
const title = link.ariaLabel = fulltext ? (isMacintosh ? ( localize(
|
|
348
|
+
const followLink = uri && this.tunnelService.canTunnel(uri) ? ( localize(9008, "follow link using forwarded port")) : ( localize(9009, "follow link"));
|
|
349
|
+
const title = link.ariaLabel = fulltext ? (isMacintosh ? ( localize(9010, "Cmd + click to {0}\n{1}", followLink, fulltext)) : ( localize(9011, "Ctrl + click to {0}\n{1}", followLink, fulltext))) : (isMacintosh ? ( localize(9012, "Cmd + click to {0}", followLink)) : ( localize(9013, "Ctrl + click to {0}", followLink)));
|
|
350
350
|
if (hoverBehavior.type === DebugLinkHoverBehavior.Rich) {
|
|
351
351
|
hoverBehavior.store.add(
|
|
352
352
|
this.hoverService.setupManagedHover(getDefaultHoverDelegate("element"), link, title)
|