vscode-code-outline icon indicating copy to clipboard operation
vscode-code-outline copied to clipboard

[Feature Request][dart] support Dart

Open jeffhx opened this issue 6 years ago • 1 comments

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.

jeffhx avatar Mar 08 '18 18:03 jeffhx

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.

patrys avatar Mar 08 '18 19:03 patrys