Danny Tuppeny

Results 1795 comments of Danny Tuppeny

Are you able to capture a log file (using a new sample project, since the log will contain parts of your source code)? - Run the [**Dart: Capture Analysis Server...

Is it possible you clicked a link in the Terminal or something before it happened? VS Code sometimes opens files without drive letters (perhaps because it parsed a path badly...

I was able to reproduce something similar by cutting the entire file to clipboard and then pasting it back. Sometimes it updates fine, and sometimes it does not. When it...

Maye something to do with debouncing? If I cut the entire doc and wait for the test runner to clear, then paste, things come back correctly. If I paste before...

I think this might be a VS Code issue. I've filed https://github.com/microsoft/vscode/issues/161320 with some steps to repro what seems like this issue using their sample project. I believe VS Code's...

A fix has been made in VS Code: https://github.com/microsoft/vscode/issues/161320. I'm not certain that it's the same issue, but I think there's a good chance. VS Code usually releases in the...

I had a quick scan through the code again and I suspect the CodeLens setting doesn't actually impact this now. Our test discovery works even without the CodeLens (which is...

There's not currently an option for this, the hovers always include full docs. Perhaps we should have a tri-state option for this: `"Full", "Summary", "None"`. There's a [long-standing VS Code...

Server work is in https://github.com/dart-lang/sdk/commit/09c1722044177743b705d0faf5b26260a04c71df. We'll need to add the new setting to the `package.json` so it shows up in the UI.

I believe you're hitting the issue described in https://github.com/microsoft/vscode/issues/113640 (or something similar). Dart uses semantic highlighting once the server is up, which is more accurate than the textmate grammar (it...