-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
61 lines (60 loc) · 2.48 KB
/
Copy pathplugin.xml
File metadata and controls
61 lines (60 loc) · 2.48 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<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>
</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>
</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.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.debug.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.debug.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.debug.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
</plugin>