gabriel-peracio

Results 18 comments of gabriel-peracio

I was thinking this should be some kind of config, not really messing with the basic abbreviation itself (which I agree would be a disaster). I also think that creating...

As an aside, my workaround for this issue is: 1. Create a custom regex that replaces `className="foo"` with `className={styles.foo}` 2. Create a macro that selects all text and replaces it...

A custom option that is applied globally would work for me. I mean vscode already has workspace-specific customizability for emmet (AFAIK) so I would still reap the benefits. Also, even...

> @svobik7 sounds good. I guess the only possible value here is a literal? You won't type, like, string here? Something like `div.{"my class"}`? I guess you could, since kebab...

I've always used ``, never seen `styleName` before... So in my case I'd do ```javascript jsx: { options: { 'jsx.enabled': true, 'markup.attributes': { 'class': 'className', 'class*': 'className', 'for': 'htmlFor' },...

> I am a HA integration developer ([integration](https://www.home-assistant.io/integrations/unifiprotect)). If you need any help implementing this, let me know what I can do to help! Just got a new fridge and...

Edit the `CMakeLists.txt` and change the proper flags from `OFF` to `ON`, then build again. Then they will be detected. Doesn't seem to change the speed at all, though.

Ah, right. I was talking about [this](https://github.com/ggerganov/llama.cpp/blob/master/CMakeLists.txt#L57), but that's in the llama.cpp repository, not here. I wonder if you can just swap the binaries in your installation... they do release...

As a workaround, you can make your own polygons (including triangles) with ```jsx ; ``` Result: ![image](https://user-images.githubusercontent.com/8999086/217275857-c4f80ba0-53cc-4b6a-b4a2-49c0c0fe0839.png) I'm not sure that `closed={true}` is needed, didn't seem to do anything, so...

@skogsmaskin I've been working around it by storing the selection, then doing ```typescript const contenteditableElement: any = window .getSelection() ?.anchorNode?.parentElement?.closest("[contenteditable]").blur(); ``` then changing the value, and afterwards restoring the selection...