Danny Tuppeny

Results 1795 comments of Danny Tuppeny

@rydmike I don't think the termination issue is related to this - I believe that's a Dart watcher issue (discussion about this is in https://github.com/Dart-Code/Dart-Code/issues/2805). Renaming multiple folders/multiple files is...

@walsha2 great, glad to hear! I suspect the issues were in the extension code that handles the auto-import completions (it has a lot of data to stitch together in each...

This week I found a performance bug in the LSP server that may be related. The issue was a combination of a few things: - We rebuild the data used...

@samandmoore are you able to reliably reproduce this? How big is your project? I'm still struggling to repro this. I've been trying on flutter_gallery and I've tried wiping out `~/.dartServer`...

I don't know if there's a good way to do this (all of the other items there apply to the whole file and are not dependant on the cursor position...

Perhaps Hovers would be better - eg. a tooltip with some information about the package and a hyperlink in it?

Currently there are some limitations because of how tests are run individually (by name). Without executing the tests, it's impossible for the extension to know what `groupDescriptionFormatted('group 1')` returns, so...

@jtdLab I'm hoping so, but I haven't done much testing yet (and it may depend on the exact configuration of the test). If you have some specific tests in mind,...

@jtdLab I would hope/expect that to work. You can test it by running `dart test foo_test.dart?line=1` (where `1` is the line it's on). I'm not sure how well we handle...

@jtdLab that's expected right now, using line/col has not been implemented in the extension yet. You can use `dart test foo_test.dart?line=1` from the terminal to verify where `package:tests`'s support for...