You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -257,6 +252,10 @@ export class BreakpointEditorContribution implements IBreakpointEditorContributi
257
252
* 2. When users click on line numbers, the breakpoint hint displays immediately, however it doesn't create the breakpoint unless users click on the left gutter. On a touch screen, it's hard to click on that small area.
registry.registerWorkbenchAction(SyncActionDescriptor.from(ConfigureAction),'Debug: Open launch.json',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
105
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(AddFunctionBreakpointAction),'Debug: Add Function Breakpoint',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
106
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(ReapplyBreakpointsAction),'Debug: Reapply All Breakpoints',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
107
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(RemoveAllBreakpointsAction),'Debug: Remove All Breakpoints',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
108
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(EnableAllBreakpointsAction),'Debug: Enable All Breakpoints',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
109
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(DisableAllBreakpointsAction),'Debug: Disable All Breakpoints',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
110
+
registry.registerWorkbenchAction(SyncActionDescriptor.from(SelectAndStartAction),'Debug: Select and Start Debugging',debugCategory,CONTEXT_DEBUGGERS_AVAILABLE);
content: localize({key: 'openAFileWhichCanBeDebugged',comment: ['Please do not translate the word "commmand", it is part of our internal syntax which must not change']},
111
111
"[Open a file](command:{0}) which can be debugged or run.",isMacintosh ? OpenFileFolderAction.ID : OpenFileAction.ID),
content: localize({key: 'runAndDebugAction',comment: ['Please do not translate the word "commmand", it is part of our internal syntax which must not change']},
118
118
"[Run and Debug{0}](command:{1})",debugKeybindingLabel,StartAction.ID),
content: localize({key: 'detectThenRunAndDebug',comment: ['Please do not translate the word "commmand", it is part of our internal syntax which must not change']},
124
125
"[Show](command:{0}) all automatic debug configurations.",SelectAndStartAction.ID),
content: localize({key: 'customizeRunAndDebug',comment: ['Please do not translate the word "commmand", it is part of our internal syntax which must not change']},
130
132
"To customize Run and Debug [create a launch.json file](command:{0}).",ConfigureAction.ID),
content: localize({key: 'customizeRunAndDebugOpenFolder',comment: ['Please do not translate the word "commmand", it is part of our internal syntax which must not change']},
136
138
"To customize Run and Debug, [open a folder](command:{0}) and create a launch.json file.",isMacintosh ? OpenFileFolderAction.ID : OpenFolderAction.ID),
0 commit comments