Skip to content

Commit e71cf22

Browse files
author
Benjamin Pasero
committed
go menu - use commands for navigating across files for problems
1 parent 1b61a70 commit e71cf22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/editor/contrib/gotoError/gotoError.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ registerEditorCommand(new MarkerCommand({
474474
MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
475475
group: '6_problem_nav',
476476
command: {
477-
id: 'editor.action.marker.next',
477+
id: 'editor.action.marker.nextInFiles',
478478
title: nls.localize({ key: 'miGotoNextProblem', comment: ['&& denotes a mnemonic'] }, "Next &&Problem")
479479
},
480480
order: 1
@@ -483,7 +483,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
483483
MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
484484
group: '6_problem_nav',
485485
command: {
486-
id: 'editor.action.marker.prev',
486+
id: 'editor.action.marker.prevInFiles',
487487
title: nls.localize({ key: 'miGotoPreviousProblem', comment: ['&& denotes a mnemonic'] }, "Previous &&Problem")
488488
},
489489
order: 2

0 commit comments

Comments
 (0)