在 Eclipse Emacs 模式下,有什么方法可以将 Alt 键重新映射或添加到 Esc 键吗?

发布于 2024-12-06 18:49:41 字数 62 浏览 0 评论 0原文

我习惯了 Emacs 使用 Esc 作为 Metakey。在eclipse中我可以将Esc键更改为Alt键吗?

I'm used to the Emacs use of Esc for Metakey. In eclipse may I change the Esc key to be the Alt key?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一片旧的回忆 2024-12-13 18:49:41

不,我不认为有办法做到这一点。 相关 Eclipse UI 文档 指出:

可识别的修饰键为 M1、M2、M3、M4、ALT、COMMAND、CTRL 和 SHIFT。

ESC只是一个“普通”键。 Emacs 专门处理 ESC,因此它的作用类似于修饰符。

Nope, I don't think there's a way to do that. The relevant Eclipse UI docs state:

The recognized modifiers keys are M1, M2, M3, M4, ALT, COMMAND, CTRL, and SHIFT.

ESC is only a "normal" key. Emacs handles ESC specifically, so that it acts like kind of a modifier.

眼眸里的那抹悲凉 2024-12-13 18:49:41

在 Windows 平台上,您可以使用 AutoHotkey 将 Esc 重新映射到 Alt

只需将其添加到您的 Autohotkey 脚本中:

#IfWinActive ahk_class SWT_Window0
$Esc::Alt
#IfWinActive

您可能需要调整第一行以匹配 Eclipse 窗口的类(使用 Autohokey 中提供的 Windows 间谍工具)。

On windows plateform you can use AutoHotkey to remap Esc to Alt

Just add this to your Autohotkey script :

#IfWinActive ahk_class SWT_Window0
$Esc::Alt
#IfWinActive

you may need to adjust the first line to match the class of your Eclipse window (use the windows spy tool provided in Autohokey).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文