How to create temporary run configuration
Hi,
In a custom language plugin how do you display the run context menu item and then generate and execute a temporary run configuration (similar to the way you can right click and execute a unit test in Java).
Thanks,
Evan
Please sign in to leave a comment.
Hello Evan,
you need to implement com.intellij.execution.LocatableConfigurationType. You can find more details in the JUnit plugin sources that are available here: http://svn.jetbrains.org/idea/Trunk/bundled/junit/
Sascha