Dmitry Kandalov
Dmitry Kandalov
Cool :) I was thinking about some xml file with key to sound mapping.
^^^ most likely it's really a Kotlin plugin problem (running k2)
I don't think you missed anything (it was me who missed testing it in Rider). QuickFix action doesn't work for me either in Rider. And invoking intentions via shortcuts also...
I'll probably exclude Rider from supported IDEs since it's just too different and I don't have the capacity to make it work unless someone who uses it can contribute. https://plugins.jetbrains.com/plugin/16366-quick-fix/reviews#review=98023
To be realistic this is not easy to implement without copying and changing lots of the IntelliJ code because APIs used intentions are not designed to be used with multiple...
Hi, Are you sure you’re reporting this to the right plugin? The screenshots look like they are for the grep console plugin, see https://plugins.jetbrains.com/plugin/7125-grep-console/. Regards, Dmitry On Thu, 19 Dec...
I tried Rider 2024.3.3 on macOS with LivePlugin 0.9.5 and Groovy examples work fine. Looking at the stack trace, it's Groovy parser complaining about the first character in the file...
Thank you for sharing the Gist! (I don't get to see usages of LivePlugin very often :)) I think Rider should show detected encoding of the current file in the...
> When I load either the kotlin or groovy hello-world the encoding starts out as UTF-8, kotlin works, groovy fails. Just to confirm, when you do `Add Plugin -> Groovy...
Yes, this is the BOM. Do you mind running this code (it should match "charset configured in Settings|File Encodings|IDE encoding"): ``` import com.intellij.openapi.vfs.encoding.EncodingRegistry import liveplugin.show show(EncodingRegistry.getInstance().defaultCharset) ```