通过 Auto Hot Key 实现ctrl+b=f8, ctrl+r=f5 快捷键 编译 compile build

通过 Auto Hot Key 实现ctrl+b=f8, ctrl+r=f5
安装官网 Auto Hot Key,右键,新建“Auto Hot Key" file, 编辑输入以下内容

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
^b::
Send {f8}
return
^r::
Send {f5}
return

然后把ahk编译成为exe

猜你喜欢

转载自blog.csdn.net/love_hot_girl/article/details/83660019