Skip to content

Commit 8eaef1b

Browse files
jriekenspahnke
authored andcommitted
use goto, not peek references as fallback microsoft#83752
1 parent d7364c8 commit 8eaef1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/editor/contrib/gotoSymbol/goToCommands.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class DefinitionAction extends SymbolNavigationAction {
182182
}
183183

184184
protected _getAlternativeCommand(): string {
185-
return 'editor.action.referenceSearch.trigger';
185+
return 'editor.action.goToReferences';
186186
}
187187

188188
protected _getGoToPreference(editor: IActiveCodeEditor): GoToLocationValues {
@@ -305,7 +305,7 @@ class DeclarationAction extends SymbolNavigationAction {
305305
}
306306

307307
protected _getAlternativeCommand(): string {
308-
return 'editor.action.referenceSearch.trigger';
308+
return 'editor.action.goToReferences';
309309
}
310310

311311
protected _getGoToPreference(editor: IActiveCodeEditor): GoToLocationValues {
@@ -394,7 +394,7 @@ class TypeDefinitionAction extends SymbolNavigationAction {
394394
}
395395

396396
protected _getAlternativeCommand(): string {
397-
return 'editor.action.referenceSearch.trigger';
397+
return 'editor.action.goToReferences';
398398
}
399399

400400
protected _getGoToPreference(editor: IActiveCodeEditor): GoToLocationValues {

0 commit comments

Comments
 (0)