Eclipse:如何创建和加载自定义键绑定方案?
我最近开始使用 Eclipse 以及很棒的 PyDev 用于 Python 开发的插件。在习惯了 Visual Studio 键绑定后,我发现 Eclipse 内置了对 Visual Studio(以及 Emacs)键绑定方案的支持。
但是,我想创建我自己的自定义键绑定方案,并能够加载该方案到 Eclipse 中。我该怎么做?
I started using Eclipse recently along with the awesome PyDev plugin for Python development. Being used to the Visual Studio key bindings, I found that Eclipse has built-in support for a Visual Studio (and Emacs too) key bindings scheme.
However, I would like to create my own custom key bindings scheme and be able to load the scheme into Eclipse. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如 方案帮助页面,您可以通过自定义插件定义新的密钥方案:
如 向导帮助页面,您只能导出按键绑定首选项。
(来源:eclipse. org)
并且您将能够通过文件/导入将其导入回来。
至于根据您当前的上下文可用的快捷键列表:
Ctrl+Shift+L:您可以检查您的修改是否适用。
As explained in the Schemes help page, you can define new Key Schemes through a custom plugin:
As illustrated by the Wizard Help Page, you can export only the key bindings preferences.
(source: eclipse.org)
And you will be able to import it back through File/Import.
As for the list of shortcuts available depending on your current context:
Ctrl+Shift+L: you can check if your modifications apply.