Adding an action to the popup menu under the selected run configuration

Answered

I want to create a new action and would like to add it to the popup menu seen in the image bellow. is that possible? and if so, what is the name of the relevant group that I need to add the action to?

0
1 comment

Hi Maria,

This popup is not a group registered with ID. See its implementation: com.intellij.execution.actions.RunConfigurationsComboBoxAction$SelectConfigAction. I don't see any extension points allowing you to add custom items there.

If you want to add a new executor (like Run, Debug, Run with Coverage, etc.) see the Executor class in https://plugins.jetbrains.com/docs/intellij/execution.html#execution-classes section.

0

Please sign in to leave a comment.