= How to remove unwanted menu entries = [eclipse:eclipse < back] See [http://eclipseo.blogspot.com/2007/09/remove-unwanted-actionsets-from-rcp.html here] for more information. Paste the following code snippet at the end of your makeAction method in your actionBarAdvisor: {{{ ActionSetRegistry reg = WorkbenchPlugin.getDefault() .getActionSetRegistry(); IActionSetDescriptor[] actionSets = reg.getActionSets(); for (int i = 0; i < actionSets.length; i++) { if (actionSets[i].getId().equals( "org.eclipse.ui.actionSet.openFiles")) { IExtension ext = actionSets[i].getConfigurationElement() .getDeclaringExtension(); reg.removeExtension(ext, new Object[] { actionSets[i] }); break; } }}}