将暂停和暂停绑定到同一个键

Bind pause and suspend to the same key

在 AHK 中,我可以将暂停和挂起分配给不同的按钮:

 ^F4::
 pause
 return

 ^F5::
 suspend
 return   

但是如果分配给同一个键则事件不会触发。如何将 pausesuspend 绑定到同一个热键?

"Suspend must be the first line of the hotkey."

另外,你可以在一行中写^F8::pause

添加参数

^F8::
Suspend
Pause,,1
return