一开始用网上找的这段ahk代码,怎么都无法输出“```”
#IfWinActive ahk_exe Typora.exe
{
; Ctrl+K cCode
; crtl 是 ^ k 是 k键
^k::addCodeC()
}
addCodeC(){
Send,{Asc 096}
Send,{Asc 096}
Send,{Asc 096}
Send,C
Send,{Enter}
Return
}
后面修改成这个即可
#IfWinActive ahk_exe Typora.exe
; crtl 是 ^ shift 是 + k 是 k键
^+k::
SendRaw ``````java
Send,{Enter}
return