Steve R
- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 13
-
Created How to Trigger Dynamic Plugin Reload
AnsweredSo I understand that there is some configuration to do to Enable Dynamic Plugin Reloading, however I'm not clear about exactly how to actually trigger this. Using the IntelliJ Platform Plugin Templ... -
Created Dynamic Plugin Reload & Loggers
AnsweredI've noticed an issue (that I may be misdiagnosing), that it seems that if I try and use a logger in my plugin, the plugin can't be reloaded. When I look at the memory snapshot, it looks like the m... -
Created Adding Libraries to External Libraries View.
AnsweredI have some code that is programmatically adding a folder as a library, this works as expected (in so far as I can then index over files in that folder). However I would also like for the Library t... -
Created Start/Test Plugin with Different Versions of IntelliJ (not build)
AnsweredHello, I was wondering how I can start and/or run tests of my plugins built on version X of IntelliJ against version Y at runtime. The gradle plugin lets you specify a version under the intellij { ... -
Created Can't start Plugin with IntelliJ 2019.3-EAP
AnsweredHi there, I received a feature request to add support for 2019.3 to my plugin, however I get the crash: $./gradlew :runIde> Task :generateParser FAILEDException in thread "main" java.lang.Except... -
Created Creating other IntelliJ projects with the gradle idea plugin
AnsweredHi there, I'm a plugin developer and writing a custom language plugin for our internal use. There is a lot of boiler plate in setting up our projects in IntelliJ and getting people to do that for t... -
Created XML DOM API Crash with "no implementation found for getFileDescription"
Hello, I'm making a plugin that provides assistance with XML files that correspond to a custom XSD. The only extension points being used so far consists of an iconProvider to change the igon, a dom... -
Created Auto Expand Custom Structure View
AnsweredHello, I'm making a plugin which has a custom Structure View,, and to do this I create a new instance of com.intellij.ide.structureView.newStructureView.StructureViewComponent and pass in the appr... -
Created Independently Testing Annotators
I would like to test annotators in an isolated way without worrying about other annotators. It seems like I test inspections independently, but with annotators I can only vary the level. This makes...