Danny Tuppeny

Results 1793 comments of Danny Tuppeny

Added in https://github.com/dart-lang/sdk/commit/bdf81502206a4da1975dfc2cecbf0d9ec0bb1628. Can be controlled by the `dart.maxCompletionItems` setting. Currently defaults to 2000, but this value is likely to change based on feedback and perf work.

This is effectively turned off by 82b9ec78 and will need re-enabling when issues are resolved.

We might need server support to get them for a whole file in one go. Otherwise we'd have to send repeated requests for references (and use some other data, like...

There's no timeline for releasing this as it has not been developed yet. It would require some additional work in the analysis server first. In the meantime, you can use...

@rohitvishwakarma1819 thanks for the suggestion! CodeLens rendering is all handled by VS Code and not the extension so this would need support from VS Code. There's an open issue about...

I'm afraid this is by design. The formatter that Dart Code uses is the official one (https://github.com/dart-lang/dart_style) and it does not support changing indenting; it always uses 2 spaces. I'd...

@AshSimmonds How does that work? I presume it's effectively replacing 2-spaces with a tab, but I don't understand how it's working - what is the `cursorEnd` bit doing? Also; if...

Oh, I see - it's typing two spaces at the end, selecting them, then selecting all of the highlighted items (eg. the other double-spaces) and replacing them. Neat trick -...

Whether it's worthwhile depends on a few things: 1. How much work is it to make a flexible/customisable version of `dart_style` 2. How much work would it be to replace...