-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathplugin.xml
More file actions
109 lines (109 loc) · 4 KB
/
plugin.xml
File metadata and controls
109 lines (109 loc) · 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.ui.npm.LaunchConfigurationDelegate"
id="org.nodeclipse.ui.npm.LaunchConfigurationType"
modes="run, debug"
name="NPM">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.ui.npm.LaunchConfigurationType"
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.ui.npm.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.ui.npm.InstallLaunchShortcut"
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.ui.npm.InstallLaunchShortcut"
label= "npm install"
modes= "run" >
<configurationType
id= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<and>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "package.json" >
</test>
</and>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.ui.npm.LaunchShortcut"
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.ui.npm.LaunchShortcut"
label= "npm ..."
modes= "run" >
<configurationType
id= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<and>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "package.json" >
</test>
</and>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.ui.npm.LaunchConfigurationTabGroup"
id= "org.nodeclipse.ui.npm.LaunchConfigurationTabGroup"
type= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<!--
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.nodeclipse.ui.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.nodeclipse.ui.preferences.NodePreferencePage"
id="org.nodeclipse.ui.preferences.NodePreferencePage"
name="Nodeclipse">
</page>
</extension>
-->
</plugin>