Reputation: 3294
I am using menuContribution in my plugin.xml currently, I know of two ways to add entries into a context menu.
<menuContribution
locationURI="popup:common.new.menu?after=additions">
<menuContribution
locationURI="popup:common.new.menu?after=new">
But they don't let you add after a specific group as such.
Any inputs will be really helpful.
Thanks, Abbas
Upvotes: 0
Views: 610
Reputation: 12718
Soe of these menus are special and you normally don't use the menus
extension point for these.
The following comes to mind - but there are likely more:
newWizard
extension pointimportWizard
extension pointexportWizard
extension pointsearchPages
extension pointperspectives
extension pointperspectives
extension pointUpvotes: 1
Reputation: 170815
You can use ID of any contribution item (which is present in the menu you are contributing to) in place of additions
or new
. additions
is just the id of an invisible separator.
Upvotes: 0