Reputation: 2120
How to rebind a key chord with Ctrl
so that it repeats on multiple presses, while Ctrl
is held down?
Example: I'm expertimenting with binding Ctrl
+Space
to Backspace
.
^Space::Send {BackSpace}
When I now press Ctrl
+Space
correctly Backspace
is sent and deletes the last character. I want now to keep Ctrl
down and delete further characters with multiple Space
strokes.
Upvotes: 0
Views: 1083