I want to register a new key combination (e.g. CTRL+N or what ever is available) while the focus is on the source code editor window in Eclipse, but I am doing something wrong.
Firstly, I defined a new context in the plugin.xml:
<extension
point="org.eclipse.ui.contexts">
<context
name="org.[...].MySelection"
description="do it"
id="org.eclipse.ui.textEditorScope"
parentId="org.eclipse.ui.contexts.window">
</context>
Secondly, I added a command with a handler that shall be executed:
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="FFFFF"
id="org.[...].MySelection"
name="asfsfsd">
</command>
</extension>
Thirdly, I associate a keybinding for a context with my command:
<extension
point="org.eclipse.ui.bindings">
<key
sequence="M1+N"
contextId="org.eclipse.ui.textEditorScope"
commandId="org.[...].MySelection"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
</extension>
My FFFF handle class only prints a message once the execute methode is executed, but that never happens. Does someone see what is wrong?