Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamantha Chan2007-02-23 21:54:02 +0000
committerSamantha Chan2007-02-23 21:54:02 +0000
commit2daa21668e2a32c4aa3003e823178957e49f4ef0 (patch)
treec6270d80edb99f88012441400ae88eeb69693411 /org.eclipse.debug.ui/plugin.xml
parentb0b50d19f69ba6c76d9876bf68c306616c8382e5 (diff)
downloadeclipse.platform.debug-2daa21668e2a32c4aa3003e823178957e49f4ef0.tar.gz
eclipse.platform.debug-2daa21668e2a32c4aa3003e823178957e49f4ef0.tar.xz
eclipse.platform.debug-2daa21668e2a32c4aa3003e823178957e49f4ef0.zip
BUG 167788 - [Memory View] Add shortcut keys for Next Page and Previous Page actions
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml24
1 files changed, 23 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index f8650f451..65ede70fb 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1624,6 +1624,18 @@ M4 = Platform-specific fourth key
description="%command.description.0"
id="org.eclipse.debug.ui.command.gotoaddress"
name="%command.name.0"/>
+ <command
+ categoryId="org.eclipse.debug.ui.category.run"
+ id="org.eclipse.debug.ui.command.nextpage"
+ name="%command.name.1"
+ description = "%command.description.1">
+ </command>
+ <command
+ categoryId="org.eclipse.debug.ui.category.run"
+ id="org.eclipse.debug.ui.command.prevpage"
+ name="%command.name.2"
+ description = "%command.description.2">
+ </command>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
@@ -1733,7 +1745,17 @@ M4 = Platform-specific fourth key
commandId="org.eclipse.debug.ui.command.gotoaddress"
contextId="org.eclipse.debug.ui.memory.abstractasynctablerendering"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
- sequence="M1+G"/>
+ sequence="M1+G"/>
+ <key
+ commandId="org.eclipse.debug.ui.command.nextpage"
+ contextId="org.eclipse.debug.ui.memory.abstractasynctablerendering"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M2+."/>
+ <key
+ commandId="org.eclipse.debug.ui.command.prevpage"
+ contextId="org.eclipse.debug.ui.memory.abstractasynctablerendering"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M2+,"/>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">

Back to the top