是否真的可以在Eclipse中创建自己的热键?
例如,我想创建一个用于创建文件夹的热键。
答案 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