Reputation: 737
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.
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
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