For example I want press \'v\' to get \'asdfv\' by autohotkey, but when I define like the below :
v::send asdfv
the script run into an infinite loop, because th
Two ways:
#UseHook On v::send asdfv
or
$v::send asdfv