forked from jwiklund/pp-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
23 lines (20 loc) · 684 Bytes
/
Copy pathplugin.xml
File metadata and controls
23 lines (20 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.ui.commands">
<command
categoryId="org.eclipse.jdt.ui.category.source"
defaultHandler="browse.command.OpenInputTemplateCommand"
description="Open Input Template"
id="browse.command.OpenInputTemplateCommand"
name="Browse">
</command>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
commandId="browse.command.OpenInputTemplateCommand"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="Ctrl+Shift+I">
</key>
</extension>
</plugin>