Matt Nathan

Results 11 comments of Matt Nathan

I just ran across this issue, one of my messages has a field called `extension` To reproduce: ``` syntax = "proto3"; message TestMessage { int32 extension = 1; } ```...

An alternative for this could be an `EmitCtx` type api ```go e := emitter.Emitter{} ch := e.On("broadcast") ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond) defer cancel() done := e.EmitCtx(ctx, "broadcast", "the", "event",...

I'm not sure if changes are partially done, but it seems that the `*intellij-info` generated for a `go_proto_library` includes the `.pb.go` file in the metadata ``` build_file_artifact_location { is_external: false...

While creating an example project (https://github.com/vanti-public/ijwb_194) I stumbled across the cause of the issue: Vgo support. Turning vgo support _off_ in the IDE allows the generated proto files to resolve...

I just wanted to comment that for the most part the plugin works great on Windows now, however the issue mentioned in #229 (and #372) is still happening for me.

A work around for the "can't debug on windows" issue is to disable hotswap by placing the following into the file `~/.intellij-experiments` ``` java.hotswapping.enabled=0 ```

I haven't added any tests (or checked that they are working) - I'm using this PR as a base for the change to be applied and as a place to...

Thanks, is there an alternative or work around that can be used instead to accomplish this without the feature being added to the library?

@timmywil I don't suppose there's any information on how long the 'collecting interest' phase lasts? I'm approaching a release date for the project I'm working on that requires this feature...

@timmywil I forked and applied the change I needed. I've created a PR which works for my application, whether it's the correct way to do it for this project I...