2

我在 plugin.xml 中为我的命令分配了一个键绑定:

  <extension point="org.eclipse.ui.bindings">
        <key commandId="MyCommand"
             contextId="org.eclipse.ui.contexts.window"
             schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
             sequence="M1+R"/>
  </extension>

它可以工作,但它不会出现在 Preferences > Keys 中,因此用户无法更改它。我怎样才能使它可配置?

4

1 回答 1

2

默认情况下,命令会从关键配置首选项页面中过滤掉,除非它被分类。

您可以使用 Key configuration 对话框下半部分的“well-hidden”过滤器按钮禁用此过滤,也可以为您的命令定义一个类别。

于 2012-08-08T19:08:59.823 回答