Results 37 comments of Oscar Linde

Same error here, makes the plugin unusable i'm afraid :(

@xndcn Thanks for your quick reply! I tried with entering the full path but i'm still getting the same error. I put /home/ocalinde/projects/asdf/go (where "go" is my executable) but i'm...

@fannheyward realize that i'm late here but i just wanted to chime in on the decorations/inlay hints - currently it is supported for chained calls, but it'd be super nice...

@fannheyward yeah i realize this but in nvim we could with the decoration API right? (i assume thats how inlayHints work now for chained calls?)

@fannheyward Ah, okay now i read that maybe that API doesn't work either (can't insert virtual text in the middle of "real" text) I understand, thanks!

Ah, yes, i did something like similar to that and thought it should work because by looking at the React source it seems to have something to do with persisting...

Yeah, this combined with #236 will hopefully make MUI run smooth(er) The application i tried this out on was pretty complex and other than the click-events(touch-tap) everything seemed fine. As...

Alright, so after some snooping around it seems like React listens for events on the document which are then passed to the event system which in turn passes it to...

The problem with option 1 however is that components that listen to both onTouchTap and onClick events(see [this example](https://github.com/callemall/material-ui/blob/master/src/internal/EnhancedButton.js#L240-L254), used by all MUI buttons) 1. Component listens to `onClick`, name...

Ah yeah, i was thinking about something similar with the multiple listeners but i'm not too familiar with the code yet. If you solve it i'd like to have a...