Extending the existing run configuration UI
Answered
I want to extend the existing run configuration UI, i.e. when the user edits the run configuration settings, I want them to also see a menu of my plugin where they can choose the settings they want. I am unable to find an extension point that allows me to do that.
Please sign in to leave a comment.
Hi,
See: com.intellij.execution.configuration.RunConfigurationExtensionsManager.appendEditors().
This is a base class for run configuration extensions. To see the exact EP names check extending classes, e.g., com.intellij.execution.JavaRunConfigurationExtensionManager.
Please note that not every run configuration will allow extensions. You have to ensure that the configuration you want to extend, supports extending.