forked from Nodeclipse/nodeclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
126 lines (123 loc) · 5.4 KB
/
plugin.xml
File metadata and controls
126 lines (123 loc) · 5.4 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.core.runtime.adapters">
<factory
class="org.nodeclipse.debug.model.BreakpointAdapterFactory"
adaptableType="org.chromium.debug.ui.editors.JsEditor">
<adapter type="org.eclipse.debug.ui.actions.IToggleBreakpointsTarget" />
</factory>
<factory
class="org.nodeclipse.debug.model.BreakpointAdapterFactory"
adaptableType="org.nodeclipse.ui.editors.NodeEditor">
<adapter type="org.eclipse.debug.ui.actions.IToggleBreakpointsTarget" />
</factory>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.debug.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.debug.launch.LaunchConfigurationType"
modes="run, debug"
name="Node Application">
</launchConfigurationType>
<launchConfigurationType
id="org.nodeclipse.debug.launch.LaunchType$StandaloneV8"
delegate="org.nodeclipse.debug.launch.StandaloneV8LaunchTypeWrapper"
modes="debug"
name="V8 debugger for node"
delegateName="Debug Standalone V8 JavaScript"
delegateDescription="JavaScript debugger for Standalone V8"
sourceLocatorId="org.chromium.debug.core.ChromiumSourceDirector"
sourcePathComputerId="org.chromium.debug.core.ChromiumSourceComputer">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.debug.launch.LaunchConfigurationType"
icon= "icons/node.png"
id= "org.nodeclipse.debug.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.debug.launch.LaunchType$StandaloneV8"
icon= "icons/node.png"
id= "org.nodeclipse.debug.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.debug.launch.LaunchShortcut"
icon= "icons/node.png"
id= "org.nodeclipse.debug.launch.LaunchShortcut"
label= "Node Application"
modes= "run, debug" >
<configurationType
id= "org.nodeclipse.debug.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.js" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.debug.launch.LaunchShortcut"
icon= "icons/coffee.png"
id= "org.nodeclipse.debug.launch.LaunchShortcut"
label= "coffee"
modes= "run" >
<configurationType
id= "org.nodeclipse.debug.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.coffee" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.debug.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.debug.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.debug.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
<launchConfigurationTabGroup
type="org.nodeclipse.debug.launch.LaunchType$StandaloneV8"
class="org.chromium.debug.ui.launcher.LaunchTabGroup$StandaloneV8"
id="org.nodeclipse.debug.launch.LaunchType$StandaloneV8TabGroup">
</launchConfigurationTabGroup>
</extension>
</plugin>