Skip to content

Commit

Permalink
debug: start without debugging -> run
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Nov 27, 2019
1 parent 50666b9 commit 949b9a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarDebugMenu, {
group: '1_debug',
command: {
id: RunAction.ID,
title: nls.localize({ key: 'miStartWithoutDebugging', comment: ['&& denotes a mnemonic'] }, "Start &&Without Debugging")
title: nls.localize({ key: 'miRun', comment: ['&& denotes a mnemonic'] }, "R&&un")
},
order: 2
});
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/debugActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class StartAction extends AbstractDebugAction {

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

protected isNoDebug(): boolean {
return true;
Expand Down

0 comments on commit 949b9a2

Please sign in to comment.