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 c780d0d commit b84241eCopy full SHA for b84241e
src/vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree.ts
@@ -49,7 +49,7 @@ export class DocumentSymbolAccessibilityProvider implements IListAccessibilityPr
49
if (element instanceof OutlineGroup) {
50
return element.label;
51
} else {
52
- return element.symbol.name;
+ return `${element.symbol.name} Symbol: ${SymbolKinds.toIcon(element.symbol.kind).id.replaceAll('symbol-', '')} `;
53
}
54
55
0 commit comments