如何在eclipse中自定义热键?

时间:2013-12-04 07:16:29

标签: java eclipse ide customization hotkeys

是否真的可以在Eclipse中创建自己的热键?

例如,我想创建一个用于创建文件夹的热键。

2 个答案:

答案 0 :(得分:2)

为什么你没有谷歌呢?

Windows -> Preferences -> General -> Keys.

在此处,可以选择设置热键以创建文件夹。只需去那里设置你想要使用的密钥。

答案 1 :(得分:1)

我认为这可能对你有所帮助。 转到Windows> Preferences>选择General> Editor> Keys页面。这里的设置是使用插件org.eclipse.ui.commands配置您自己的热键。首先,您需要定义新配置

      <keyConfiguration
          name="My Configuration"
          parent="org.eclipse.ui.defaultAcceleratorConfiguration"
          description="This is a simple configuration"
          id="org.eclipse.faq.sampleConfiguration">
       </keyConfiguration>

以下教程可以帮助您清楚.. http://www.vogella.com/articles/EclipseCommandsKeybindings/article.html