@codingame/monaco-vscode-debug-service-override 17.2.0 → 18.0.0
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 +18 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +116 -111
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +7 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +13 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +22 -22
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +45 -44
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +19 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +21 -21
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +10 -11
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +46 -46
- package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +12 -12
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
|
@@ -35,6 +35,7 @@ import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/h
|
|
|
35
35
|
import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
|
|
36
36
|
import { AccessibilityCommandId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/common/accessibilityCommands';
|
|
37
37
|
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
38
|
+
import { hasNativeContextMenu } from '@codingame/monaco-vscode-api/vscode/vs/platform/window/common/window';
|
|
38
39
|
|
|
39
40
|
var StartDebugActionViewItem_1;
|
|
40
41
|
const $ = $$1;
|
|
@@ -60,7 +61,7 @@ let StartDebugActionViewItem = class StartDebugActionViewItem extends BaseAction
|
|
|
60
61
|
-1,
|
|
61
62
|
contextViewService,
|
|
62
63
|
defaultSelectBoxStyles,
|
|
63
|
-
{ ariaLabel: ( localize(
|
|
64
|
+
{ ariaLabel: ( localize(5777, 'Debug Launch Configurations')), useCustomDrawn: !hasNativeContextMenu(this.configurationService) }
|
|
64
65
|
));
|
|
65
66
|
this.selectBox.setFocusable(false);
|
|
66
67
|
this.toDispose.push(this.selectBox);
|
|
@@ -219,7 +220,7 @@ let StartDebugActionViewItem = class StartDebugActionViewItem extends BaseAction
|
|
|
219
220
|
});
|
|
220
221
|
});
|
|
221
222
|
if (this.debugOptions.length === 0) {
|
|
222
|
-
this.debugOptions.push({ label: ( localize(
|
|
223
|
+
this.debugOptions.push({ label: ( localize(5778, "No Configurations")), handler: async () => false });
|
|
223
224
|
}
|
|
224
225
|
this.debugOptions.push({ label: StartDebugActionViewItem_1.SEPARATOR, handler: () => Promise.resolve(false) });
|
|
225
226
|
disabledIdxs.push(this.debugOptions.length - 1);
|
|
@@ -237,7 +238,7 @@ let StartDebugActionViewItem = class StartDebugActionViewItem extends BaseAction
|
|
|
237
238
|
});
|
|
238
239
|
});
|
|
239
240
|
manager.getLaunches().filter(l => !l.hidden).forEach(l => {
|
|
240
|
-
const label = inWorkspace ? ( localize(
|
|
241
|
+
const label = inWorkspace ? ( localize(5779, "Add Config ({0})...", l.name)) : ( localize(5780, "Add Configuration..."));
|
|
241
242
|
this.debugOptions.push({
|
|
242
243
|
label, handler: async () => {
|
|
243
244
|
await this.commandService.executeCommand(ADD_CONFIGURATION_ID, ( l.uri.toString()));
|
|
@@ -257,11 +258,11 @@ let StartDebugActionViewItem = class StartDebugActionViewItem extends BaseAction
|
|
|
257
258
|
keybinding = this.keybindingService.lookupKeybinding(AccessibilityCommandId.OpenAccessibilityHelp, this.contextKeyService)?.getLabel() ?? undefined;
|
|
258
259
|
}
|
|
259
260
|
if (keybinding) {
|
|
260
|
-
ariaLabel = ( localize(
|
|
261
|
+
ariaLabel = ( localize(5781, "{0}, use ({1}) for accessibility help", ariaLabel, keybinding));
|
|
261
262
|
}
|
|
262
263
|
else {
|
|
263
264
|
ariaLabel = ( localize(
|
|
264
|
-
|
|
265
|
+
5782,
|
|
265
266
|
"{0}, run the command Open Accessibility Help which is currently not triggerable via keybinding.",
|
|
266
267
|
ariaLabel
|
|
267
268
|
));
|
|
@@ -281,7 +282,7 @@ StartDebugActionViewItem = StartDebugActionViewItem_1 = ( __decorate([
|
|
|
281
282
|
], StartDebugActionViewItem));
|
|
282
283
|
let FocusSessionActionViewItem = class FocusSessionActionViewItem extends SelectActionViewItem {
|
|
283
284
|
constructor(action, session, debugService, contextViewService, configurationService) {
|
|
284
|
-
super(null, action, [], -1, contextViewService, defaultSelectBoxStyles, { ariaLabel: ( localize(
|
|
285
|
+
super(null, action, [], -1, contextViewService, defaultSelectBoxStyles, { ariaLabel: ( localize(5783, 'Debug Session')), useCustomDrawn: !hasNativeContextMenu(configurationService) });
|
|
285
286
|
this.debugService = debugService;
|
|
286
287
|
this.configurationService = configurationService;
|
|
287
288
|
this._register(this.debugService.getViewModel().onDidFocusSession(() => {
|
|
@@ -24,7 +24,7 @@ import { Debugger } from '../common/debugger.js';
|
|
|
24
24
|
import { debuggersExtPoint, breakpointsExtPoint, launchSchema, presentationSchema } from '../common/debugSchemas.js';
|
|
25
25
|
import { TaskDefinitionRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskDefinitionRegistry';
|
|
26
26
|
import { ITaskService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
27
|
-
import { launchSchemaId } from '@codingame/monaco-vscode-
|
|
27
|
+
import { launchSchemaId } from '@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common/vscode/vs/workbench/services/configuration/common/configuration';
|
|
28
28
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
29
29
|
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
30
30
|
import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
@@ -87,7 +87,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
87
87
|
delta.added.forEach(added => {
|
|
88
88
|
added.value.forEach(rawAdapter => {
|
|
89
89
|
if (!rawAdapter.type || (typeof rawAdapter.type !== 'string')) {
|
|
90
|
-
added.collector.error(( localize(
|
|
90
|
+
added.collector.error(( localize(5784, "Debugger 'type' can not be omitted and must be of type 'string'.")));
|
|
91
91
|
}
|
|
92
92
|
if (rawAdapter.type !== '*') {
|
|
93
93
|
const existing = this.getDebugger(rawAdapter.type);
|
|
@@ -137,7 +137,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
137
137
|
'name': {
|
|
138
138
|
type: 'string',
|
|
139
139
|
description: ( localize(
|
|
140
|
-
|
|
140
|
+
5785,
|
|
141
141
|
"Name of configuration; appears in the launch configuration dropdown menu."
|
|
142
142
|
)),
|
|
143
143
|
default: 'Launch'
|
|
@@ -145,7 +145,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
145
145
|
'debugServer': {
|
|
146
146
|
type: 'number',
|
|
147
147
|
description: ( localize(
|
|
148
|
-
|
|
148
|
+
5786,
|
|
149
149
|
"For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"
|
|
150
150
|
)),
|
|
151
151
|
default: 4711
|
|
@@ -156,7 +156,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
156
156
|
}],
|
|
157
157
|
default: '',
|
|
158
158
|
defaultSnippets: [{ body: { task: '', type: '' } }],
|
|
159
|
-
description: ( localize(
|
|
159
|
+
description: ( localize(5787, "Task to run before debug session starts.")),
|
|
160
160
|
examples: this.taskLabels,
|
|
161
161
|
},
|
|
162
162
|
'postDebugTask': {
|
|
@@ -165,7 +165,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
165
165
|
}],
|
|
166
166
|
default: '',
|
|
167
167
|
defaultSnippets: [{ body: { task: '', type: '' } }],
|
|
168
|
-
description: ( localize(
|
|
168
|
+
description: ( localize(5788, "Task to run after debug session ends.")),
|
|
169
169
|
examples: this.taskLabels,
|
|
170
170
|
},
|
|
171
171
|
'presentation': presentationSchema,
|
|
@@ -173,7 +173,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
173
173
|
'suppressMultipleSessionWarning': {
|
|
174
174
|
type: 'boolean',
|
|
175
175
|
description: ( localize(
|
|
176
|
-
|
|
176
|
+
5789,
|
|
177
177
|
"Disable the warning when trying to start the same debug configuration more than once."
|
|
178
178
|
)),
|
|
179
179
|
default: true
|
|
@@ -327,11 +327,11 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
327
327
|
const { confirmed } = await this.dialogService.confirm({
|
|
328
328
|
type: Severity.Warning,
|
|
329
329
|
message: ( localize(
|
|
330
|
-
|
|
330
|
+
5790,
|
|
331
331
|
"You don't have an extension for debugging {0}. Should we find a {0} extension in the Marketplace?",
|
|
332
332
|
languageLabel
|
|
333
333
|
)),
|
|
334
|
-
primaryButton: ( localize(
|
|
334
|
+
primaryButton: ( localize(5791, "&&Find {0} extension", languageLabel))
|
|
335
335
|
});
|
|
336
336
|
if (confirmed) {
|
|
337
337
|
await this.commandService.executeCommand('debug.installAdditionalDebuggers', languageLabel);
|
|
@@ -358,7 +358,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
358
358
|
const picks = [];
|
|
359
359
|
const dynamic = await this.delegate.configurationManager().getDynamicProviders();
|
|
360
360
|
if (suggestedCandidates.length > 0) {
|
|
361
|
-
picks.push({ type: 'separator', label: ( localize(
|
|
361
|
+
picks.push({ type: 'separator', label: ( localize(5792, "Suggested")) }, ...( suggestedCandidates.map(c => ({ label: c.label, pick: () => ({ debugger: c }) }))));
|
|
362
362
|
}
|
|
363
363
|
if (otherCandidates.length > 0) {
|
|
364
364
|
if (picks.length > 0) {
|
|
@@ -372,7 +372,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
372
372
|
}
|
|
373
373
|
for (const d of dynamic) {
|
|
374
374
|
picks.push({
|
|
375
|
-
label: ( localize(
|
|
375
|
+
label: ( localize(5793, "More {0} options...", d.label)),
|
|
376
376
|
pick: async () => {
|
|
377
377
|
const cfg = await d.pick();
|
|
378
378
|
if (!cfg) {
|
|
@@ -383,14 +383,14 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
383
383
|
});
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
|
-
picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(
|
|
386
|
+
picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(5794, "Install an extension for {0}...", languageLabel)) : ( localize(5795, "Install extension...")) });
|
|
387
387
|
const contributed = this.menuService.getMenuActions(MenuId.DebugCreateConfiguration, this.contextKeyService);
|
|
388
388
|
for (const [, action] of contributed) {
|
|
389
389
|
for (const item of action) {
|
|
390
390
|
picks.push(item);
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
|
-
const placeHolder = ( localize(
|
|
393
|
+
const placeHolder = ( localize(5796, "Select debugger"));
|
|
394
394
|
return this.quickInputService.pick(picks, { activeItem: picks[0], placeHolder }).then(async (picked) => {
|
|
395
395
|
if (picked && 'pick' in picked && typeof picked.pick === 'function') {
|
|
396
396
|
return await picked.pick();
|
|
@@ -24,7 +24,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
|
|
|
24
24
|
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
25
25
|
import { WorkbenchState } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
|
|
26
26
|
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
27
|
-
import { launchSchemaId } from '@codingame/monaco-vscode-
|
|
27
|
+
import { launchSchemaId } from '@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common/vscode/vs/workbench/services/configuration/common/configuration';
|
|
28
28
|
import { ACTIVE_GROUP } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService';
|
|
29
29
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
30
30
|
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
@@ -186,7 +186,7 @@ let ConfigurationManager = class ConfigurationManager {
|
|
|
186
186
|
disposables.add(token);
|
|
187
187
|
const input = disposables.add(this.quickInputService.createQuickPick());
|
|
188
188
|
input.busy = true;
|
|
189
|
-
input.placeholder = ( localize(
|
|
189
|
+
input.placeholder = ( localize(5844, "Select Launch Configuration"));
|
|
190
190
|
const chosenPromise = ( new Promise(resolve => {
|
|
191
191
|
disposables.add(input.onDidAccept(() => resolve(input.activeItems[0])));
|
|
192
192
|
disposables.add(input.onDidTriggerItemButton(async (context) => {
|
|
@@ -230,7 +230,7 @@ let ConfigurationManager = class ConfigurationManager {
|
|
|
230
230
|
config,
|
|
231
231
|
buttons: [{
|
|
232
232
|
iconClass: ThemeIcon.asClassName(debugConfigure),
|
|
233
|
-
tooltip: ( localize(
|
|
233
|
+
tooltip: ( localize(5845, "Edit Debug Configuration in launch.json"))
|
|
234
234
|
}],
|
|
235
235
|
launch
|
|
236
236
|
})))));
|
|
@@ -548,7 +548,7 @@ let Launch = class Launch extends AbstractLaunch {
|
|
|
548
548
|
}
|
|
549
549
|
catch (error) {
|
|
550
550
|
throw ( new Error(( localize(
|
|
551
|
-
|
|
551
|
+
5846,
|
|
552
552
|
"Unable to create 'launch.json' file inside the '.vscode' folder ({0}).",
|
|
553
553
|
error.message
|
|
554
554
|
))));
|
|
@@ -602,7 +602,7 @@ let WorkspaceLaunch = class WorkspaceLaunch extends AbstractLaunch {
|
|
|
602
602
|
return this.contextService.getWorkspace().configuration;
|
|
603
603
|
}
|
|
604
604
|
get name() {
|
|
605
|
-
return localize(
|
|
605
|
+
return localize(5847, "workspace");
|
|
606
606
|
}
|
|
607
607
|
getConfig() {
|
|
608
608
|
return this.configurationService.inspect('launch').workspaceValue;
|
|
@@ -646,7 +646,7 @@ let UserLaunch = class UserLaunch extends AbstractLaunch {
|
|
|
646
646
|
return this.preferencesService.userSettingsResource;
|
|
647
647
|
}
|
|
648
648
|
get name() {
|
|
649
|
-
return localize(
|
|
649
|
+
return localize(5848, "user settings");
|
|
650
650
|
}
|
|
651
651
|
get hidden() {
|
|
652
652
|
return true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation";
|
|
2
2
|
import { DisposableStore } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
3
3
|
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
4
|
-
import { FastAndSlowPicks, IPickerQuickAccessItem, PickerQuickAccessProvider, Picks } from "@codingame/monaco-vscode-
|
|
4
|
+
import { FastAndSlowPicks, IPickerQuickAccessItem, PickerQuickAccessProvider, Picks } from "@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
|
|
5
5
|
import { IViewsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
6
6
|
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
7
7
|
export declare class DebugConsoleQuickAccess extends PickerQuickAccessProvider<IPickerQuickAccessItem> {
|
|
@@ -3,7 +3,7 @@ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib
|
|
|
3
3
|
import { matchesFuzzy } from '@codingame/monaco-vscode-api/vscode/vs/base/common/filters';
|
|
4
4
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
5
5
|
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
6
|
-
import { PickerQuickAccessProvider } from '@codingame/monaco-vscode-
|
|
6
|
+
import { PickerQuickAccessProvider } from '@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
7
7
|
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
8
8
|
import { DEBUG_CONSOLE_QUICK_ACCESS_PREFIX, SELECT_AND_START_ID } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
9
9
|
import { REPL_VIEW_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
@@ -27,7 +27,7 @@ let DebugConsoleQuickAccess = class DebugConsoleQuickAccess extends PickerQuickA
|
|
|
27
27
|
if (debugConsolePicks.length > 0) {
|
|
28
28
|
debugConsolePicks.push({ type: 'separator' });
|
|
29
29
|
}
|
|
30
|
-
const createTerminalLabel = ( localize(
|
|
30
|
+
const createTerminalLabel = ( localize(5849, "Start a New Debug Session"));
|
|
31
31
|
debugConsolePicks.push({
|
|
32
32
|
label: `$(plus) ${createTerminalLabel}`,
|
|
33
33
|
ariaLabel: createTerminalLabel,
|
|
@@ -32,8 +32,8 @@ class ToggleBreakpointAction extends Action2 {
|
|
|
32
32
|
super({
|
|
33
33
|
id: TOGGLE_BREAKPOINT_ID,
|
|
34
34
|
title: {
|
|
35
|
-
...( localize2(
|
|
36
|
-
mnemonicTitle: ( localize(
|
|
35
|
+
...( localize2(5850, "Debug: Toggle Breakpoint")),
|
|
36
|
+
mnemonicTitle: ( localize(5851, "Toggle &&Breakpoint")),
|
|
37
37
|
},
|
|
38
38
|
f1: true,
|
|
39
39
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -90,11 +90,11 @@ class ConditionalBreakpointAction extends EditorAction {
|
|
|
90
90
|
constructor() {
|
|
91
91
|
super({
|
|
92
92
|
id: 'editor.debug.action.conditionalBreakpoint',
|
|
93
|
-
label: ( localize2(
|
|
93
|
+
label: ( localize2(5852, "Debug: Add Conditional Breakpoint...")),
|
|
94
94
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
95
95
|
menuOpts: {
|
|
96
96
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
97
|
-
title: ( localize(
|
|
97
|
+
title: ( localize(5853, "&&Conditional Breakpoint...")),
|
|
98
98
|
group: '1_breakpoints',
|
|
99
99
|
order: 1,
|
|
100
100
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -113,12 +113,12 @@ class LogPointAction extends EditorAction {
|
|
|
113
113
|
constructor() {
|
|
114
114
|
super({
|
|
115
115
|
id: 'editor.debug.action.addLogPoint',
|
|
116
|
-
label: ( localize2(
|
|
116
|
+
label: ( localize2(5854, "Debug: Add Logpoint...")),
|
|
117
117
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
118
118
|
menuOpts: [
|
|
119
119
|
{
|
|
120
120
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
121
|
-
title: ( localize(
|
|
121
|
+
title: ( localize(5855, "&&Logpoint...")),
|
|
122
122
|
group: '1_breakpoints',
|
|
123
123
|
order: 4,
|
|
124
124
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -138,13 +138,13 @@ class TriggerByBreakpointAction extends EditorAction {
|
|
|
138
138
|
constructor() {
|
|
139
139
|
super({
|
|
140
140
|
id: 'editor.debug.action.triggerByBreakpoint',
|
|
141
|
-
label: ( localize(
|
|
141
|
+
label: ( localize(5856, "Debug: Add Triggered Breakpoint...")),
|
|
142
142
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
143
143
|
alias: 'Debug: Triggered Breakpoint...',
|
|
144
144
|
menuOpts: [
|
|
145
145
|
{
|
|
146
146
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
147
|
-
title: ( localize(
|
|
147
|
+
title: ( localize(5857, "&&Triggered Breakpoint...")),
|
|
148
148
|
group: '1_breakpoints',
|
|
149
149
|
order: 4,
|
|
150
150
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -164,12 +164,12 @@ class EditBreakpointAction extends EditorAction {
|
|
|
164
164
|
constructor() {
|
|
165
165
|
super({
|
|
166
166
|
id: 'editor.debug.action.editBreakpoint',
|
|
167
|
-
label: ( localize(
|
|
167
|
+
label: ( localize(5858, "Debug: Edit Breakpoint")),
|
|
168
168
|
alias: 'Debug: Edit Existing Breakpoint',
|
|
169
169
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
170
170
|
menuOpts: {
|
|
171
171
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
172
|
-
title: ( localize(
|
|
172
|
+
title: ( localize(5859, "&&Edit Breakpoint")),
|
|
173
173
|
group: '1_breakpoints',
|
|
174
174
|
order: 1,
|
|
175
175
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -204,8 +204,8 @@ class OpenDisassemblyViewAction extends Action2 {
|
|
|
204
204
|
super({
|
|
205
205
|
id: OpenDisassemblyViewAction.ID,
|
|
206
206
|
title: {
|
|
207
|
-
...( localize2(
|
|
208
|
-
mnemonicTitle: ( localize(
|
|
207
|
+
...( localize2(5860, "Open Disassembly View")),
|
|
208
|
+
mnemonicTitle: ( localize(5861, "&&DisassemblyView")),
|
|
209
209
|
},
|
|
210
210
|
precondition: CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE,
|
|
211
211
|
menu: [
|
|
@@ -240,11 +240,11 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
240
240
|
super({
|
|
241
241
|
id: ToggleDisassemblyViewSourceCodeAction.ID,
|
|
242
242
|
title: {
|
|
243
|
-
...( localize2(
|
|
244
|
-
mnemonicTitle: ( localize(
|
|
243
|
+
...( localize2(5862, "Toggle Source Code in Disassembly View")),
|
|
244
|
+
mnemonicTitle: ( localize(5863, "&&ToggleSource")),
|
|
245
245
|
},
|
|
246
246
|
metadata: {
|
|
247
|
-
description: ( localize2(
|
|
247
|
+
description: ( localize2(5864, 'Shows or hides source code in disassembly'))
|
|
248
248
|
},
|
|
249
249
|
f1: true,
|
|
250
250
|
});
|
|
@@ -259,7 +259,7 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
259
259
|
}
|
|
260
260
|
class RunToCursorAction extends EditorAction {
|
|
261
261
|
static { this.ID = 'editor.debug.action.runToCursor'; }
|
|
262
|
-
static { this.LABEL = ( localize2(
|
|
262
|
+
static { this.LABEL = ( localize2(5865, "Run to Cursor")); }
|
|
263
263
|
constructor() {
|
|
264
264
|
super({
|
|
265
265
|
id: RunToCursorAction.ID,
|
|
@@ -292,7 +292,7 @@ class RunToCursorAction extends EditorAction {
|
|
|
292
292
|
}
|
|
293
293
|
class SelectionToReplAction extends EditorAction {
|
|
294
294
|
static { this.ID = 'editor.debug.action.selectionToRepl'; }
|
|
295
|
-
static { this.LABEL = ( localize2(
|
|
295
|
+
static { this.LABEL = ( localize2(5866, "Evaluate in Debug Console")); }
|
|
296
296
|
constructor() {
|
|
297
297
|
super({
|
|
298
298
|
id: SelectionToReplAction.ID,
|
|
@@ -327,7 +327,7 @@ class SelectionToReplAction extends EditorAction {
|
|
|
327
327
|
}
|
|
328
328
|
class SelectionToWatchExpressionsAction extends EditorAction {
|
|
329
329
|
static { this.ID = 'editor.debug.action.selectionToWatch'; }
|
|
330
|
-
static { this.LABEL = ( localize2(
|
|
330
|
+
static { this.LABEL = ( localize2(5867, "Add to Watch")); }
|
|
331
331
|
constructor() {
|
|
332
332
|
super({
|
|
333
333
|
id: SelectionToWatchExpressionsAction.ID,
|
|
@@ -372,7 +372,7 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
372
372
|
constructor() {
|
|
373
373
|
super({
|
|
374
374
|
id: 'editor.debug.action.showDebugHover',
|
|
375
|
-
label: ( localize2(
|
|
375
|
+
label: ( localize2(5868, "Debug: Show Hover")),
|
|
376
376
|
precondition: CONTEXT_IN_DEBUG_MODE,
|
|
377
377
|
kbOpts: {
|
|
378
378
|
kbExpr: EditorContextKeys.editorTextFocus,
|
|
@@ -389,10 +389,10 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
389
389
|
return editor.getContribution(EDITOR_CONTRIBUTION_ID)?.showHover(position, true);
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
|
-
const NO_TARGETS_MESSAGE = ( localize(
|
|
392
|
+
const NO_TARGETS_MESSAGE = ( localize(5869, "Step targets are not available here"));
|
|
393
393
|
class StepIntoTargetsAction extends EditorAction {
|
|
394
394
|
static { this.ID = 'editor.debug.action.stepIntoTargets'; }
|
|
395
|
-
static { this.LABEL = ( localize(
|
|
395
|
+
static { this.LABEL = ( localize(5870, "Step Into Target")); }
|
|
396
396
|
constructor() {
|
|
397
397
|
super({
|
|
398
398
|
id: StepIntoTargetsAction.ID,
|
|
@@ -497,7 +497,7 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
|
|
|
497
497
|
constructor() {
|
|
498
498
|
super(true, {
|
|
499
499
|
id: 'editor.debug.action.goToNextBreakpoint',
|
|
500
|
-
label: ( localize2(
|
|
500
|
+
label: ( localize2(5871, "Debug: Go to Next Breakpoint")),
|
|
501
501
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
502
502
|
});
|
|
503
503
|
}
|
|
@@ -506,7 +506,7 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
|
|
|
506
506
|
constructor() {
|
|
507
507
|
super(false, {
|
|
508
508
|
id: 'editor.debug.action.goToPreviousBreakpoint',
|
|
509
|
-
label: ( localize2(
|
|
509
|
+
label: ( localize2(5872, "Debug: Go to Previous Breakpoint")),
|
|
510
510
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
511
511
|
});
|
|
512
512
|
}
|
|
@@ -515,7 +515,7 @@ class CloseExceptionWidgetAction extends EditorAction {
|
|
|
515
515
|
constructor() {
|
|
516
516
|
super({
|
|
517
517
|
id: 'editor.debug.action.closeExceptionWidget',
|
|
518
|
-
label: ( localize2(
|
|
518
|
+
label: ( localize2(5873, "Close Exception Widget")),
|
|
519
519
|
precondition: CONTEXT_EXCEPTION_WIDGET_VISIBLE,
|
|
520
520
|
kbOpts: {
|
|
521
521
|
primary: KeyCode.Escape,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IQuickPickSeparator } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput";
|
|
2
|
-
import { PickerQuickAccessProvider, IPickerQuickAccessItem } from "@codingame/monaco-vscode-
|
|
2
|
+
import { PickerQuickAccessProvider, IPickerQuickAccessItem } from "@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
|
|
3
3
|
import { INotificationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service";
|
|
4
4
|
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
5
5
|
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
-
import { PickerQuickAccessProvider, TriggerAction } from '@codingame/monaco-vscode-
|
|
3
|
+
import { PickerQuickAccessProvider, TriggerAction } from '@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
4
4
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
5
5
|
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
6
6
|
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
@@ -16,7 +16,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
16
16
|
constructor(debugService, contextService, commandService, notificationService) {
|
|
17
17
|
super(DEBUG_QUICK_ACCESS_PREFIX, {
|
|
18
18
|
noResultsPick: {
|
|
19
|
-
label: ( localize(
|
|
19
|
+
label: ( localize(5936, "No matching launch configurations"))
|
|
20
20
|
}
|
|
21
21
|
});
|
|
22
22
|
this.debugService = debugService;
|
|
@@ -42,7 +42,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
42
42
|
highlights: { label: highlights },
|
|
43
43
|
buttons: [{
|
|
44
44
|
iconClass: ThemeIcon.asClassName(debugConfigure),
|
|
45
|
-
tooltip: ( localize(
|
|
45
|
+
tooltip: ( localize(5937, "Configure Launch Configuration"))
|
|
46
46
|
}],
|
|
47
47
|
trigger: () => {
|
|
48
48
|
config.launch.openConfigFile({ preserveFocus: false });
|
|
@@ -59,7 +59,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
if (selectedConfiguration.name === config.name && selectedConfiguration.launch === config.launch) {
|
|
62
|
-
const separator = { type: 'separator', label: ( localize(
|
|
62
|
+
const separator = { type: 'separator', label: ( localize(5938, 'Most Recent')) };
|
|
63
63
|
picks.unshift(separator, pick);
|
|
64
64
|
continue;
|
|
65
65
|
}
|
|
@@ -73,7 +73,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
73
73
|
const dynamicProviders = await configManager.getDynamicProviders();
|
|
74
74
|
if (dynamicProviders.length > 0) {
|
|
75
75
|
picks.push({
|
|
76
|
-
type: 'separator', label: ( localize(
|
|
76
|
+
type: 'separator', label: ( localize(5939, "contributed"))
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
configManager.getRecentDynamicConfigurations().forEach(({ name, type }) => {
|
|
@@ -84,7 +84,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
84
84
|
highlights: { label: highlights },
|
|
85
85
|
buttons: [{
|
|
86
86
|
iconClass: ThemeIcon.asClassName(debugRemoveConfig),
|
|
87
|
-
tooltip: ( localize(
|
|
87
|
+
tooltip: ( localize(5940, "Remove Launch Configuration"))
|
|
88
88
|
}],
|
|
89
89
|
trigger: () => {
|
|
90
90
|
configManager.removeRecentDynamicConfigurations(name, type);
|
|
@@ -107,7 +107,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
107
107
|
dynamicProviders.forEach(provider => {
|
|
108
108
|
picks.push({
|
|
109
109
|
label: `$(folder) ${provider.label}...`,
|
|
110
|
-
ariaLabel: ( localize(
|
|
110
|
+
ariaLabel: ( localize(5941, "{0} contributed configurations", provider.label)),
|
|
111
111
|
accept: async () => {
|
|
112
112
|
const pick = await provider.pick();
|
|
113
113
|
if (pick) {
|
|
@@ -119,12 +119,12 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
119
119
|
});
|
|
120
120
|
const visibleLaunches = configManager.getLaunches().filter(launch => !launch.hidden);
|
|
121
121
|
if (visibleLaunches.length > 0) {
|
|
122
|
-
picks.push({ type: 'separator', label: ( localize(
|
|
122
|
+
picks.push({ type: 'separator', label: ( localize(5942, "configure")) });
|
|
123
123
|
}
|
|
124
124
|
for (const launch of visibleLaunches) {
|
|
125
125
|
const label = this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ?
|
|
126
|
-
( localize(
|
|
127
|
-
( localize(
|
|
126
|
+
( localize(5943, "Add Config ({0})...", launch.name)) :
|
|
127
|
+
( localize(5944, "Add Configuration..."));
|
|
128
128
|
picks.push({
|
|
129
129
|
label,
|
|
130
130
|
description: this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ? launch.name : '',
|