I wanted to add some of my wizards in File > New menu of my RCP application by adding org.eclipse.ui.newWizards extension point into plugin.xml file.
<extension point="org.eclipse.ui.newWizards">
<category
id="com.my.testapp.ui.objects"
name="Objects"/>
<wizard
category="com.my.testapp.ui.objects"
class="com.my.testapp.ui.wizard.create.COWizard"
icon="icons/co.gif"
id="com.my.testapp.ui.wizard.co"
name="Configure Object"
preferredPerspectives="com.my.testapp.ui.perspective"/>
</wizard>
</extension>
By default File > New > Other menu except my Objects folder with Configure Object Wizard, also contains General folder with following wizards: File, Folder, Project and Untitled Text File. As in my application these wizards does not make sense I would like to get rid of them. How to do that?