-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
40 lines (37 loc) · 1.04 KB
/
plugin.xml
File metadata and controls
40 lines (37 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<!-- commands -->
<extension point="org.eclipse.ui.commands">
<command
id="com.sohelper.getanswer"
name="Search Stackoverflow">
</command>
</extension>
<!-- menus -->
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
<command
commandId="com.sohelper.getanswer"
label="Search Stackoverflow"
style="push">
</command>
</menuContribution>
</extension>
<!-- handlers -->
<extension point="org.eclipse.ui.handlers">
<handler
class="com.sohelper.handlers.SOHandler"
commandId="com.sohelper.getanswer">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.sohelper.getanswer"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="ALT+S">
</key>
</extension>
</plugin>