-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
59 lines (55 loc) · 1.89 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="language" name="Language" schema="schema/language.exsd" />
<extension
point="org.eclipse.ui.editors">
<editor
name="Soy Editor"
extensions="simple"
icon="icons/sample.gif"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
class="anylang._exp.editors.SimpleEditor"
id="mlang.editors.simple">
</editor>
<editor
name="XML Editor"
extensions="xml"
icon="icons/sample.gif"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
class="anylang._exp.editors.XMLEditor"
id="mlang.editors.xml">
</editor>
<editor
name="Properties Editor"
extensions="properties"
icon="icons/sample.gif"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
class="anylang._exp.editors.PropertiesEditor"
id="mlang.editors.properties">
</editor>
<editor
name="JavaScript Editor"
extensions="js"
icon="icons/sample.gif"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
class="anylang._exp.editors.JSEditor"
id="mlang.editors.js">
</editor>
<editor
name="Bash Editor"
extensions="bash"
icon="icons/sample.gif"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
class="anylang._exp.editors.BashEditor"
id="mlang.editors.bash">
</editor>
</extension>
<extension
point="soy.language">
<language
class="soy.Soy"
id="soy">
</language>
</extension>
</plugin>