@codingame/monaco-vscode-debug-service-override 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 +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +104 -104
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +25 -25
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +20 -20
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +42 -42
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +36 -36
- 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.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +43 -43
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -11
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
|
@@ -65,7 +65,7 @@ import '../common/debugVisualizers.js';
|
|
|
65
65
|
|
|
66
66
|
registerCss(debug_contribution);
|
|
67
67
|
registerCss(debugHover);
|
|
68
|
-
const debugCategory = ( localize(
|
|
68
|
+
const debugCategory = ( localize(8650, "Debug"));
|
|
69
69
|
registerColors();
|
|
70
70
|
( Registry.as(Extensions.Workbench)).registerWorkbenchContribution(DebugStatusContribution, LifecyclePhase.Eventually);
|
|
71
71
|
( Registry.as(Extensions.Workbench)).registerWorkbenchContribution(DebugProgressContribution, LifecyclePhase.Eventually);
|
|
@@ -86,9 +86,9 @@ registerWorkbenchContribution2(
|
|
|
86
86
|
ctor: StartDebugQuickAccessProvider,
|
|
87
87
|
prefix: DEBUG_QUICK_ACCESS_PREFIX,
|
|
88
88
|
contextKey: "inLaunchConfigurationsPicker",
|
|
89
|
-
placeholder: ( localize(
|
|
89
|
+
placeholder: ( localize(8651, "Type the name of a launch configuration to run.")),
|
|
90
90
|
helpEntries: [{
|
|
91
|
-
description: ( localize(
|
|
91
|
+
description: ( localize(8652, "Start Debugging")),
|
|
92
92
|
commandId: SELECT_AND_START_ID,
|
|
93
93
|
commandCenterOrder: 50
|
|
94
94
|
}]
|
|
@@ -97,9 +97,9 @@ registerWorkbenchContribution2(
|
|
|
97
97
|
ctor: DebugConsoleQuickAccess,
|
|
98
98
|
prefix: DEBUG_CONSOLE_QUICK_ACCESS_PREFIX,
|
|
99
99
|
contextKey: "inDebugConsolePicker",
|
|
100
|
-
placeholder: ( localize(
|
|
100
|
+
placeholder: ( localize(8653, "Type the name of a debug console to open.")),
|
|
101
101
|
helpEntries: [{
|
|
102
|
-
description: ( localize(
|
|
102
|
+
description: ( localize(8654, "Show All Debug Consoles")),
|
|
103
103
|
commandId: SELECT_DEBUG_CONSOLE_ID
|
|
104
104
|
}]
|
|
105
105
|
});
|
|
@@ -131,7 +131,7 @@ const registerDebugCommandPaletteItem = (id, title, when, precondition) => {
|
|
|
131
131
|
});
|
|
132
132
|
};
|
|
133
133
|
registerDebugCommandPaletteItem(RESTART_SESSION_ID, RESTART_LABEL);
|
|
134
|
-
registerDebugCommandPaletteItem(TERMINATE_THREAD_ID, ( localize2(
|
|
134
|
+
registerDebugCommandPaletteItem(TERMINATE_THREAD_ID, ( localize2(8655, "Terminate Thread")), CONTEXT_IN_DEBUG_MODE, CONTEXT_TERMINATE_THREADS_SUPPORTED);
|
|
135
135
|
registerDebugCommandPaletteItem(STEP_OVER_ID, STEP_OVER_LABEL, CONTEXT_IN_DEBUG_MODE, ( CONTEXT_DEBUG_STATE.isEqualTo("stopped")));
|
|
136
136
|
registerDebugCommandPaletteItem(STEP_INTO_ID, STEP_INTO_LABEL, CONTEXT_IN_DEBUG_MODE, ( CONTEXT_DEBUG_STATE.isEqualTo("stopped")));
|
|
137
137
|
registerDebugCommandPaletteItem(
|
|
@@ -151,8 +151,8 @@ registerDebugCommandPaletteItem(
|
|
|
151
151
|
);
|
|
152
152
|
registerDebugCommandPaletteItem(STOP_ID, STOP_LABEL, CONTEXT_IN_DEBUG_MODE, ( ContextKeyExpr.or(( CONTEXT_FOCUSED_SESSION_IS_ATTACH.toNegated()), CONTEXT_TERMINATE_DEBUGGEE_SUPPORTED)));
|
|
153
153
|
registerDebugCommandPaletteItem(CONTINUE_ID, CONTINUE_LABEL, CONTEXT_IN_DEBUG_MODE, ( CONTEXT_DEBUG_STATE.isEqualTo("stopped")));
|
|
154
|
-
registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(
|
|
155
|
-
registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(
|
|
154
|
+
registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(8656, "Jump to Cursor")), CONTEXT_JUMP_TO_CURSOR_SUPPORTED);
|
|
155
|
+
registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(8657, "Set Next Statement")), CONTEXT_JUMP_TO_CURSOR_SUPPORTED);
|
|
156
156
|
registerDebugCommandPaletteItem(RunToCursorAction.ID, RunToCursorAction.LABEL, CONTEXT_DEBUGGERS_AVAILABLE);
|
|
157
157
|
registerDebugCommandPaletteItem(
|
|
158
158
|
SelectionToReplAction.ID,
|
|
@@ -163,7 +163,7 @@ registerDebugCommandPaletteItem(
|
|
|
163
163
|
SelectionToWatchExpressionsAction.ID,
|
|
164
164
|
SelectionToWatchExpressionsAction.LABEL
|
|
165
165
|
);
|
|
166
|
-
registerDebugCommandPaletteItem(TOGGLE_INLINE_BREAKPOINT_ID, ( localize2(
|
|
166
|
+
registerDebugCommandPaletteItem(TOGGLE_INLINE_BREAKPOINT_ID, ( localize2(8658, "Inline Breakpoint")));
|
|
167
167
|
registerDebugCommandPaletteItem(DEBUG_START_COMMAND_ID, DEBUG_START_LABEL, ( ContextKeyExpr.and(CONTEXT_DEBUGGERS_AVAILABLE, ( CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Initializing))))));
|
|
168
168
|
registerDebugCommandPaletteItem(DEBUG_RUN_COMMAND_ID, DEBUG_RUN_LABEL, ( ContextKeyExpr.and(CONTEXT_DEBUGGERS_AVAILABLE, ( CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Initializing))))));
|
|
169
169
|
registerDebugCommandPaletteItem(SELECT_AND_START_ID, SELECT_AND_START_LABEL, ( ContextKeyExpr.and(CONTEXT_DEBUGGERS_AVAILABLE, ( CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Initializing))))));
|
|
@@ -270,11 +270,11 @@ registerDebugViewMenuItem(
|
|
|
270
270
|
( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("thread")),
|
|
271
271
|
( CONTEXT_DEBUG_STATE.isEqualTo("stopped"))
|
|
272
272
|
);
|
|
273
|
-
registerDebugViewMenuItem(MenuId.DebugCallStackContext, TERMINATE_THREAD_ID, ( localize(
|
|
274
|
-
registerDebugViewMenuItem(MenuId.DebugCallStackContext, RESTART_FRAME_ID, ( localize(
|
|
275
|
-
registerDebugViewMenuItem(MenuId.DebugCallStackContext, COPY_STACK_TRACE_ID, ( localize(
|
|
276
|
-
registerDebugViewMenuItem(MenuId.DebugVariablesContext, VIEW_MEMORY_ID, ( localize(
|
|
277
|
-
registerDebugViewMenuItem(MenuId.DebugVariablesContext, SET_VARIABLE_ID, ( localize(
|
|
273
|
+
registerDebugViewMenuItem(MenuId.DebugCallStackContext, TERMINATE_THREAD_ID, ( localize(8655, "Terminate Thread")), 10, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("thread")), CONTEXT_TERMINATE_THREADS_SUPPORTED, "termination");
|
|
274
|
+
registerDebugViewMenuItem(MenuId.DebugCallStackContext, RESTART_FRAME_ID, ( localize(8659, "Restart Frame")), 10, ( ContextKeyExpr.and(( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("stackFrame")), CONTEXT_RESTART_FRAME_SUPPORTED)), CONTEXT_STACK_FRAME_SUPPORTS_RESTART);
|
|
275
|
+
registerDebugViewMenuItem(MenuId.DebugCallStackContext, COPY_STACK_TRACE_ID, ( localize(8660, "Copy Call Stack")), 20, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("stackFrame")), undefined, "3_modification");
|
|
276
|
+
registerDebugViewMenuItem(MenuId.DebugVariablesContext, VIEW_MEMORY_ID, ( localize(8661, "View Binary Data")), 15, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_IN_DEBUG_MODE, "inline", debugInspectMemory);
|
|
277
|
+
registerDebugViewMenuItem(MenuId.DebugVariablesContext, SET_VARIABLE_ID, ( localize(8662, "Set Value")), 10, ( ContextKeyExpr.or(CONTEXT_SET_VARIABLE_SUPPORTED, ( ContextKeyExpr.and(CONTEXT_VARIABLE_EVALUATE_NAME_PRESENT, CONTEXT_SET_EXPRESSION_SUPPORTED)))), ( CONTEXT_VARIABLE_IS_READONLY.toNegated()), "3_modification");
|
|
278
278
|
registerDebugViewMenuItem(
|
|
279
279
|
MenuId.DebugVariablesContext,
|
|
280
280
|
COPY_VALUE_ID,
|
|
@@ -302,18 +302,18 @@ registerDebugViewMenuItem(
|
|
|
302
302
|
undefined,
|
|
303
303
|
"z_commands"
|
|
304
304
|
);
|
|
305
|
-
registerDebugViewMenuItem(MenuId.DebugVariablesContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(
|
|
306
|
-
registerDebugViewMenuItem(MenuId.DebugVariablesContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(
|
|
305
|
+
registerDebugViewMenuItem(MenuId.DebugVariablesContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8663, "Break on Value Read")), 200, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, undefined, "z_commands");
|
|
306
|
+
registerDebugViewMenuItem(MenuId.DebugVariablesContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(8664, "Break on Value Change")), 210, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, undefined, "z_commands");
|
|
307
307
|
registerDebugViewMenuItem(
|
|
308
308
|
MenuId.DebugVariablesContext,
|
|
309
309
|
BREAK_WHEN_VALUE_IS_ACCESSED_ID,
|
|
310
|
-
( localize(
|
|
310
|
+
( localize(8665, "Break on Value Access")),
|
|
311
311
|
220,
|
|
312
312
|
CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED,
|
|
313
313
|
undefined,
|
|
314
314
|
"z_commands"
|
|
315
315
|
);
|
|
316
|
-
registerDebugViewMenuItem(MenuId.DebugHoverContext, VIEW_MEMORY_ID, ( localize(
|
|
316
|
+
registerDebugViewMenuItem(MenuId.DebugHoverContext, VIEW_MEMORY_ID, ( localize(8661, "View Binary Data")), 15, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_IN_DEBUG_MODE, "inline", debugInspectMemory);
|
|
317
317
|
registerDebugViewMenuItem(
|
|
318
318
|
MenuId.DebugHoverContext,
|
|
319
319
|
COPY_VALUE_ID,
|
|
@@ -341,9 +341,9 @@ registerDebugViewMenuItem(
|
|
|
341
341
|
undefined,
|
|
342
342
|
"z_commands"
|
|
343
343
|
);
|
|
344
|
-
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(
|
|
345
|
-
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(
|
|
346
|
-
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_IS_ACCESSED_ID, ( localize(
|
|
344
|
+
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8663, "Break on Value Read")), 200, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, undefined, "z_commands");
|
|
345
|
+
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(8664, "Break on Value Change")), 210, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, undefined, "z_commands");
|
|
346
|
+
registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_IS_ACCESSED_ID, ( localize(8665, "Break on Value Access")), 220, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, undefined, "z_commands");
|
|
347
347
|
registerDebugViewMenuItem(
|
|
348
348
|
MenuId.DebugWatchContext,
|
|
349
349
|
ADD_WATCH_ID,
|
|
@@ -353,9 +353,9 @@ registerDebugViewMenuItem(
|
|
|
353
353
|
undefined,
|
|
354
354
|
"3_modification"
|
|
355
355
|
);
|
|
356
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, EDIT_EXPRESSION_COMMAND_ID, ( localize(
|
|
357
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, SET_EXPRESSION_COMMAND_ID, ( localize(
|
|
358
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, COPY_VALUE_ID, ( localize(
|
|
356
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, EDIT_EXPRESSION_COMMAND_ID, ( localize(8666, "Edit Expression")), 20, ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), undefined, "3_modification");
|
|
357
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, SET_EXPRESSION_COMMAND_ID, ( localize(8662, "Set Value")), 30, ( ContextKeyExpr.or(( ContextKeyExpr.and(( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), CONTEXT_SET_EXPRESSION_SUPPORTED)), ( ContextKeyExpr.and(( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("variable")), CONTEXT_SET_VARIABLE_SUPPORTED)))), ( CONTEXT_VARIABLE_IS_READONLY.toNegated()), "3_modification");
|
|
358
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, COPY_VALUE_ID, ( localize(8667, "Copy Value")), 40, ( ContextKeyExpr.or(( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("variable")))), CONTEXT_IN_DEBUG_MODE, "3_modification");
|
|
359
359
|
registerDebugViewMenuItem(
|
|
360
360
|
MenuId.DebugWatchContext,
|
|
361
361
|
COPY_EVALUATE_PATH_ID,
|
|
@@ -365,8 +365,8 @@ registerDebugViewMenuItem(
|
|
|
365
365
|
CONTEXT_IN_DEBUG_MODE,
|
|
366
366
|
"3_modification"
|
|
367
367
|
);
|
|
368
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, VIEW_MEMORY_ID, ( localize(
|
|
369
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, REMOVE_EXPRESSION_COMMAND_ID, ( localize(
|
|
368
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, VIEW_MEMORY_ID, ( localize(8661, "View Binary Data")), 10, CONTEXT_CAN_VIEW_MEMORY, undefined, "inline", debugInspectMemory);
|
|
369
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, REMOVE_EXPRESSION_COMMAND_ID, ( localize(8668, "Remove Expression")), 20, ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), undefined, "inline", watchExpressionRemove);
|
|
370
370
|
registerDebugViewMenuItem(
|
|
371
371
|
MenuId.DebugWatchContext,
|
|
372
372
|
REMOVE_WATCH_EXPRESSIONS_COMMAND_ID,
|
|
@@ -376,9 +376,9 @@ registerDebugViewMenuItem(
|
|
|
376
376
|
undefined,
|
|
377
377
|
"z_commands"
|
|
378
378
|
);
|
|
379
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(
|
|
380
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(
|
|
381
|
-
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_IS_ACCESSED_ID, ( localize(
|
|
379
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8663, "Break on Value Read")), 200, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, undefined, "z_commands");
|
|
380
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_CHANGES_ID, ( localize(8664, "Break on Value Change")), 210, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, undefined, "z_commands");
|
|
381
|
+
registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_IS_ACCESSED_ID, ( localize(8665, "Break on Value Access")), 220, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, undefined, "z_commands");
|
|
382
382
|
registerDebugViewMenuItem(
|
|
383
383
|
MenuId.NotebookVariablesContext,
|
|
384
384
|
COPY_NOTEBOOK_VARIABLE_VALUE_ID,
|
|
@@ -428,7 +428,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
|
|
|
428
428
|
isSplitButton: {
|
|
429
429
|
togglePrimaryAction: true
|
|
430
430
|
},
|
|
431
|
-
title: ( localize2(
|
|
431
|
+
title: ( localize2(8669, "Run or Debug...")),
|
|
432
432
|
icon: debugRun,
|
|
433
433
|
group: "navigation",
|
|
434
434
|
order: -1
|
|
@@ -436,8 +436,8 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
|
|
|
436
436
|
MenuRegistry.appendMenuItem(MenuId.MenubarMainMenu, {
|
|
437
437
|
submenu: MenuId.MenubarDebugMenu,
|
|
438
438
|
title: {
|
|
439
|
-
...( localize2(
|
|
440
|
-
mnemonicTitle: ( localize(
|
|
439
|
+
...( localize2(8670, "Run")),
|
|
440
|
+
mnemonicTitle: ( localize(8671, "&&Run"))
|
|
441
441
|
},
|
|
442
442
|
order: 6,
|
|
443
443
|
when: ( IsSessionsWindowContext.negate())
|
|
@@ -446,7 +446,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
446
446
|
group: "1_debug",
|
|
447
447
|
command: {
|
|
448
448
|
id: DEBUG_START_COMMAND_ID,
|
|
449
|
-
title: ( localize(
|
|
449
|
+
title: ( localize(8672, "&&Start Debugging"))
|
|
450
450
|
},
|
|
451
451
|
order: 1,
|
|
452
452
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -455,7 +455,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
455
455
|
group: "1_debug",
|
|
456
456
|
command: {
|
|
457
457
|
id: DEBUG_RUN_COMMAND_ID,
|
|
458
|
-
title: ( localize(
|
|
458
|
+
title: ( localize(8673, "Run &&Without Debugging"))
|
|
459
459
|
},
|
|
460
460
|
order: 2,
|
|
461
461
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -464,7 +464,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
464
464
|
group: "1_debug",
|
|
465
465
|
command: {
|
|
466
466
|
id: STOP_ID,
|
|
467
|
-
title: ( localize(
|
|
467
|
+
title: ( localize(8674, "&&Stop Debugging")),
|
|
468
468
|
precondition: CONTEXT_IN_DEBUG_MODE
|
|
469
469
|
},
|
|
470
470
|
order: 3,
|
|
@@ -474,7 +474,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
474
474
|
group: "1_debug",
|
|
475
475
|
command: {
|
|
476
476
|
id: RESTART_SESSION_ID,
|
|
477
|
-
title: ( localize(
|
|
477
|
+
title: ( localize(8675, "&&Restart Debugging")),
|
|
478
478
|
precondition: CONTEXT_IN_DEBUG_MODE
|
|
479
479
|
},
|
|
480
480
|
order: 4,
|
|
@@ -484,7 +484,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
484
484
|
group: "2_configuration",
|
|
485
485
|
command: {
|
|
486
486
|
id: ADD_CONFIGURATION_ID,
|
|
487
|
-
title: ( localize(
|
|
487
|
+
title: ( localize(8676, "A&&dd Configuration..."))
|
|
488
488
|
},
|
|
489
489
|
order: 2,
|
|
490
490
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -493,7 +493,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
493
493
|
group: "3_step",
|
|
494
494
|
command: {
|
|
495
495
|
id: STEP_OVER_ID,
|
|
496
|
-
title: ( localize(
|
|
496
|
+
title: ( localize(8677, "Step &&Over")),
|
|
497
497
|
precondition: ( CONTEXT_DEBUG_STATE.isEqualTo("stopped"))
|
|
498
498
|
},
|
|
499
499
|
order: 1,
|
|
@@ -503,7 +503,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
503
503
|
group: "3_step",
|
|
504
504
|
command: {
|
|
505
505
|
id: STEP_INTO_ID,
|
|
506
|
-
title: ( localize(
|
|
506
|
+
title: ( localize(8678, "Step &&Into")),
|
|
507
507
|
precondition: ( CONTEXT_DEBUG_STATE.isEqualTo("stopped"))
|
|
508
508
|
},
|
|
509
509
|
order: 2,
|
|
@@ -513,7 +513,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
513
513
|
group: "3_step",
|
|
514
514
|
command: {
|
|
515
515
|
id: STEP_OUT_ID,
|
|
516
|
-
title: ( localize(
|
|
516
|
+
title: ( localize(8679, "Step O&&ut")),
|
|
517
517
|
precondition: ( CONTEXT_DEBUG_STATE.isEqualTo("stopped"))
|
|
518
518
|
},
|
|
519
519
|
order: 3,
|
|
@@ -523,7 +523,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
523
523
|
group: "3_step",
|
|
524
524
|
command: {
|
|
525
525
|
id: CONTINUE_ID,
|
|
526
|
-
title: ( localize(
|
|
526
|
+
title: ( localize(8680, "&&Continue")),
|
|
527
527
|
precondition: ( CONTEXT_DEBUG_STATE.isEqualTo("stopped"))
|
|
528
528
|
},
|
|
529
529
|
order: 4,
|
|
@@ -533,14 +533,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarNewBreakpointMenu, {
|
|
|
533
533
|
group: "1_breakpoints",
|
|
534
534
|
command: {
|
|
535
535
|
id: TOGGLE_INLINE_BREAKPOINT_ID,
|
|
536
|
-
title: ( localize(
|
|
536
|
+
title: ( localize(8681, "Inline Breakp&&oint"))
|
|
537
537
|
},
|
|
538
538
|
order: 2,
|
|
539
539
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
540
540
|
});
|
|
541
541
|
MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
542
542
|
group: "4_new_breakpoint",
|
|
543
|
-
title: ( localize(
|
|
543
|
+
title: ( localize(8682, "&&New Breakpoint")),
|
|
544
544
|
submenu: MenuId.MenubarNewBreakpointMenu,
|
|
545
545
|
order: 2,
|
|
546
546
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -558,7 +558,7 @@ MenuRegistry.appendMenuItem(MenuId.DebugDisassemblyContext, {
|
|
|
558
558
|
group: "3_breakpoints",
|
|
559
559
|
command: {
|
|
560
560
|
id: TOGGLE_BREAKPOINT_ID,
|
|
561
|
-
title: ( localize(
|
|
561
|
+
title: ( localize(8683, "Toggle Breakpoint"))
|
|
562
562
|
},
|
|
563
563
|
order: 2,
|
|
564
564
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -567,13 +567,13 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
|
|
|
567
567
|
group: "z_install",
|
|
568
568
|
command: {
|
|
569
569
|
id: "debug.installAdditionalDebuggers",
|
|
570
|
-
title: ( localize(
|
|
570
|
+
title: ( localize(8684, "&&Install Additional Debuggers..."))
|
|
571
571
|
},
|
|
572
572
|
order: 1
|
|
573
573
|
});
|
|
574
574
|
const VIEW_CONTAINER = ( Registry.as(Extensions$2.ViewContainersRegistry)).registerViewContainer({
|
|
575
575
|
id: DEBUG_PANEL_ID,
|
|
576
|
-
title: ( localize2(
|
|
576
|
+
title: ( localize2(8685, "Debug Console")),
|
|
577
577
|
icon: debugConsoleViewIcon,
|
|
578
578
|
ctorDescriptor: ( new SyncDescriptor(ViewPaneContainer, [DEBUG_PANEL_ID, {
|
|
579
579
|
mergeViewWithContainerWhenSingleView: true
|
|
@@ -586,7 +586,7 @@ const VIEW_CONTAINER = ( Registry.as(Extensions$2.ViewContainersRegistry)).regis
|
|
|
586
586
|
});
|
|
587
587
|
( Registry.as(Extensions$2.ViewsRegistry)).registerViews([{
|
|
588
588
|
id: REPL_VIEW_ID,
|
|
589
|
-
name: ( localize2(
|
|
589
|
+
name: ( localize2(8685, "Debug Console")),
|
|
590
590
|
containerIcon: debugConsoleViewIcon,
|
|
591
591
|
canToggleVisibility: true,
|
|
592
592
|
canMoveView: true,
|
|
@@ -594,7 +594,7 @@ const VIEW_CONTAINER = ( Registry.as(Extensions$2.ViewContainersRegistry)).regis
|
|
|
594
594
|
ctorDescriptor: ( new SyncDescriptor(Repl)),
|
|
595
595
|
openCommandActionDescriptor: {
|
|
596
596
|
id: "workbench.debug.action.toggleRepl",
|
|
597
|
-
mnemonicTitle: ( localize(
|
|
597
|
+
mnemonicTitle: ( localize(8686, "De&&bug Console")),
|
|
598
598
|
keybindings: {
|
|
599
599
|
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyY
|
|
600
600
|
},
|
|
@@ -603,10 +603,10 @@ const VIEW_CONTAINER = ( Registry.as(Extensions$2.ViewContainersRegistry)).regis
|
|
|
603
603
|
}], VIEW_CONTAINER);
|
|
604
604
|
const viewContainer = ( Registry.as(Extensions$2.ViewContainersRegistry)).registerViewContainer({
|
|
605
605
|
id: VIEWLET_ID,
|
|
606
|
-
title: ( localize2(
|
|
606
|
+
title: ( localize2(8687, "Run and Debug")),
|
|
607
607
|
openCommandActionDescriptor: {
|
|
608
608
|
id: VIEWLET_ID,
|
|
609
|
-
mnemonicTitle: ( localize(
|
|
609
|
+
mnemonicTitle: ( localize(8688, "&&Run")),
|
|
610
610
|
keybindings: {
|
|
611
611
|
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyD
|
|
612
612
|
},
|
|
@@ -620,7 +620,7 @@ const viewContainer = ( Registry.as(Extensions$2.ViewContainersRegistry)).regist
|
|
|
620
620
|
const viewsRegistry = ( Registry.as(Extensions$2.ViewsRegistry));
|
|
621
621
|
viewsRegistry.registerViews([{
|
|
622
622
|
id: VARIABLES_VIEW_ID,
|
|
623
|
-
name: ( localize2(
|
|
623
|
+
name: ( localize2(8689, "Variables")),
|
|
624
624
|
containerIcon: variablesViewIcon,
|
|
625
625
|
ctorDescriptor: ( new SyncDescriptor(VariablesView)),
|
|
626
626
|
order: 10,
|
|
@@ -634,7 +634,7 @@ viewsRegistry.registerViews([{
|
|
|
634
634
|
}], viewContainer);
|
|
635
635
|
viewsRegistry.registerViews([{
|
|
636
636
|
id: WATCH_VIEW_ID,
|
|
637
|
-
name: ( localize2(
|
|
637
|
+
name: ( localize2(8690, "Watch")),
|
|
638
638
|
containerIcon: watchViewIcon,
|
|
639
639
|
ctorDescriptor: ( new SyncDescriptor(WatchExpressionsView)),
|
|
640
640
|
order: 20,
|
|
@@ -648,7 +648,7 @@ viewsRegistry.registerViews([{
|
|
|
648
648
|
}], viewContainer);
|
|
649
649
|
viewsRegistry.registerViews([{
|
|
650
650
|
id: CALLSTACK_VIEW_ID,
|
|
651
|
-
name: ( localize2(
|
|
651
|
+
name: ( localize2(8691, "Call Stack")),
|
|
652
652
|
containerIcon: callStackViewIcon,
|
|
653
653
|
ctorDescriptor: ( new SyncDescriptor(CallStackView)),
|
|
654
654
|
order: 30,
|
|
@@ -662,7 +662,7 @@ viewsRegistry.registerViews([{
|
|
|
662
662
|
}], viewContainer);
|
|
663
663
|
viewsRegistry.registerViews([{
|
|
664
664
|
id: BREAKPOINTS_VIEW_ID,
|
|
665
|
-
name: ( localize2(
|
|
665
|
+
name: ( localize2(8692, "Breakpoints")),
|
|
666
666
|
containerIcon: breakpointsViewIcon,
|
|
667
667
|
ctorDescriptor: ( new SyncDescriptor(BreakpointsView)),
|
|
668
668
|
order: 40,
|
|
@@ -686,7 +686,7 @@ viewsRegistry.registerViews([{
|
|
|
686
686
|
}], viewContainer);
|
|
687
687
|
viewsRegistry.registerViews([{
|
|
688
688
|
id: LOADED_SCRIPTS_VIEW_ID,
|
|
689
|
-
name: ( localize2(
|
|
689
|
+
name: ( localize2(8693, "Loaded Scripts")),
|
|
690
690
|
containerIcon: loadedScriptsViewIcon,
|
|
691
691
|
ctorDescriptor: ( new SyncDescriptor(LoadedScriptsView)),
|
|
692
692
|
order: 35,
|
|
@@ -697,40 +697,40 @@ viewsRegistry.registerViews([{
|
|
|
697
697
|
when: ( ContextKeyExpr.and(CONTEXT_LOADED_SCRIPTS_SUPPORTED, ( CONTEXT_DEBUG_UX.isEqualTo("default"))))
|
|
698
698
|
}], viewContainer);
|
|
699
699
|
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
|
|
700
|
-
EditorPaneDescriptor.create(DisassemblyView, DISASSEMBLY_VIEW_ID, ( localize(
|
|
700
|
+
EditorPaneDescriptor.create(DisassemblyView, DISASSEMBLY_VIEW_ID, ( localize(8694, "Disassembly"))),
|
|
701
701
|
[( new SyncDescriptor(DisassemblyViewInput))]
|
|
702
702
|
);
|
|
703
703
|
const configurationRegistry = ( Registry.as(Extensions$3.Configuration));
|
|
704
704
|
configurationRegistry.registerConfiguration({
|
|
705
705
|
id: "debug",
|
|
706
706
|
order: 20,
|
|
707
|
-
title: ( localize(
|
|
707
|
+
title: ( localize(8695, "Debug")),
|
|
708
708
|
type: "object",
|
|
709
709
|
properties: {
|
|
710
710
|
"debug.showVariableTypes": {
|
|
711
711
|
type: "boolean",
|
|
712
|
-
description: ( localize(
|
|
712
|
+
description: ( localize(8696, "Show variable type in variable pane during debug session")),
|
|
713
713
|
default: false
|
|
714
714
|
},
|
|
715
715
|
"debug.allowBreakpointsEverywhere": {
|
|
716
716
|
type: "boolean",
|
|
717
|
-
description: ( localize(
|
|
717
|
+
description: ( localize(8697, "Allow setting breakpoints in any file.")),
|
|
718
718
|
default: false
|
|
719
719
|
},
|
|
720
720
|
"debug.gutterMiddleClickAction": {
|
|
721
721
|
type: "string",
|
|
722
722
|
enum: ["logpoint", "conditionalBreakpoint", "triggeredBreakpoint", "none"],
|
|
723
723
|
description: ( localize(
|
|
724
|
-
|
|
724
|
+
8698,
|
|
725
725
|
"Controls the action to perform when clicking the editor gutter with the middle mouse button."
|
|
726
726
|
)),
|
|
727
|
-
enumDescriptions: [( localize(
|
|
727
|
+
enumDescriptions: [( localize(8699, "Add Logpoint.")), ( localize(8700, "Add Conditional Breakpoint.")), ( localize(8701, "Add Triggered Breakpoint.")), ( localize(8702, "Don't perform any action."))],
|
|
728
728
|
default: "logpoint"
|
|
729
729
|
},
|
|
730
730
|
"debug.openExplorerOnEnd": {
|
|
731
731
|
type: "boolean",
|
|
732
732
|
description: ( localize(
|
|
733
|
-
|
|
733
|
+
8703,
|
|
734
734
|
"Automatically open the explorer view at the end of a debug session."
|
|
735
735
|
)),
|
|
736
736
|
default: false
|
|
@@ -738,7 +738,7 @@ configurationRegistry.registerConfiguration({
|
|
|
738
738
|
"debug.closeReadonlyTabsOnEnd": {
|
|
739
739
|
type: "boolean",
|
|
740
740
|
description: ( localize(
|
|
741
|
-
|
|
741
|
+
8704,
|
|
742
742
|
"At the end of a debug session, all the read-only tabs associated with that session will be closed"
|
|
743
743
|
)),
|
|
744
744
|
default: false
|
|
@@ -746,9 +746,9 @@ configurationRegistry.registerConfiguration({
|
|
|
746
746
|
"debug.inlineValues": {
|
|
747
747
|
type: "string",
|
|
748
748
|
"enum": ["on", "off", "auto"],
|
|
749
|
-
description: ( localize(
|
|
750
|
-
"enumDescriptions": [( localize(
|
|
751
|
-
|
|
749
|
+
description: ( localize(8705, "Show variable values inline in editor while debugging.")),
|
|
750
|
+
"enumDescriptions": [( localize(8706, "Always show variable values inline in editor while debugging.")), ( localize(8707, "Never show variable values inline in editor while debugging.")), ( localize(
|
|
751
|
+
8708,
|
|
752
752
|
"Show variable values inline in editor while debugging when the language supports inline value locations."
|
|
753
753
|
))],
|
|
754
754
|
default: "auto"
|
|
@@ -756,27 +756,27 @@ configurationRegistry.registerConfiguration({
|
|
|
756
756
|
"debug.toolBarLocation": {
|
|
757
757
|
enum: ["floating", "docked", "commandCenter", "hidden"],
|
|
758
758
|
markdownDescription: ( localize(
|
|
759
|
-
|
|
759
|
+
8709,
|
|
760
760
|
"Controls the location of the debug toolbar. Either `floating` in all views, `docked` in the debug view, `commandCenter` (requires {0}), or `hidden`.",
|
|
761
761
|
"`#window.commandCenter#`"
|
|
762
762
|
)),
|
|
763
763
|
default: "floating",
|
|
764
|
-
markdownEnumDescriptions: [( localize(
|
|
764
|
+
markdownEnumDescriptions: [( localize(8710, "Show debug toolbar in all views.")), ( localize(8711, "Show debug toolbar only in debug views.")), ( localize(8712, "`(Experimental)` Show debug toolbar in the command center.")), ( localize(8713, "Do not show debug toolbar."))]
|
|
765
765
|
},
|
|
766
766
|
"debug.showInStatusBar": {
|
|
767
767
|
enum: ["never", "always", "onFirstSessionStart"],
|
|
768
|
-
enumDescriptions: [( localize(
|
|
769
|
-
|
|
768
|
+
enumDescriptions: [( localize(8714, "Never show debug item in status bar")), ( localize(8715, "Always show debug item in status bar")), ( localize(
|
|
769
|
+
8716,
|
|
770
770
|
"Show debug item in status bar only after debug was started for the first time"
|
|
771
771
|
))],
|
|
772
|
-
description: ( localize(
|
|
772
|
+
description: ( localize(8717, "Controls when the debug status bar item should be visible.")),
|
|
773
773
|
default: "onFirstSessionStart"
|
|
774
774
|
},
|
|
775
775
|
"debug.internalConsoleOptions": INTERNAL_CONSOLE_OPTIONS_SCHEMA,
|
|
776
776
|
"debug.console.closeOnEnd": {
|
|
777
777
|
type: "boolean",
|
|
778
778
|
description: ( localize(
|
|
779
|
-
|
|
779
|
+
8718,
|
|
780
780
|
"Controls if the Debug Console should be automatically closed when the debug session ends."
|
|
781
781
|
)),
|
|
782
782
|
default: false
|
|
@@ -784,7 +784,7 @@ configurationRegistry.registerConfiguration({
|
|
|
784
784
|
"debug.terminal.clearBeforeReusing": {
|
|
785
785
|
type: "boolean",
|
|
786
786
|
description: ( localize(
|
|
787
|
-
|
|
787
|
+
8719,
|
|
788
788
|
"Before starting a new debug session in an integrated or external terminal, clear the terminal."
|
|
789
789
|
)),
|
|
790
790
|
default: false
|
|
@@ -797,43 +797,43 @@ configurationRegistry.registerConfiguration({
|
|
|
797
797
|
"openOnDebugBreak"
|
|
798
798
|
],
|
|
799
799
|
default: "openOnDebugBreak",
|
|
800
|
-
description: ( localize(
|
|
800
|
+
description: ( localize(8720, "Controls when the debug view should open."))
|
|
801
801
|
},
|
|
802
802
|
"debug.showSubSessionsInToolBar": {
|
|
803
803
|
type: "boolean",
|
|
804
804
|
description: ( localize(
|
|
805
|
-
|
|
805
|
+
8721,
|
|
806
806
|
"Controls whether the debug sub-sessions are shown in the debug tool bar. When this setting is false the stop command on a sub-session will also stop the parent session."
|
|
807
807
|
)),
|
|
808
808
|
default: false
|
|
809
809
|
},
|
|
810
810
|
"debug.console.fontSize": {
|
|
811
811
|
type: "number",
|
|
812
|
-
description: ( localize(
|
|
812
|
+
description: ( localize(8722, "Controls the font size in pixels in the Debug Console.")),
|
|
813
813
|
default: isMacintosh ? 12 : 14
|
|
814
814
|
},
|
|
815
815
|
"debug.console.fontFamily": {
|
|
816
816
|
type: "string",
|
|
817
|
-
description: ( localize(
|
|
817
|
+
description: ( localize(8723, "Controls the font family in the Debug Console.")),
|
|
818
818
|
default: "default"
|
|
819
819
|
},
|
|
820
820
|
"debug.console.lineHeight": {
|
|
821
821
|
type: "number",
|
|
822
822
|
description: ( localize(
|
|
823
|
-
|
|
823
|
+
8724,
|
|
824
824
|
"Controls the line height in pixels in the Debug Console. Use 0 to compute the line height from the font size."
|
|
825
825
|
)),
|
|
826
826
|
default: 0
|
|
827
827
|
},
|
|
828
828
|
"debug.console.wordWrap": {
|
|
829
829
|
type: "boolean",
|
|
830
|
-
description: ( localize(
|
|
830
|
+
description: ( localize(8725, "Controls if the lines should wrap in the Debug Console.")),
|
|
831
831
|
default: true
|
|
832
832
|
},
|
|
833
833
|
"debug.console.historySuggestions": {
|
|
834
834
|
type: "boolean",
|
|
835
835
|
description: ( localize(
|
|
836
|
-
|
|
836
|
+
8726,
|
|
837
837
|
"Controls if the Debug Console should suggest previously typed input."
|
|
838
838
|
)),
|
|
839
839
|
default: true
|
|
@@ -841,7 +841,7 @@ configurationRegistry.registerConfiguration({
|
|
|
841
841
|
"debug.console.collapseIdenticalLines": {
|
|
842
842
|
type: "boolean",
|
|
843
843
|
description: ( localize(
|
|
844
|
-
|
|
844
|
+
8727,
|
|
845
845
|
"Controls if the Debug Console should collapse identical lines and show a number of occurrences with a badge."
|
|
846
846
|
)),
|
|
847
847
|
default: true
|
|
@@ -849,20 +849,20 @@ configurationRegistry.registerConfiguration({
|
|
|
849
849
|
"debug.console.acceptSuggestionOnEnter": {
|
|
850
850
|
enum: ["off", "on"],
|
|
851
851
|
description: ( localize(
|
|
852
|
-
|
|
852
|
+
8728,
|
|
853
853
|
"Controls whether suggestions should be accepted on Enter in the Debug Console. Enter is also used to evaluate whatever is typed in the Debug Console."
|
|
854
854
|
)),
|
|
855
855
|
default: "off"
|
|
856
856
|
},
|
|
857
857
|
"debug.console.maximumLines": {
|
|
858
858
|
type: "number",
|
|
859
|
-
description: ( localize(
|
|
859
|
+
description: ( localize(8729, "Controls the maximum number of lines in the Debug Console.")),
|
|
860
860
|
default: 10000
|
|
861
861
|
},
|
|
862
862
|
"launch": {
|
|
863
863
|
type: "object",
|
|
864
864
|
description: ( localize(
|
|
865
|
-
|
|
865
|
+
8730,
|
|
866
866
|
"Global debug launch configuration. Should be used as an alternative to 'launch.json' that is shared across workspaces."
|
|
867
867
|
)),
|
|
868
868
|
default: {
|
|
@@ -875,7 +875,7 @@ configurationRegistry.registerConfiguration({
|
|
|
875
875
|
"debug.focusWindowOnBreak": {
|
|
876
876
|
type: "boolean",
|
|
877
877
|
description: ( localize(
|
|
878
|
-
|
|
878
|
+
8731,
|
|
879
879
|
"Controls whether the workbench window should be focused when the debugger breaks."
|
|
880
880
|
)),
|
|
881
881
|
default: true
|
|
@@ -883,16 +883,16 @@ configurationRegistry.registerConfiguration({
|
|
|
883
883
|
"debug.focusEditorOnBreak": {
|
|
884
884
|
type: "boolean",
|
|
885
885
|
description: ( localize(
|
|
886
|
-
|
|
886
|
+
8732,
|
|
887
887
|
"Controls whether the editor should be focused when the debugger breaks."
|
|
888
888
|
)),
|
|
889
889
|
default: true
|
|
890
890
|
},
|
|
891
891
|
"debug.onTaskErrors": {
|
|
892
892
|
enum: ["debugAnyway", "showErrors", "prompt", "abort"],
|
|
893
|
-
enumDescriptions: [( localize(
|
|
893
|
+
enumDescriptions: [( localize(8733, "Ignore task errors and start debugging.")), ( localize(8734, "Show the Problems view and do not start debugging.")), ( localize(8735, "Prompt user.")), ( localize(8736, "Cancel debugging."))],
|
|
894
894
|
description: ( localize(
|
|
895
|
-
|
|
895
|
+
8737,
|
|
896
896
|
"Controls what to do when errors are encountered after running a preLaunchTask."
|
|
897
897
|
)),
|
|
898
898
|
default: "prompt"
|
|
@@ -900,7 +900,7 @@ configurationRegistry.registerConfiguration({
|
|
|
900
900
|
"debug.showBreakpointsInOverviewRuler": {
|
|
901
901
|
type: "boolean",
|
|
902
902
|
description: ( localize(
|
|
903
|
-
|
|
903
|
+
8738,
|
|
904
904
|
"Controls whether breakpoints should be shown in the overview ruler."
|
|
905
905
|
)),
|
|
906
906
|
default: false
|
|
@@ -908,7 +908,7 @@ configurationRegistry.registerConfiguration({
|
|
|
908
908
|
"debug.breakpointsView.presentation": {
|
|
909
909
|
type: "string",
|
|
910
910
|
description: ( localize(
|
|
911
|
-
|
|
911
|
+
8739,
|
|
912
912
|
"Controls whether breakpoints are displayed in a tree view grouped by file, or as a flat list."
|
|
913
913
|
)),
|
|
914
914
|
enum: ["tree", "list"],
|
|
@@ -917,61 +917,61 @@ configurationRegistry.registerConfiguration({
|
|
|
917
917
|
"debug.showInlineBreakpointCandidates": {
|
|
918
918
|
type: "boolean",
|
|
919
919
|
description: ( localize(
|
|
920
|
-
|
|
920
|
+
8740,
|
|
921
921
|
"Controls whether inline breakpoints candidate decorations should be shown in the editor while debugging."
|
|
922
922
|
)),
|
|
923
923
|
default: true
|
|
924
924
|
},
|
|
925
925
|
"debug.saveBeforeStart": {
|
|
926
|
-
description: ( localize(
|
|
926
|
+
description: ( localize(8741, "Controls what editors to save before starting a debug session.")),
|
|
927
927
|
enum: ["allEditorsInActiveGroup", "nonUntitledEditorsInActiveGroup", "none"],
|
|
928
928
|
enumDescriptions: [( localize(
|
|
929
|
-
|
|
929
|
+
8742,
|
|
930
930
|
"Save all editors in the active group before starting a debug session."
|
|
931
931
|
)), ( localize(
|
|
932
|
-
|
|
932
|
+
8743,
|
|
933
933
|
"Save all editors in the active group except untitled ones before starting a debug session."
|
|
934
|
-
)), ( localize(
|
|
934
|
+
)), ( localize(8744, "Don't save any editors before starting a debug session."))],
|
|
935
935
|
default: "allEditorsInActiveGroup",
|
|
936
936
|
scope: ConfigurationScope.LANGUAGE_OVERRIDABLE
|
|
937
937
|
},
|
|
938
938
|
"debug.confirmOnExit": {
|
|
939
939
|
description: ( localize(
|
|
940
|
-
|
|
940
|
+
8745,
|
|
941
941
|
"Controls whether to confirm when the window closes if there are active debug sessions."
|
|
942
942
|
)),
|
|
943
943
|
type: "string",
|
|
944
944
|
enum: ["never", "always"],
|
|
945
|
-
enumDescriptions: [( localize(
|
|
945
|
+
enumDescriptions: [( localize(8746, "Never confirm.")), ( localize(8747, "Always confirm if there are debug sessions."))],
|
|
946
946
|
default: "never"
|
|
947
947
|
},
|
|
948
948
|
"debug.disassemblyView.showSourceCode": {
|
|
949
949
|
type: "boolean",
|
|
950
950
|
default: true,
|
|
951
|
-
description: ( localize(
|
|
951
|
+
description: ( localize(8748, "Show Source Code in Disassembly View."))
|
|
952
952
|
},
|
|
953
953
|
"debug.autoExpandLazyVariables": {
|
|
954
954
|
type: "string",
|
|
955
955
|
enum: ["auto", "on", "off"],
|
|
956
956
|
default: "auto",
|
|
957
957
|
enumDescriptions: [( localize(
|
|
958
|
-
|
|
958
|
+
8749,
|
|
959
959
|
"When in screen reader optimized mode, automatically expand lazy variables."
|
|
960
|
-
)), ( localize(
|
|
960
|
+
)), ( localize(8750, "Always automatically expand lazy variables.")), ( localize(8751, "Never automatically expand lazy variables."))],
|
|
961
961
|
description: ( localize(
|
|
962
|
-
|
|
962
|
+
8752,
|
|
963
963
|
"Controls whether variables that are lazily resolved, such as getters, are automatically resolved and expanded by the debugger."
|
|
964
964
|
))
|
|
965
965
|
},
|
|
966
966
|
"debug.enableStatusBarColor": {
|
|
967
967
|
type: "boolean",
|
|
968
|
-
description: ( localize(
|
|
968
|
+
description: ( localize(8753, "Color of the status bar when the debugger is active.")),
|
|
969
969
|
default: true
|
|
970
970
|
},
|
|
971
971
|
"debug.hideLauncherWhileDebugging": {
|
|
972
972
|
type: "boolean",
|
|
973
973
|
markdownDescription: ( localize(
|
|
974
|
-
|
|
974
|
+
8754,
|
|
975
975
|
"Hide 'Start Debugging' control in title bar of 'Run and Debug' view while debugging is active. Only relevant when {0} is not `docked`.",
|
|
976
976
|
"`#debug.toolBarLocation#`"
|
|
977
977
|
)),
|
|
@@ -980,7 +980,7 @@ configurationRegistry.registerConfiguration({
|
|
|
980
980
|
"debug.hideSlowPreLaunchWarning": {
|
|
981
981
|
type: "boolean",
|
|
982
982
|
markdownDescription: ( localize(
|
|
983
|
-
|
|
983
|
+
8755,
|
|
984
984
|
"Hide the warning shown when a `preLaunchTask` has been running for a while."
|
|
985
985
|
)),
|
|
986
986
|
default: false
|