Skip to content

Commit 56b735a

Browse files
committed
Revert "Rename Go to Implementation to Find All Implementations Fixes microsoft#23925"
This reverts commit 03955ce.
1 parent 03955ce commit 56b735a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/vs/editor/common/modes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ export interface DefinitionProvider {
444444

445445
/**
446446
* The implementation provider interface defines the contract between extensions and
447-
* the find all implementations feature.
447+
* the go to implementation feature.
448448
*/
449449
export interface ImplementationProvider {
450450
/**

src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ export class GoToImplementationAction extends ImplementationAction {
264264
constructor() {
265265
super(new DefinitionActionConfig(), {
266266
id: GoToImplementationAction.ID,
267-
label: nls.localize('actions.goToImplementation.label', "Find All Implementations"),
268-
alias: 'Find All Implementations',
267+
label: nls.localize('actions.goToImplementation.label', "Go to Implementation"),
268+
alias: 'Go to Implementation',
269269
precondition: ContextKeyExpr.and(
270270
ModeContextKeys.hasImplementationProvider,
271271
ModeContextKeys.isInEmbeddedEditor.toNegated()),
@@ -275,7 +275,7 @@ export class GoToImplementationAction extends ImplementationAction {
275275
},
276276
menuOpts: {
277277
group: 'navigation',
278-
order: 1.4
278+
order: 1.3
279279
}
280280
});
281281
}
@@ -337,7 +337,7 @@ export class GoToTypeDefintionAction extends TypeDefinitionAction {
337337
},
338338
menuOpts: {
339339
group: 'navigation',
340-
order: 1.3
340+
order: 1.4
341341
}
342342
});
343343
}

src/vs/monaco.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4687,7 +4687,7 @@ declare module monaco.languages {
46874687

46884688
/**
46894689
* The implementation provider interface defines the contract between extensions and
4690-
* the find all implementations feature.
4690+
* the go to implementation feature.
46914691
*/
46924692
export interface ImplementationProvider {
46934693
/**

0 commit comments

Comments
 (0)