Bri

Results 23 comments of Bri

To give some examples: ```ts interface $$Props { '--color': 'red' | 'blue' } // invalid values: // - rgb(255, 0, 0) // - rgb(0, 0, 255) // - var(--my-red) interface...

~~What makes TypeScript fast at semantic tokens and this extension slow? Is it due to `svelte2tsx` transformations or something like that?~~ ~~Presuming it is due to `svelte2tsx`, my naive first...

If a delay is needed, I would make it so that the semantic tokens don't get indefinitely delayed if you keep typing. As in, throttle semantic token requests rather than...

Okay I guess I need to do three things sooner or later: * find a decent way of adding embedded languages that doesn't involve injections * Make a separate PR...

Although I should add that one alternative is to use a different grammar for markdown, I think one that always uses TypeScript would be a decent compromise. Obviously that has...

Also have this issue. Here is my [gist](https://gist.github.com/Monkatraz/6b9ebdb77a8044151a969da0f5690f8a). I did my own testing of the issue. First, using `-vulkan` doesn't affect this. I tried combinations of things to see if...

I have this issue on MacOS, even after adding the `NSSpeechRecognitionUsageDescription` key - _but only in development mode_. If I do a full build, it works fine. This is on...

> A distributive conditional type would be correct, though you would only be able to narrow a union (`string | number`), not a specific value (if `T` is `string` you...

> Wait, if the idea is that `get` "always returns the same value", why is there a `set` method in the first place? Doesn't this imply the need for additional...