Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2005-05-21 19:58:58 +0000
committerDani Megert2005-05-21 19:58:58 +0000
commit234e11d526493981724386a8d0cf13098968cc60 (patch)
treeca5a6b863054df8714cb6aeff18195ef52937e72 /org.eclipse.ui.editors/plugin.xml
parent7f44af68c5fb72f5da21bb0be1c24a321d88cb0d (diff)
downloadeclipse.platform.text-234e11d526493981724386a8d0cf13098968cc60.tar.gz
eclipse.platform.text-234e11d526493981724386a8d0cf13098968cc60.tar.xz
eclipse.platform.text-234e11d526493981724386a8d0cf13098968cc60.zip
Fixed bug 96070: [api][key bindings] Change FileBufferOperationHandler to enable org.eclipse.ui.handlers extension point
Diffstat (limited to 'org.eclipse.ui.editors/plugin.xml')
-rw-r--r--org.eclipse.ui.editors/plugin.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/org.eclipse.ui.editors/plugin.xml b/org.eclipse.ui.editors/plugin.xml
index fb697d0f0a4..c25c1c27716 100644
--- a/org.eclipse.ui.editors/plugin.xml
+++ b/org.eclipse.ui.editors/plugin.xml
@@ -46,10 +46,6 @@
categoryId="org.eclipse.ui.category.file"
id="org.eclipse.ui.edit.text.removeTrailingWhitespace">
</command>
- <handlerSubmission
- commandId="org.eclipse.ui.edit.text.removeTrailingWhitespace"
- handler="org.eclipse.ui.internal.editors.text.RemoveTrailingWhitespaceHandler">
- </handlerSubmission>
<command
name="%openExternalFile.name"
categoryId="org.eclipse.ui.category.file"
@@ -107,6 +103,14 @@
</extension>
<extension
+ point="org.eclipse.ui.handlers">
+ <handler
+ commandId="org.eclipse.ui.edit.text.removeTrailingWhitespace"
+ class="org.eclipse.ui.internal.editors.text.RemoveTrailingWhitespaceHandler">
+ </handler>
+ </extension>
+
+ <extension
point="org.eclipse.ui.bindings">
<!-- win32: M1=CTRL, M2=SHIFT, M3=ALT, M4=-
carbon: M1=COMMAND, M2=SHIFT, M3=ALT, M4=CTRL -->

Back to the top