Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.editors/plugin.xml')
-rw-r--r--org.eclipse.ui.editors/plugin.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/org.eclipse.ui.editors/plugin.xml b/org.eclipse.ui.editors/plugin.xml
index 3976749e1b8..3ba076fc1fc 100644
--- a/org.eclipse.ui.editors/plugin.xml
+++ b/org.eclipse.ui.editors/plugin.xml
@@ -167,6 +167,54 @@
commandId="org.eclipse.ui.edit.text.removeTrailingWhitespace"
class="org.eclipse.ui.internal.editors.text.RemoveTrailingWhitespaceHandler">
</handler>
+ <handler
+ commandId="org.eclipse.ui.edit.text.folding.collapse_all"
+ class="org.eclipse.ui.internal.editors.text.folding.CollapseAllHandler">
+ <enabledWhen>
+ <with
+ variable="activePart">
+ <adapt
+ type="org.eclipse.jface.text.ITextOperationTarget">
+ </adapt>
+ </with>
+ </enabledWhen>
+ </handler>
+ <handler
+ class="org.eclipse.ui.internal.editors.text.folding.CollapseAllHandler"
+ commandId="org.eclipse.ui.edit.text.folding.collapse_all">
+ <enabledWhen>
+ <with
+ variable="activePart">
+ <adapt
+ type="org.eclipse.jface.text.ITextOperationTarget">
+ </adapt>
+ </with>
+ </enabledWhen>
+ </handler>
+ <handler
+ class="org.eclipse.ui.internal.editors.text.folding.ExpandAllHandler"
+ commandId="org.eclipse.ui.edit.text.folding.expand_all">
+ <enabledWhen>
+ <with
+ variable="activePart">
+ <adapt
+ type="org.eclipse.jface.text.ITextOperationTarget">
+ </adapt>
+ </with>
+ </enabledWhen>
+ </handler>
+ <handler
+ class="org.eclipse.ui.internal.editors.text.folding.ExpandHandler"
+ commandId="org.eclipse.ui.edit.text.folding.expand">
+ <enabledWhen>
+ <with
+ variable="activePart">
+ <adapt
+ type="org.eclipse.jface.text.ITextOperationTarget">
+ </adapt>
+ </with>
+ </enabledWhen>
+ </handler>
</extension>
<extension

Back to the top