Bug 570388 - Keybindings from org.eclipse.ui.bindings lost when Keys Scheme is changed.
Summary: Keybindings from org.eclipse.ui.bindings lost when Keys Scheme is changed.
Status: NEW
Alias: None
Product: Platform
Classification: Eclipse Project
Component: IDE (show other bugs)
Version: 4.19   Edit
Hardware: PC Windows 10
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Platform-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 552208
  Show dependency tree
 
Reported: 2021-01-15 06:54 EST by Fabio Zadrozny CLA
Modified: 2021-01-16 06:51 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Fabio Zadrozny CLA 2021-01-15 06:54:43 EST
I have an extension which contributes a `Ctrl+Tab` keybindings to the `org.eclipse.ui.window.nextEditor` action:


<extension point="org.eclipse.ui.bindings">
    <!-- see: IWorkbenchCommandConstants -->
    <key commandId="org.eclipse.ui.window.nextEditor"
            contextId="org.eclipse.ui.contexts.window"
            sequence="M1+Tab"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
    </key>
    <key commandId="org.eclipse.ui.window.previousEditor"
            contextId="org.eclipse.ui.contexts.window"
            sequence="M1+M2+Tab"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
    </key>
</extension>

When the user changes the scheme to "Emacs" and then goes back to "Default", the binding is lost.