We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa434a commit eec9689Copy full SHA for eec9689
extensions/typescript-language-features/src/languageFeatures/workspaceSymbols.ts
@@ -89,7 +89,7 @@ class TypeScriptWorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvide
89
}
90
91
private toSymbolInformation(item: Proto.NavtoItem): vscode.SymbolInformation | undefined {
92
- if (!item.containerName || item.kind === 'alias') {
+ if (item.kind === 'alias' && !item.containerName) {
93
return;
94
95
0 commit comments