-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
102 lines (98 loc) · 3.34 KB
/
plugin.xml
File metadata and controls
102 lines (98 loc) · 3.34 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
name="TagMyCode"
icon="icons/tagmycode.png"
class="com.tagmycode.eclipse.TagMyCodeView"
id="com.tagmycode.eclipse.TagMyCodeView">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
ratio="0.5"
relative="org.eclipse.ui.views.ProblemView"
relationship="right"
id="com.tagmycode.eclipse.TagMyCodeView">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml">
</contexts>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
objectClass="org.eclipse.ui.IEditorInput"
nameFilter="*.*"
id="tagmycode-eclipse.contribution1">
<action
class="com.tagmycode.eclipse.popup.actions.AddSnippet"
enablesFor="1"
icon="icons/create16.png"
id="tagmycode-eclipse.addAction"
label="Add Snippet on TagMyCode..."
menubarPath="additions">
</action>
<action
class="com.tagmycode.eclipse.popup.actions.SearchSnippet"
enablesFor="1"
icon="icons/search16.png"
id="tagmycode-eclipse.searchAction"
label="Search Snippet on TagMyCode..."
menubarPath="tagmycode-eclipse.addAction"> </action>
</objectContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<category
id="tagmycode-eclipse.commands.category"
name="TagMyCode">
</category>
<command
categoryId="tagmycode-eclipse.commands.category"
id="tagmycode-eclipse.commands.showTagMyCodeWindow"
name="Show TagMyCode Window">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="com.tagmycode.eclipse.handlers.ShowTagMyCodeWindow"
commandId="tagmycode-eclipse.commands.showTagMyCodeWindow">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="tagmycode-eclipse.commands.showTagMyCodeWindow"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+6">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="tagmycode-eclipse.toolbars.tagMyCodeToolbar"
label="TagMyCode">
<command
commandId="tagmycode-eclipse.commands.showTagMyCodeWindow"
icon="icons/tagmycode.png"
id="tagmycode-eclipse.toolbars.showTagMyCodeWindow"
tooltip="Show TagMyCode Window">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>