Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2016-08-03 18:40:24 +0000
committerGerrit Code Review @ Eclipse.org2016-08-17 05:11:24 +0000
commit5c80faaafe66c078c7ca56eba702d0b7b4d38c74 (patch)
tree11935779dfaa5db6858ac775593bd79a9a5a2d50
parent11d5df1274403d06008976b2e44027ea35a2481f (diff)
downloadorg.eclipse.cdt-5c80faaafe66c078c7ca56eba702d0b7b4d38c74.tar.gz
org.eclipse.cdt-5c80faaafe66c078c7ca56eba702d0b7b4d38c74.tar.xz
org.eclipse.cdt-5c80faaafe66c078c7ca56eba702d0b7b4d38c74.zip
Bug 499116 - Missing keyboard binding for toggle comment
Add M1+7 key binding for Toggle Comment, just like JDT. Change-Id: I561dd01948b77041ebf85f5a0374f4caa0a7e120 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
-rw-r--r--core/org.eclipse.cdt.ui/plugin.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/plugin.xml b/core/org.eclipse.cdt.ui/plugin.xml
index 52b573d3793..d176c8c4975 100644
--- a/core/org.eclipse.cdt.ui/plugin.xml
+++ b/core/org.eclipse.cdt.ui/plugin.xml
@@ -2356,6 +2356,11 @@
contextId="org.eclipse.cdt.ui.cEditorScope"
commandId="org.eclipse.ui.edit.text.shiftLeft"/>
<key
+ sequence="M1+7"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ contextId="org.eclipse.cdt.ui.cEditorScope"
+ commandId="org.eclipse.cdt.ui.edit.text.c.toggle.comment"/>
+ <key
sequence="M1+/"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
contextId="org.eclipse.cdt.ui.cEditorScope"

Back to the top