#NoEnv SendMode Input SetWorkingDir %A_ScriptDir% #SingleInstance force
; 在20毫秒内检测到a键被按下为长按事件 $U+0061:: KeyWait, U+0061, T0.02 if (ErrorLevel) { ; 长按事件 Send {U+2764} ; 发送Unicode字符 } else { ; 单次按下事件 Send a ; 发送普通字符 }
; 在20毫秒内检测到b键被按下为长按事件 $U+0062:: KeyWait, U+0062, T0.02 if (ErrorLevel) { ; 长按事件 Send {U+270B} ; 发送Unicode字符 } else { ; 单次按下事件 Send b ; 发送普通字符 }