Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2004-05-03 22:03:24 +0000
committerKevin Barnes2004-05-03 22:03:24 +0000
commit2b0ccede68c767790e6720e09ccf1d259e76b6fd (patch)
tree710fe44aba10dd76fb9961b89835909a4ef878d7 /org.eclipse.debug.ui/plugin.xml
parentc0d2e0e2878548d17b2aa33d879e3e903d1d8742 (diff)
downloadeclipse.platform.debug-2b0ccede68c767790e6720e09ccf1d259e76b6fd.tar.gz
eclipse.platform.debug-2b0ccede68c767790e6720e09ccf1d259e76b6fd.tar.xz
eclipse.platform.debug-2b0ccede68c767790e6720e09ccf1d259e76b6fd.zip
Bug 59854 - Debug keybindings wrong on Mac
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 7605c511b..7ecd41e17 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1410,6 +1410,13 @@
command="org.eclipse.debug.ui.commands.RunToLine"
configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
</keyBinding>
+ <keyBinding
+ platform="carbon"
+ string="Command+R"
+ scope="org.eclipse.debug.ui.debugging"
+ command="org.eclipse.debug.ui.commands.RunToLine"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
<command
name="%ActionDefinition.toggleBreakpoint.name"
description="%ActionDefinition.toggleBreakpoint.description"
@@ -1422,6 +1429,13 @@
command="org.eclipse.debug.ui.commands.ToggleBreakpoint"
configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
</keyBinding>
+ <keyBinding
+ platform="carbon"
+ string="Command+Shift+B"
+ scope="org.eclipse.ui.globalScope"
+ command="org.eclipse.debug.ui.commands.ToggleBreakpoint"
+ configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
+ </keyBinding>
<command
name="%ActionDefinition.skipAllBreakpoints.name"
description="%ActionDefinition.skipAllBreakpoints.description"

Back to the top