Specifically I want to hold down the control key, and press the m key, let go of m but keep control held down, and then press m again, which will trigger the function. More generically I'd like to know the syntax for telling autohotkey to read the same key multiple times
How do I do that?
I can do it with a single m like this
^m::
Send, The text i want to send
Return
So far I have tried
^m m::
Send, The text i want to send
Return
^m&m::
Send, The text i want to send
Return
^mm::
Send, The text i want to send
Return
All of which are illegal