Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2014-10-23 19:46:17 +0000
committerMarkus Keller2014-10-23 19:46:17 +0000
commita8f9998f225723ce2ca014158c58e4f2e09a1f12 (patch)
tree5d8772ab1ad13ca7f9ab9b4f62fa5f5e5339d070 /org.eclipse.ui.workbench.texteditor/plugin.xml
parent48a2962042f330d0c4833e1716aa65917d3f4457 (diff)
downloadeclipse.platform.text-a8f9998f225723ce2ca014158c58e4f2e09a1f12.tar.gz
eclipse.platform.text-a8f9998f225723ce2ca014158c58e4f2e09a1f12.tar.xz
eclipse.platform.text-a8f9998f225723ce2ca014158c58e4f2e09a1f12.zip
Bug 448549: [key binding] Ctrl+Up/Down are used by Mission Control on
Mac
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/plugin.xml')
-rw-r--r--org.eclipse.ui.workbench.texteditor/plugin.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/plugin.xml b/org.eclipse.ui.workbench.texteditor/plugin.xml
index 46672cbbb2f..f3ed45e0334 100644
--- a/org.eclipse.ui.workbench.texteditor/plugin.xml
+++ b/org.eclipse.ui.workbench.texteditor/plugin.xml
@@ -488,11 +488,25 @@
contextId="org.eclipse.ui.textEditorScope"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="CTRL+ARROW_UP"/> <!-- hardcode CTRL to avoid overwriting Command+UP on carbon -->
+ <!-- Ctrl+ARROW_UP is "Mission Control" on Mac OS X: -->
+ <key
+ platform="carbon"
+ commandId=""
+ contextId="org.eclipse.ui.textEditorScope"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="CTRL+ARROW_UP"/>
<key
commandId="org.eclipse.ui.edit.text.scroll.lineDown"
contextId="org.eclipse.ui.textEditorScope"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="CTRL+ARROW_DOWN"/> <!-- hardcode CTRL to avoid overwriting Command+DOWN on carbon -->
+ <!-- Ctrl+ARROW_DOWN is "Application windows" on Mac OS X. -->
+ <key
+ platform="carbon"
+ commandId=""
+ contextId="org.eclipse.ui.textEditorScope"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="CTRL+ARROW_DOWN"/>
<key
commandId="org.eclipse.ui.edit.text.toggleOverwrite"
contextId="org.eclipse.ui.textEditorScope"
@@ -543,7 +557,7 @@
contextId="org.eclipse.ui.textEditorScope"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+M3+J"/>
- <!-- disable the key binding for Carbon as it conflicts with another one in the SDK -->
+ <!-- disable the key binding for Carbon as it conflicts with "Add Javadoc Comment" in the SDK -->
<key
platform="carbon"
commandId=""

Back to the top