-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
101 lines (98 loc) · 3.36 KB
/
plugin.xml
File metadata and controls
101 lines (98 loc) · 3.36 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.ui.commands">
<category id="com.akikhtenko.split" name="HandySplit" description="Split and manipulate open editors"/>
<command
id="com.akikhtenko.split.split"
name="Split editor"
defaultHandler="com.akikhtenko.split.SplitProcessor"
categoryId="com.akikhtenko.split">
<commandParameter id="com.akikhtenko.split.direction" name="Direction"/>
</command>
<command
id="com.akikhtenko.split.move"
name="Move editor"
defaultHandler="com.akikhtenko.split.MoveProcessor"
categoryId="com.akikhtenko.split"/>
<command
id="com.akikhtenko.split.clone"
name="Clone editor"
defaultHandler="com.akikhtenko.split.CloneProcessor"
categoryId="com.akikhtenko.split">
<commandParameter id="com.akikhtenko.split.direction" name="Direction"/>
</command>
<command
id="com.akikhtenko.split.exchange"
name="Exchange editors"
defaultHandler="com.akikhtenko.split.ExchangeProcessor"
categoryId="com.akikhtenko.split"/>
<command
id="com.akikhtenko.split.flatten"
name="Flatten split editors"
defaultHandler="com.akikhtenko.split.FlattenProcessor"
categoryId="com.akikhtenko.split"/>
<command
id="com.akikhtenko.split.toggle"
name="Toggle focus between split editors"
defaultHandler="com.akikhtenko.split.ToggleFocusProcessor"
categoryId="com.akikhtenko.split"/>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
commandId="com.akikhtenko.split.split"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S S"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
<parameter id="com.akikhtenko.split.direction" value="H"/>
</key>
<key
commandId="com.akikhtenko.split.split"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+M3+S S"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
<parameter id="com.akikhtenko.split.direction" value="V"/>
</key>
<key
commandId="com.akikhtenko.split.move"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S M"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
commandId="com.akikhtenko.split.clone"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S C"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
<parameter id="com.akikhtenko.split.direction" value="H"/>
</key>
<key
commandId="com.akikhtenko.split.clone"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+M3+S C"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
<parameter id="com.akikhtenko.split.direction" value="V"/>
</key>
<key
commandId="com.akikhtenko.split.exchange"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S E"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
commandId="com.akikhtenko.split.flatten"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S F"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
commandId="com.akikhtenko.split.toggle"
contextId="org.eclipse.ui.contexts.window"
sequence="M2+M3+S T"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
</extension>
<extension
point="org.eclipse.help.toc">
<toc
file="HelpToc.xml"
primary="true">
</toc>
</extension>
</plugin>