-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
71 lines (70 loc) · 2.24 KB
/
plugin.xml
File metadata and controls
71 lines (70 loc) · 2.24 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="edu.uwm.twee.editors.TweeEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
extensions="tw"
icon="icons/Twine16.png"
id="edu.uwm.twee.editors.TweeEditor"
name="Twee Editor">
</editor>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="edu.uwm.twee"
name="Twee">
</category>
<wizard
category="edu.uwm.twee"
class="edu.uwm.twee.wizards.NewTwee"
icon="icons/Twine16.png"
id="edu.uwm.twee.wizards.NewTwee"
name="Twee file">
</wizard>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="edu.uwm.twee.preferences.TweePreferencePage"
id="edu.uwm.twee.preferences.TweePreferencePage"
name="Twee">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="edu.uwm.twee.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">
<type
markerSeverity="1"
name="edu.uwm.twee.macro">
</type>
</extension>
<extension
id="tweeMacroError"
name="Twee Macro Errors"
point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification
annotationType="edu.uwm.twee.macro"
colorPreferenceKey="clcolor"
colorPreferenceValue="255,0,0"
includeOnPreferencePage="true"
label="Twee Macro Errors"
overviewRulerPreferenceKey="clruler"
overviewRulerPreferenceValue="true"
textPreferenceKey="cltext"
textPreferenceValue="true"
textStylePreferenceKey="clstyle"
textStylePreferenceValue="PROBLEM_UNDERLINE"
verticalRulerPreferenceKey="clvertical"
verticalRulerPreferenceValue="true">
</specification>
</extension>
</plugin>