Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2004-01-06 13:27:39 +0000
committerDani Megert2004-01-06 13:27:39 +0000
commit871fb3212ff790448a304bf712123f2c48f0cea4 (patch)
treef286cf889c27d168232d89c5bf8eaf5e5e34ff41 /org.eclipse.ui.editors/plugin.xml
parent0475c4bfc7aa49b5674fdd2c3172ff448bfcdc94 (diff)
downloadeclipse.platform.text-871fb3212ff790448a304bf712123f2c48f0cea4.tar.gz
eclipse.platform.text-871fb3212ff790448a304bf712123f2c48f0cea4.tar.xz
eclipse.platform.text-871fb3212ff790448a304bf712123f2c48f0cea4.zip
Fixed bug 49506: [RCP] Invalid Menu Extension: org.eclipse.ui.edit.text.gotoLastEditPosition
Diffstat (limited to 'org.eclipse.ui.editors/plugin.xml')
-rw-r--r--org.eclipse.ui.editors/plugin.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/org.eclipse.ui.editors/plugin.xml b/org.eclipse.ui.editors/plugin.xml
index 45350203773..c83611dd99a 100644
--- a/org.eclipse.ui.editors/plugin.xml
+++ b/org.eclipse.ui.editors/plugin.xml
@@ -288,6 +288,24 @@
tooltip="%goToNextAnnotation.tooltip">
</action>
</actionSet>
+ <actionSet
+ label="%textEditorNavigationActionSet.label"
+ visible="true"
+ id="org.eclipse.ui.edit.text.actionSet.navigation">
+ <action
+ toolbarPath="org.eclipse.ui.workbench.navigate/history.group"
+ id="org.eclipse.ui.edit.text.gotoLastEditPosition"
+ hoverIcon="icons/full/ctool16/last_edit_pos.gif"
+ class="org.eclipse.ui.internal.texteditor.GotoLastEditPositionAction"
+ definitionId="org.eclipse.ui.edit.text.gotoLastEditPosition"
+ disabledIcon="icons/full/dtool16/last_edit_pos.gif"
+ icon="icons/full/etool16/last_edit_pos.gif"
+ helpContextId="goto_last_edit_position_action_context"
+ label="%goToLastEditPosition.label"
+ menubarPath="navigate/"
+ tooltip="%goToLastEditPosition.tooltip">
+ </action>
+ </actionSet>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification">

Back to the top