Danny Tuppeny
Danny Tuppeny
@bwilkerson @jacob314 while looking at issues that might impact this I rediscovered https://github.com/Dart-Code/Dart-Code/issues/4618, which is related to the completion rankings not working well in some situations. It might only affect...
It doesn't seem like there's going to be any official support for this in VS Code soon. I had a quick play around, and I think we can implement this...
> In Visual Studio (proper), I think it's just a toggle. A toggle that persists across IDE sessions, or just temporarily for the current IDE session? > They also let...
Had a quick play with format specifiers, and I like how it works. It also cleaned up some existing code we already had to suppress quotes in Strings for some...
> Sweet! Sorry -- I haven't had the chance to look at this over the last day > or two :) lol, np - I see you've been busy 😄...
This is done now. It requires both changes to the SDKs and the VS Code extension, so for most users on stable, it won't be available until the next stable...
Blocked by https://github.com/microsoft/vscode/issues/66606.
I think this would be really confusing. If you're typing `Colors.red` and after pressing `.` I don't think it's obvious that the item with label "**#ff0000** _red_" is the item...
> I've just noticed that the code had been updated in VSCode Oh, good spot - it also looks like maybe it uses a more relaxed (substring) regex in documentation?...
Actually, I took another look, and although the regex is more relaxed, it still checks for start/end: ```ts if (match && (match.index === 0 || match.index + match[0].length === value.length))...