Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2004-06-08 20:53:20 +0000
committerKevin Barnes2004-06-08 20:53:20 +0000
commit9d9e83d7e57ce5c9c0cd93a3fef58dcbbdc5e941 (patch)
tree2222745ac818f9dc63a6fa5126c4690142c75ffe /org.eclipse.debug.ui/plugin.xml
parent74c0ab40939ae1717d37aeeae74ea0e2b24d79b2 (diff)
downloadeclipse.platform.debug-9d9e83d7e57ce5c9c0cd93a3fef58dcbbdc5e941.tar.gz
eclipse.platform.debug-9d9e83d7e57ce5c9c0cd93a3fef58dcbbdc5e941.tar.xz
eclipse.platform.debug-9d9e83d7e57ce5c9c0cd93a3fef58dcbbdc5e941.zip
Bug 66187 - Polish patch: support view activation via a keyboard shortcut
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml73
1 files changed, 73 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 510e642b6..fb815e31e 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1502,6 +1502,79 @@
command="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint"
configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
</keyBinding>
+<!-- views -->
+ <command
+ name="%ViewCommand.debugView.name"
+ description="%ViewCommand.debugView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.DebugView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.DebugView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
+ <command
+ name="%ViewCommand.breakpointView.name"
+ description="%ViewCommand.breakpointView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.BreakpointView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.BreakpointView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
+ <command
+ name="%ViewCommand.variableView.name"
+ description="%ViewCommand.variableView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.VariableView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.VariableView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
+ <command
+ name="%ViewCommand.expressionView.name"
+ description="%ViewCommand.expressionView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.ExpressionView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.ExpressionView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
+ <command
+ name="%ViewCommand.registerView.name"
+ description="%ViewCommand.registerView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.RegisterView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.RegisterView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
+ <command
+ name="%ViewCommand.memoryView.name"
+ description="%ViewCommand.memoryView.description"
+ category="org.eclipse.ui.category.views"
+ id="org.eclipse.debug.ui.MemoryView">
+ </command>
+ <keyBinding
+ string=""
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.MemoryView"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">

Back to the top