将显示问题视图添加到RCP菜单,但隐藏键盘快捷键

时间:2017-05-03 16:02:29

标签: eclipse-rcp

我添加了一个命令,使用plugin.xml中的以下代码段向我的RCP应用程序显示问题视图

        <command
              commandId="org.eclipse.ui.views.showView"
              label="Show Problems"
              style="push">
           <parameter
                 name="org.eclipse.ui.views.showView.viewId"
                 value="org.eclipse.ui.views.ProblemView">
           </parameter>
        </command>

工作正常。但是,菜单项包含视图的键盘快捷键,我不希望它在那里。有没有办法控制它?

1 个答案:

答案 0 :(得分:0)

您可以尝试编写一个具有空键序列的绑定:

<extension
         point="org.eclipse.ui.bindings">
      <key sequence=""
            commandId="org.eclipse.ui.views.showView"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
</extension>