how to send a letter as itself when it is used as hotkey in autohotkey

后端 未结 1 1135
日久生厌
日久生厌 2021-01-23 07:03

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

相关标签:
1条回答
  • 2021-01-23 07:33

    Two ways:

    #UseHook On
    
    v::send asdfv
    

    or

    $v::send asdfv
    
    0 讨论(0)
提交回复
热议问题