Я попытался создать плагин Eclipse с командами с настраиваемыми привязками клавиш.
Я пытался с этим plugin.xml:
<plugin>
<extension
point="org.eclipse.ui.commands">
<command
description="Do something"
id="com.myplugin.myCommand"
name="My command">
</command>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.myplugin.myCommand"
contextId="org.python.pydev.ui.editor.scope"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="Ctrl+Return">
</key>
</extension>
</plugin>
Связывание по умолчанию Ctrl + Return работает отлично, но не отображается в настройках. Чего не хватает, чтобы он появился в настройках, чтобы пользователь мог настроить привязку клавиш?