Reputation: 1832
I have created an eclipse plugin, with a plugin.xml file. I have created an extension to the org.eclipse.wst.common.snippets.SnippetContributions extension point. The xml contents of this extension point has gotten really big. Is there a way that I can move the contents of my snippets extension to a separate file? Something like this:
In plugin.xml:
<extension point="org.eclipse.wst.common.snippets.SnippetContributions" file="snippets.xml"></extenstion>
and in snippets.xml:
<category ....>
<item..../item>
</category>...
Upvotes: 0
Views: 152