Shevach
Shevach

Reputation: 737

Configure "Run As" menu in eclipse plugin

I am trying to build custom eclipse plugin. In the process I am trying to add custom LaunchConfigurationShourtcut, but there are some difficulties. i.e. enter image description here

I want to add a third option named "My run configuration", but I dont know how.

I have used this reference: ref

Upvotes: 2

Views: 1266

Answers (1)

greg-449
greg-449

Reputation: 111218

Use the org.eclipse.debug.ui.launchShortcuts extension point to declare a shortcut that appears on the Run or Debug cascade menu.

See also this question

Upvotes: 3

Related Questions