This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
plugin.xml
84 lines (78 loc) · 3.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.5"?>
<plugin>
<extension point="org.eclipse.ui.commands">
<category
name="%commandCategoryName"
description="%commandCategoryDescription"
id="org.eclipsescript.commandcategory"/>
<command
name="%commandRunLastName"
description="%commandRunLastDescription"
categoryId="org.eclipsescript.commandcategory"
id="org.eclipsescript.runlast"/>
<command
name="%commandRunCurrentName"
description="%commandRunCurrentDescription"
categoryId="org.eclipsescript.commandcategory"
id="org.eclipsescript.runcurrent"/>
<command
name="%commandOpenScriptDialogName"
description="%commandOpenScriptDialogDescription"
categoryId="org.eclipsescript.commandcategory"
id="org.eclipsescript.openscriptdialog"/>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler
class="org.eclipsescript.core.RunLastHandler"
commandId="org.eclipsescript.runlast"/>
<handler
class="org.eclipsescript.core.RunCurrentHandler"
commandId="org.eclipsescript.runcurrent"/>
<handler
class="org.eclipsescript.core.OpenScriptDialogHandler"
commandId="org.eclipsescript.openscriptdialog"/>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
sequence="%commandRunLastSequence"
commandId="org.eclipsescript.runlast"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
sequence="%commandRunCurrentSequence"
commandId="org.eclipsescript.runcurrent"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
sequence="%commandOpenScriptDialogSequence"
commandId="org.eclipsescript.openscriptdialog"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
</extension>
<extension id="org.eclipsescript.scriptproblemmarker" point="org.eclipse.core.resources.markers" name="%markerName">
<super type="org.eclipse.core.resources.problemmarker"/>
</extension>
<extension point="org.eclipse.ui.console.consolePageParticipants">
<consolePageParticipant class="org.eclipsescript.ui.CloseConsolePageParticipant" id="org.eclipsescript.ui.CloseConsolePageParticipant">
<enablement><instanceof value="org.eclipsescript.scriptobjects.Console$ConsoleClass"/></enablement>
</consolePageParticipant>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup
class="org.eclipsescript.core.Autostart">
</startup>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.eclipsescript.preferences.EclipseScriptPreferencePage"
id="org.eclipsescript.preferences.EclipseScriptPreferencePage"
name="EclipseScript Preferences">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.eclipsescript.preferences.PreferenceInitializer">
</initializer>
</extension>
</plugin>