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

已回答

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

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

请先登录再写评论。