使用 Fn 或超级(Windows)键定义新的快捷键

发布于 2025-01-07 22:54:21 字数 95 浏览 2 评论 0原文

有没有办法使用 Fnsuper (Windows)在 PhpStorm 中定义新的键盘快捷键? (现在几乎所有组合键都已分配)

Is there any way to use Fn or super (windows) to define new keyboard shortcut in PhpStorm?
(Almost all key combinations are allocated right now)

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

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

发布评论

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

评论(1

赤濁 2025-01-14 22:54:21

您很可能无法直接执行此操作,因为 Java 无法识别此类关键代码,但是可以使用第三方工具(例如 自动热键

这个想法是将 Java 无法识别的键盘快捷键映射到已识别但尚未使用的键盘快捷键,因为手动输入很困难。

例如,将 Win+N 映射到 Ctrl+Alt+Shift+ Z 在 AutoHotkey 中使用以下脚本:

#n::^!+z

现在您可以将任何操作映射到PhpStorm 设置 中的 Win+N | 键盘映射

使用 Fn 键的能力取决于特定的键盘。如果此键发送可以被 Autohotkey 识别的单独键码,那么您可以按照上述方式映射它。我的 Logitech 键盘有 Fn 键,该键不会发送按键代码,因此无法使用。但是,我能够使用 AutoHotkey 中的 AppsKey 映射 ALT GR 键(右 alt)。

Most likely you can't do it directly since Java will not recognize such key codes, however there is a workaround using third-party tools like AutoHotkey.

The idea is to map a keyboard shortcut that is not recognized by Java to the one that is recognized but is not already used because it's hard to type manually.

For example, to map Win+N to Ctrl+Alt+Shift+Z use the following script in AutoHotkey:

#n::^!+z

Now you can map any action to Win+N in PhpStorm Settings | Keymap.

Abilty to use Fn key would depend on the particular keyboard. If this key sends separate key code that can be recognized by Autohotkey, then you can map it the way described above. My Logitech keyboard has Fn key that doesn't send a key code and therefore cannot be used. However, I was able to map ALT GR key (right alt) using AppsKey in AutoHotkey.

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