@codingame/monaco-vscode-debug-service-override 31.0.1 → 32.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.
Files changed (28) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +16 -16
  3. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +108 -108
  4. package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +12 -12
  5. package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +12 -12
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +25 -25
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +8 -8
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +20 -20
  11. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +42 -42
  12. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  13. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +15 -15
  14. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
  15. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
  16. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +9 -8
  17. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +7 -7
  18. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
  19. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +36 -36
  20. package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
  21. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
  22. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +10 -10
  23. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +6 -6
  24. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +2 -2
  25. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
  26. package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +43 -43
  27. package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -11
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
@@ -10,7 +10,6 @@ import { MenuRegistry, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/pla
10
10
  import { Extensions as Extensions$3, ConfigurationScope } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
11
11
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
12
12
  import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
13
- import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
14
13
  import { KeybindingsRegistry, KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
15
14
  import { Extensions as Extensions$1 } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickAccess';
16
15
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
@@ -24,11 +23,9 @@ import { launchSchemaId } from '@codingame/monaco-vscode-api/vscode/vs/workbench
24
23
  import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
25
24
  import { COPY_NOTEBOOK_VARIABLE_VALUE_ID, COPY_NOTEBOOK_VARIABLE_VALUE_LABEL } from '../../notebook/browser/contrib/notebookVariables/notebookVariableCommands.js';
26
25
  import { BREAKPOINT_EDITOR_CONTRIBUTION_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_IN_DEBUG_MODE, CONTEXT_TERMINATE_THREADS_SUPPORTED, CONTEXT_DEBUG_STATE, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_FOCUSED_SESSION_IS_NO_DEBUG, CONTEXT_FOCUSED_SESSION_IS_ATTACH, CONTEXT_TERMINATE_DEBUGGEE_SUPPORTED, CONTEXT_SUSPEND_DEBUGGEE_SUPPORTED, CONTEXT_JUMP_TO_CURSOR_SUPPORTED, getStateLabel, State, CONTEXT_LOADED_SCRIPTS_SUPPORTED, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_RESTART_FRAME_SUPPORTED, CONTEXT_STACK_FRAME_SUPPORTS_RESTART, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_SET_VARIABLE_SUPPORTED, CONTEXT_VARIABLE_EVALUATE_NAME_PRESENT, CONTEXT_SET_EXPRESSION_SUPPORTED, CONTEXT_VARIABLE_IS_READONLY, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, CONTEXT_WATCH_ITEM_TYPE, CONTEXT_VARIABLE_VALUE, CONTEXT_EXPRESSION_SELECTED, WATCH_VIEW_ID, VARIABLES_VIEW_ID, DEBUG_PANEL_ID, REPL_VIEW_ID, VIEWLET_ID, CONTEXT_DEBUG_UX, CALLSTACK_VIEW_ID, BREAKPOINTS_VIEW_ID, CONTEXT_BREAKPOINTS_EXIST, CONTEXT_HAS_DEBUGGED, LOADED_SCRIPTS_VIEW_ID, DISASSEMBLY_VIEW_ID, INTERNAL_CONSOLE_OPTIONS_SCHEMA } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
27
- import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
28
26
  import { DebugWatchAccessibilityAnnouncer } from '../common/debugAccessibilityAnnouncer.js';
29
27
  import { DebugContentProvider } from '../common/debugContentProvider.js';
30
28
  import { DebugLifecycle } from '../common/debugLifecycle.js';
31
- import '../common/debugVisualizers.js';
32
29
  import { DisassemblyViewInput } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
33
30
  import { ReplAccessibilityAnnouncer } from '../common/replAccessibilityAnnouncer.js';
34
31
  import { BreakpointEditorContribution } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/breakpointEditorContribution';
@@ -43,7 +40,6 @@ import { DebugEditorContribution } from '@codingame/monaco-vscode-api/vscode/vs/
43
40
  import { debugInspectMemory, watchExpressionRemove, debugRun, debugConsoleViewIcon, runViewIcon, variablesViewIcon, watchViewIcon, callStackViewIcon, breakpointsViewIcon, loadedScriptsViewIcon } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/debugIcons';
44
41
  import { DebugProgressContribution } from './debugProgress.js';
45
42
  import { StartDebugQuickAccessProvider } from './debugQuickAccess.js';
46
- import './debugService.js';
47
43
  import './debugSettingMigration.js';
48
44
  import { DebugStatusContribution } from './debugStatus.js';
49
45
  import { DebugTitleContribution } from './debugTitle.js';
@@ -62,10 +58,14 @@ import { VIEW_MEMORY_ID, SET_VARIABLE_ID, VariablesView } from '@codingame/monac
62
58
  import { ADD_WATCH_ID, ADD_WATCH_LABEL, REMOVE_WATCH_EXPRESSIONS_COMMAND_ID, REMOVE_WATCH_EXPRESSIONS_LABEL, WatchExpressionsView } from './watchExpressionsView.js';
63
59
  import { WelcomeView } from './welcomeView.js';
64
60
  import { DebugChatContextContribution } from './debugChatIntegration.js';
61
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
62
+ import './debugService.js';
63
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
64
+ import '../common/debugVisualizers.js';
65
65
 
66
66
  registerCss(debug_contribution);
67
67
  registerCss(debugHover);
68
- const debugCategory = ( localize(8300, "Debug"));
68
+ const debugCategory = ( localize(8639, "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(8301, "Type the name of a launch configuration to run.")),
89
+ placeholder: ( localize(8640, "Type the name of a launch configuration to run.")),
90
90
  helpEntries: [{
91
- description: ( localize(8302, "Start Debugging")),
91
+ description: ( localize(8641, "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(8303, "Type the name of a debug console to open.")),
100
+ placeholder: ( localize(8642, "Type the name of a debug console to open.")),
101
101
  helpEntries: [{
102
- description: ( localize(8304, "Show All Debug Consoles")),
102
+ description: ( localize(8643, "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(8305, "Terminate Thread")), CONTEXT_IN_DEBUG_MODE, CONTEXT_TERMINATE_THREADS_SUPPORTED);
134
+ registerDebugCommandPaletteItem(TERMINATE_THREAD_ID, ( localize2(8644, "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(8306, "Jump to Cursor")), CONTEXT_JUMP_TO_CURSOR_SUPPORTED);
155
- registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(8307, "Set Next Statement")), CONTEXT_JUMP_TO_CURSOR_SUPPORTED);
154
+ registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(8645, "Jump to Cursor")), CONTEXT_JUMP_TO_CURSOR_SUPPORTED);
155
+ registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, ( localize2(8646, "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(8308, "Inline Breakpoint")));
166
+ registerDebugCommandPaletteItem(TOGGLE_INLINE_BREAKPOINT_ID, ( localize2(8647, "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(8305, "Terminate Thread")), 10, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("thread")), CONTEXT_TERMINATE_THREADS_SUPPORTED, "termination");
274
- registerDebugViewMenuItem(MenuId.DebugCallStackContext, RESTART_FRAME_ID, ( localize(8309, "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(8310, "Copy Call Stack")), 20, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("stackFrame")), undefined, "3_modification");
276
- registerDebugViewMenuItem(MenuId.DebugVariablesContext, VIEW_MEMORY_ID, ( localize(8311, "View Binary Data")), 15, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_IN_DEBUG_MODE, "inline", debugInspectMemory);
277
- registerDebugViewMenuItem(MenuId.DebugVariablesContext, SET_VARIABLE_ID, ( localize(8312, "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");
273
+ registerDebugViewMenuItem(MenuId.DebugCallStackContext, TERMINATE_THREAD_ID, ( localize(8644, "Terminate Thread")), 10, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("thread")), CONTEXT_TERMINATE_THREADS_SUPPORTED, "termination");
274
+ registerDebugViewMenuItem(MenuId.DebugCallStackContext, RESTART_FRAME_ID, ( localize(8648, "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(8649, "Copy Call Stack")), 20, ( CONTEXT_CALLSTACK_ITEM_TYPE.isEqualTo("stackFrame")), undefined, "3_modification");
276
+ registerDebugViewMenuItem(MenuId.DebugVariablesContext, VIEW_MEMORY_ID, ( localize(8650, "View Binary Data")), 15, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_IN_DEBUG_MODE, "inline", debugInspectMemory);
277
+ registerDebugViewMenuItem(MenuId.DebugVariablesContext, SET_VARIABLE_ID, ( localize(8651, "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(8313, "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(8314, "Break on Value Change")), 210, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, undefined, "z_commands");
305
+ registerDebugViewMenuItem(MenuId.DebugVariablesContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8652, "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(8653, "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(8315, "Break on Value Access")),
310
+ ( localize(8654, "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(8311, "View Binary Data")), 15, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_IN_DEBUG_MODE, "inline", debugInspectMemory);
316
+ registerDebugViewMenuItem(MenuId.DebugHoverContext, VIEW_MEMORY_ID, ( localize(8650, "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(8313, "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(8314, "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(8315, "Break on Value Access")), 220, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, undefined, "z_commands");
344
+ registerDebugViewMenuItem(MenuId.DebugHoverContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8652, "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(8653, "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(8654, "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(8316, "Edit Expression")), 20, ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), undefined, "3_modification");
357
- registerDebugViewMenuItem(MenuId.DebugWatchContext, SET_EXPRESSION_COMMAND_ID, ( localize(8312, "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(8317, "Copy Value")), 40, ( ContextKeyExpr.or(( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("variable")))), CONTEXT_IN_DEBUG_MODE, "3_modification");
356
+ registerDebugViewMenuItem(MenuId.DebugWatchContext, EDIT_EXPRESSION_COMMAND_ID, ( localize(8655, "Edit Expression")), 20, ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), undefined, "3_modification");
357
+ registerDebugViewMenuItem(MenuId.DebugWatchContext, SET_EXPRESSION_COMMAND_ID, ( localize(8651, "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(8656, "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(8311, "View Binary Data")), 10, CONTEXT_CAN_VIEW_MEMORY, undefined, "inline", debugInspectMemory);
369
- registerDebugViewMenuItem(MenuId.DebugWatchContext, REMOVE_EXPRESSION_COMMAND_ID, ( localize(8318, "Remove Expression")), 20, ( CONTEXT_WATCH_ITEM_TYPE.isEqualTo("expression")), undefined, "inline", watchExpressionRemove);
368
+ registerDebugViewMenuItem(MenuId.DebugWatchContext, VIEW_MEMORY_ID, ( localize(8650, "View Binary Data")), 10, CONTEXT_CAN_VIEW_MEMORY, undefined, "inline", debugInspectMemory);
369
+ registerDebugViewMenuItem(MenuId.DebugWatchContext, REMOVE_EXPRESSION_COMMAND_ID, ( localize(8657, "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(8313, "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(8314, "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(8315, "Break on Value Access")), 220, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, undefined, "z_commands");
379
+ registerDebugViewMenuItem(MenuId.DebugWatchContext, BREAK_WHEN_VALUE_IS_READ_ID, ( localize(8652, "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(8653, "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(8654, "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(8319, "Run or Debug...")),
431
+ title: ( localize2(8658, "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(8320, "Run")),
440
- mnemonicTitle: ( localize(8321, "&&Run"))
439
+ ...( localize2(8659, "Run")),
440
+ mnemonicTitle: ( localize(8660, "&&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(8322, "&&Start Debugging"))
449
+ title: ( localize(8661, "&&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(8323, "Run &&Without Debugging"))
458
+ title: ( localize(8662, "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(8324, "&&Stop Debugging")),
467
+ title: ( localize(8663, "&&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(8325, "&&Restart Debugging")),
477
+ title: ( localize(8664, "&&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(8326, "A&&dd Configuration..."))
487
+ title: ( localize(8665, "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(8327, "Step &&Over")),
496
+ title: ( localize(8666, "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(8328, "Step &&Into")),
506
+ title: ( localize(8667, "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(8329, "Step O&&ut")),
516
+ title: ( localize(8668, "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(8330, "&&Continue")),
526
+ title: ( localize(8669, "&&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(8331, "Inline Breakp&&oint"))
536
+ title: ( localize(8670, "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(8332, "&&New Breakpoint")),
543
+ title: ( localize(8671, "&&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(8333, "Toggle Breakpoint"))
561
+ title: ( localize(8672, "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(8334, "&&Install Additional Debuggers..."))
570
+ title: ( localize(8673, "&&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(8335, "Debug Console")),
576
+ title: ( localize2(8674, "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(8335, "Debug Console")),
589
+ name: ( localize2(8674, "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(8336, "De&&bug Console")),
597
+ mnemonicTitle: ( localize(8675, "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(8337, "Run and Debug")),
606
+ title: ( localize2(8676, "Run and Debug")),
607
607
  openCommandActionDescriptor: {
608
608
  id: VIEWLET_ID,
609
- mnemonicTitle: ( localize(8338, "&&Run")),
609
+ mnemonicTitle: ( localize(8677, "&&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(8339, "Variables")),
623
+ name: ( localize2(8678, "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(8340, "Watch")),
637
+ name: ( localize2(8679, "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(8341, "Call Stack")),
651
+ name: ( localize2(8680, "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(8342, "Breakpoints")),
665
+ name: ( localize2(8681, "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(8343, "Loaded Scripts")),
689
+ name: ( localize2(8682, "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(8344, "Disassembly"))),
700
+ EditorPaneDescriptor.create(DisassemblyView, DISASSEMBLY_VIEW_ID, ( localize(8683, "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(8345, "Debug")),
707
+ title: ( localize(8684, "Debug")),
708
708
  type: "object",
709
709
  properties: {
710
710
  "debug.showVariableTypes": {
711
711
  type: "boolean",
712
- description: ( localize(8346, "Show variable type in variable pane during debug session")),
712
+ description: ( localize(8685, "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(8347, "Allow setting breakpoints in any file.")),
717
+ description: ( localize(8686, "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
- 8348,
724
+ 8687,
725
725
  "Controls the action to perform when clicking the editor gutter with the middle mouse button."
726
726
  )),
727
- enumDescriptions: [( localize(8349, "Add Logpoint.")), ( localize(8350, "Add Conditional Breakpoint.")), ( localize(8351, "Add Triggered Breakpoint.")), ( localize(8352, "Don't perform any action."))],
727
+ enumDescriptions: [( localize(8688, "Add Logpoint.")), ( localize(8689, "Add Conditional Breakpoint.")), ( localize(8690, "Add Triggered Breakpoint.")), ( localize(8691, "Don't perform any action."))],
728
728
  default: "logpoint"
729
729
  },
730
730
  "debug.openExplorerOnEnd": {
731
731
  type: "boolean",
732
732
  description: ( localize(
733
- 8353,
733
+ 8692,
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
- 8354,
741
+ 8693,
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(8355, "Show variable values inline in editor while debugging.")),
750
- "enumDescriptions": [( localize(8356, "Always show variable values inline in editor while debugging.")), ( localize(8357, "Never show variable values inline in editor while debugging.")), ( localize(
751
- 8358,
749
+ description: ( localize(8694, "Show variable values inline in editor while debugging.")),
750
+ "enumDescriptions": [( localize(8695, "Always show variable values inline in editor while debugging.")), ( localize(8696, "Never show variable values inline in editor while debugging.")), ( localize(
751
+ 8697,
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
- 8359,
759
+ 8698,
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(8360, "Show debug toolbar in all views.")), ( localize(8361, "Show debug toolbar only in debug views.")), ( localize(8362, "`(Experimental)` Show debug toolbar in the command center.")), ( localize(8363, "Do not show debug toolbar."))]
764
+ markdownEnumDescriptions: [( localize(8699, "Show debug toolbar in all views.")), ( localize(8700, "Show debug toolbar only in debug views.")), ( localize(8701, "`(Experimental)` Show debug toolbar in the command center.")), ( localize(8702, "Do not show debug toolbar."))]
765
765
  },
766
766
  "debug.showInStatusBar": {
767
767
  enum: ["never", "always", "onFirstSessionStart"],
768
- enumDescriptions: [( localize(8364, "Never show debug item in status bar")), ( localize(8365, "Always show debug item in status bar")), ( localize(
769
- 8366,
768
+ enumDescriptions: [( localize(8703, "Never show debug item in status bar")), ( localize(8704, "Always show debug item in status bar")), ( localize(
769
+ 8705,
770
770
  "Show debug item in status bar only after debug was started for the first time"
771
771
  ))],
772
- description: ( localize(8367, "Controls when the debug status bar item should be visible.")),
772
+ description: ( localize(8706, "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
- 8368,
779
+ 8707,
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
- 8369,
787
+ 8708,
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(8370, "Controls when the debug view should open."))
800
+ description: ( localize(8709, "Controls when the debug view should open."))
801
801
  },
802
802
  "debug.showSubSessionsInToolBar": {
803
803
  type: "boolean",
804
804
  description: ( localize(
805
- 8371,
805
+ 8710,
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(8372, "Controls the font size in pixels in the Debug Console.")),
812
+ description: ( localize(8711, "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(8373, "Controls the font family in the Debug Console.")),
817
+ description: ( localize(8712, "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
- 8374,
823
+ 8713,
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(8375, "Controls if the lines should wrap in the Debug Console.")),
830
+ description: ( localize(8714, "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
- 8376,
836
+ 8715,
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
- 8377,
844
+ 8716,
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
- 8378,
852
+ 8717,
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(8379, "Controls the maximum number of lines in the Debug Console.")),
859
+ description: ( localize(8718, "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
- 8380,
865
+ 8719,
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
- 8381,
878
+ 8720,
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
- 8382,
886
+ 8721,
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(8383, "Ignore task errors and start debugging.")), ( localize(8384, "Show the Problems view and do not start debugging.")), ( localize(8385, "Prompt user.")), ( localize(8386, "Cancel debugging."))],
893
+ enumDescriptions: [( localize(8722, "Ignore task errors and start debugging.")), ( localize(8723, "Show the Problems view and do not start debugging.")), ( localize(8724, "Prompt user.")), ( localize(8725, "Cancel debugging."))],
894
894
  description: ( localize(
895
- 8387,
895
+ 8726,
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
- 8388,
903
+ 8727,
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
- 8389,
911
+ 8728,
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
- 8390,
920
+ 8729,
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(8391, "Controls what editors to save before starting a debug session.")),
926
+ description: ( localize(8730, "Controls what editors to save before starting a debug session.")),
927
927
  enum: ["allEditorsInActiveGroup", "nonUntitledEditorsInActiveGroup", "none"],
928
928
  enumDescriptions: [( localize(
929
- 8392,
929
+ 8731,
930
930
  "Save all editors in the active group before starting a debug session."
931
931
  )), ( localize(
932
- 8393,
932
+ 8732,
933
933
  "Save all editors in the active group except untitled ones before starting a debug session."
934
- )), ( localize(8394, "Don't save any editors before starting a debug session."))],
934
+ )), ( localize(8733, "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
- 8395,
940
+ 8734,
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(8396, "Never confirm.")), ( localize(8397, "Always confirm if there are debug sessions."))],
945
+ enumDescriptions: [( localize(8735, "Never confirm.")), ( localize(8736, "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(8398, "Show Source Code in Disassembly View."))
951
+ description: ( localize(8737, "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
- 8399,
958
+ 8738,
959
959
  "When in screen reader optimized mode, automatically expand lazy variables."
960
- )), ( localize(8400, "Always automatically expand lazy variables.")), ( localize(8401, "Never automatically expand lazy variables."))],
960
+ )), ( localize(8739, "Always automatically expand lazy variables.")), ( localize(8740, "Never automatically expand lazy variables."))],
961
961
  description: ( localize(
962
- 8402,
962
+ 8741,
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(8403, "Color of the status bar when the debugger is active.")),
968
+ description: ( localize(8742, "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
- 8404,
974
+ 8743,
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
- 8405,
983
+ 8744,
984
984
  "Hide the warning shown when a `preLaunchTask` has been running for a while."
985
985
  )),
986
986
  default: false