【发布时间】:2013-12-20 13:59:05
【问题描述】:
真的可以在 Eclipse 中创建自己的热键吗?
例如,我想创建一个用于创建文件夹的热键。
【问题讨论】:
-
使用eclipse热键,你想在项目中创建文件夹吗?
-
是的,我想在资源文件夹中创建目录
标签: java eclipse ide customization hotkeys
真的可以在 Eclipse 中创建自己的热键吗?
例如,我想创建一个用于创建文件夹的热键。
【问题讨论】:
标签: java eclipse ide customization hotkeys
你为什么不去谷歌?
Windows -> Preferences -> General -> Keys.
在这里,有一个选项可以设置热键来创建文件夹。只需去那里设置您要使用的键即可。
【讨论】:
我认为这可能对您有所帮助。
转到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
【讨论】: