Danny Tuppeny
Danny Tuppeny
Unfortunately it's not currently possible to use Markdown in Diagnostics in VS Code:   There's an open issue at...
Thanks for the request! Though I think this might make more sense as a separate extension. Rendering code coverage from an lcov file would be useful for other languages too,...
Slightly related: #653.
> We should probably shrink this feature down to a single new VSCode command "Test with Coverage", which would run the above command line. Is it reasonable (expected?) to just...
Does this happen on all projects or just one? If it happens on a simple sample project, could you try enabling the [analysis server instrumentation log](https://dartcode.org/docs/logging/#analyzer-instrumentation) log: - Press `F1`...
This requires the server first has an implementation of sorting the dependencies - likely via https://github.com/dart-lang/sdk/issues/47958. Then it should be automated either through the existing Fix All command (which can...
@emile-git can you clarify exactly what you're trying to colour? `void` was special cased because it's a bit unusual (it's sort of a type and a keyword). I'm not sure...
Thanks for clarifying. I'm wondering if this might be better first as a feature request to VS Code that would allow customising colours based on the content of a token,...
I think this would require DAP's SteppingGranularity to be exposed by VS Code to be able to make this work: https://github.com/microsoft/vscode/issues/102236 Without it, there's no way for you to choose...
@bwilkerson this used to work because of regex in the textmate grammar, though the semantic tokens (which only cover the whole comment) take precedence. Some possible thoughts: - Don't send...