Eclipse插件:使用快捷方式后,为什么我的菜单贡献没有显示?

时间:2014-07-10 10:28:53

标签: eclipse eclipse-plugin plugin.xml

我想在来源弹出窗口中添加一个菜单项,然后我使用以下plugin.xml片段:

 <menuContribution allPopups="true" locationURI="popup:org.eclipse.jdt.ui.source.menu">
        <command
              commandId="pl.axit.eclipse.bundle.commands.convertToBundle"
              id="pl.axit.eclipse.bundle.menus.convertToBundle"
              label="Extract bundle" >
        </command>
  </menuContribution>

点击鼠标右键然后选择来源,我就可以看到提取包项了。大。

Using the mouse, everything works

但是......当我用快捷键(alt + shift + s)打开 Source 菜单时,我的 Extract Bundle 就不存在!知道为什么以及如何在使用快捷方式后显示它?

My item is absent when using the shortcut to bring up the Source popup

0 个答案:

没有答案