-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathplugin.xml
More file actions
57 lines (57 loc) · 2.13 KB
/
plugin.xml
File metadata and controls
57 lines (57 loc) · 2.13 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<command
categoryId="org.eclipse.debug.ui.category.run"
defaultHandler="com.codeaffine.extras.launch.internal.dialog.OpenLaunchDialogHander"
description="Open the 'Start Launch Configuration' Dialog"
id="com.codeaffine.extras.launch.internal.OpenLaunchDialogCommand"
name="Open Launch Dialog">
</command>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.codeaffine.extras.launch.internal.OpenLaunchDialogCommand"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+F11">
</key>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup
class="com.codeaffine.extras.launch.internal.LaunchExtrasStartup">
</startup>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.eclipse.debug.ui.LaunchingPreferencePage"
class="com.codeaffine.extras.launch.internal.cleanup.CleanupPreferencePage"
id="com.codeaffine.extras.launch.internal.cleanup.CleanupPreferencePage"
name="Clean Up">
<keywordReference
id="org.eclipse.debug.ui.launching">
</keywordReference>
<keywordReference
id="org.eclipse.debug.ui.contextLaunching">
</keywordReference>
</page>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:org.eclipse.ui.run?endof=relaunchGroup">
<command
commandId="com.codeaffine.extras.launch.internal.OpenLaunchDialogCommand"
icon="icons/etool16/start-launch-configuration.gif"
id="com.codeaffine.extras.launch.internal.StartLaunchConfigMenuItem"
label="Start Launch Configuration..."
style="push">
</command>
</menuContribution>
</extension>
</plugin>