This repository has been archived by the owner on May 9, 2022. It is now read-only.
forked from gkorland/Eclipse-Fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
33 lines (33 loc) · 1.8 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.ui.actionSets">
<actionSet label="FontResize" visible="true" id="FontResize.actionSet">
<action label="Increase fonts size" icon="icons/increase-font.gif"
class="fontresize.actions.FontIncreaseSizeAction" toolbarPath="increaseFontsSize"
id="fontresize.actions.FontsIncreaseSizeAction"/>
<action label="Decrease fonts size" icon="icons/decrease-font.gif"
class="fontresize.actions.FontDecreaseSizeAction" toolbarPath="increaseFontsSize"
id="fontresize.actions.FontsDecreaseSizeAction"/>
</actionSet>
</extension>
<extension point="org.eclipse.ui.commands">
<category name="Fonts Size" id="fontresize.commands.category"/>
<command name="Fonts Increase" categoryId="fontresize.commands.category"
id="fontresize.commands.increase"/>
<command name="Fonts Decrease" categoryId="fontresize.commands.category"
id="fontresize.commands.decrease"/>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler commandId="fontresize.commands.increase"
class="fontresize.handlers.FontIncreaseSizeHandler"/>
<handler commandId="fontresize.commands.decrease"
class="fontresize.handlers.FontDecreaseSizeHandler"/>
</extension>
<extension point="org.eclipse.ui.bindings">
<key commandId="fontresize.commands.increase" contextId="org.eclipse.ui.textEditorScope"
sequence="M1+0" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"></key>
<key commandId="fontresize.commands.decrease" contextId="org.eclipse.ui.textEditorScope"
sequence="M1+-" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"></key>
</extension>
</plugin>