Skip to content

Commit 949b9a2

Browse files
committed
debug: start without debugging -> run
microsoft#84677
1 parent 50666b9 commit 949b9a2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/contrib/debug/browser/debug.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
367367
group: '1_debug',
368368
command: {
369369
id: RunAction.ID,
370-
title: nls.localize({ key: 'miStartWithoutDebugging', comment: ['&& denotes a mnemonic'] }, "Start &&Without Debugging")
370+
title: nls.localize({ key: 'miRun', comment: ['&& denotes a mnemonic'] }, "R&&un")
371371
},
372372
order: 2
373373
});

src/vs/workbench/contrib/debug/browser/debugActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class StartAction extends AbstractDebugAction {
143143

144144
export class RunAction extends StartAction {
145145
static readonly ID = 'workbench.action.debug.run';
146-
static LABEL = nls.localize('startWithoutDebugging', "Start Without Debugging");
146+
static LABEL = nls.localize('startWithoutDebugging', "Run (Start Without Debugging)");
147147

148148
protected isNoDebug(): boolean {
149149
return true;

0 commit comments

Comments
 (0)