-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathplugin.xml
More file actions
88 lines (82 loc) · 3.06 KB
/
plugin.xml
File metadata and controls
88 lines (82 loc) · 3.06 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.eclipse.ui.editors.text.TextEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
default="true"
extensions="redis"
icon="icons/redis-ico-16x16.png"
id="org.nodeclipse.redis.editors.RedisCommandsEditor"
name="Redis Commands List Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.redis.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.redis.launch.LaunchConfigurationType"
modes="run"
name="Redis-cli ">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.redis.launch.LaunchConfigurationType"
icon= "icons/redis-ico-16x16.png"
id= "org.nodeclipse.redis.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- Redis Commands run -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.redis.launch.LaunchShortcut"
icon= "icons/redis-ico-16x16.png"
id= "org.nodeclipse.redis.launch.LaunchShortcut"
label= "Redis commands"
modes= "run" >
<configurationType
id= "org.nodeclipse.redis.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.redis" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.redis.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.redis.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.redis.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<!--
<extension
point="org.eclipse.help.toc">
<toc
file="HelpToc.xml"
primary="true">
</toc>
</extension>
-->
</plugin>