[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Re: Configuring File > New

tjjfv wrote:

I am interested in configuring the items in the menu at File > New to include for example 'Untitiled File'. Is there a way to go about this?

I assume you want to add this to your own perspective. If so, you do this

  <extension
        point="org.eclipse.ui.perspectiveExtensions">
     <perspectiveExtension
           targetID="YOUR_Perspective_ID">
        <newWizardShortcut
              id="org.eclipse.ui.editors.wizards.UntitledTextFileWizard">
        </newWizardShortcut>
     </perspectiveExtension>
  </extension>

HTH
Dani


Thanks in advance,

Tom Ferguson