gpt4 book ai didi

eclipse - 创建具有可自定义键绑定(bind)的 Eclipse 插件

转载 作者:行者123 更新时间:2023-12-03 03:38:18 24 4
gpt4 key购买 nike

我尝试创建一个 Eclipse 插件,其中包含带有可自定义键绑定(bind)的命令。我尝试使用这个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>

默认绑定(bind)Ctrl+Return工作正常,但它不会出现在首选项中。缺少什么才能使其出现在首选项中,以便用户可以自定义键绑定(bind)?

最佳答案

尝试将 categoryId 添加到您的命令定义中。

   <extension
point="org.eclipse.ui.commands">
<category
id="com.myplugin.myCategory"
name="My Category"
description="My Category">
</category>
<command
description="Do something"
id="com.myplugin.myCommand"
categoryId="com.myplugin.myCategory"
name="My command">
</command>

关于eclipse - 创建具有可自定义键绑定(bind)的 Eclipse 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3353284/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com