- 已编辑
Windows下用Emacs,用ahk把Ctrl+Space改为Ctrl+@,ahk内容如下:
#If WinActive("ahk_class Emacs")
^Space::
SendInput, ^@
Return
#If
utools(V0.8.7-beta)的全局显示快捷键是:双击Ctrl
我开着Emacs的时候(也就是ahk生效的条件下),左Ctrl+Space,正常,按键被ahk转为Ctrl+@。
右Ctrl+Space,utools被唤出来了,这里就和ahk冲突了,为什么左Ctrl不冲突,仅右Ctrl冲突?