vscode-code-outline
vscode-code-outline copied to clipboard
[Feature Request][dart] support Dart
Copying info from this link
This API is available now (and has been improved a bit in the current Insiders). You'd define some json, and then an associated TreeDataProvider:
"views": {
"explorer": [
{
"id": "dartFileOutline",
"name": "File Outline",
"when": "resourceLangId == 'dart'"
}
]
},
It would be great to see vscode-code-outline support Dart.
This extension will support any language as long as there is a language-specific extension that implements the SymbolProvider API for VS Code. Code Outline does not have any language-specific code.