We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf7e21 commit 1f0c502Copy full SHA for 1f0c502
1 file changed
src/documentSymbolProvider.ts
@@ -67,6 +67,7 @@ export class CodeOrganizerDocumentSymbolProvider implements vscode.DocumentSymbo
67
68
////// 1.2.1 Document Processing ----
69
const text = document.getText();
70
+ const languageId = document.languageId;
71
const all_matches: SectionMatch[] = findSections(text);
72
const matches = all_matches.filter((item: SectionMatch) => item.depth === 1);
73
0 commit comments