Danny Tuppeny
Danny Tuppeny
Hmm, that is weird - but it's also closer to what you see with Dart, so I think that's progress. I would say there is a clear bug there because...
Pre-profiles, `ExtensionContext.globalState` in VS Code was global. Now, it's per-profile. That means we don't have API-provided storage that is shared across profiles. I've opened https://github.com/microsoft/vscode/issues/270356 requesting this - though I...
This happens because the error output from `flutter run` in this case goes to `stdout` and not `stderr`. I've written up some notes in a new issue at https://github.com/flutter/flutter/issues/166246 to...
I published an updated version of the Dart extension for VS Code today (v.3.23.1) that fixes the performance screen (https://github.com/flutter/devtools/issues/3132). I'm unsure why the inspector page isn't working, but taking...
I just noticed this in the original report: > Set your "flutterMode" on launch.json in vsCode to "profile" My understanding is that the Widget Inspector is only available in debug...
In the LSP CodeAction handle we currently sort by a fixes `priority` and then alphabetical. These all have the same priority, so end up alphabetical. This feels like a bug...
> The idea of using ../ as a feature is interesting, but I'm wondering whether that's really the feature that matters or whether it might not be better to focus...
> But how about sorting by the length as well? I think if the server starts sorting these, it should probably be deterministic. If number of path segments is used,...
This also came up at https://github.com/Dart-Code/Dart-Code/issues/5838 The request is for it to be customisable, but I wonder if just improving the standard behaviour is better (as far as I can...
Does this reproduce if your "slow" test is not doing any real work, for example `await Future.delayed(const Duration(minutes: 1))`? We don't have any interaction with the integrated terminal so I'm...