| Summary: | Keybindings overlap with JDT | ||
|---|---|---|---|
| Product: | [Technology] EGit | Reporter: | Jan Koehnlein <jan> |
| Component: | UI | Assignee: | Project Inbox <egit.ui-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | major | ||
| Priority: | P3 | CC: | matthias.sohn, pwebster, sebastian.zarnekow, sven.efftinge |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | Macintosh | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
|
Description
Jan Koehnlein
This effectively kills keybindings I often use for triggering JDT refactorings. Even worse, the key storkes insert special characters now: "extract method" now inserts a "mu" character, "change methods" inserts a "c-sedit", "Inline" a backslash. Please also consider using capabilites to enable users to switch of these contributions. This effectively removes the short cut for "Extract Method" in Java editors, which is one of the shortcuts I use heavily.
The problem just happens with Carbon, because JDT has a special shortcut for that platform.
From jdt.ui's plugin.xml :
<key
sequence="M2+M3+M"
commandId="org.eclipse.jdt.ui.edit.text.java.extract.method"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
platform="carbon"
sequence="M2+M3+M"
commandId=""
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
platform="carbon"
sequence="COMMAND+ALT+M"
commandId="org.eclipse.jdt.ui.edit.text.java.extract.method"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
*** This bug has been marked as a duplicate of bug 321739 *** |