Created
July 20, 2013 06:12
-
-
Save 5310/6044047 to your computer and use it in GitHub Desktop.
This was the AutoHotkey script I was using on Windows when the right button on the mouse broke down. And then it suddenly got better. #script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppsKey:: | |
Send {RButton Down} | |
Return | |
AppsKey Up:: | |
Send {RButton Up} | |
Return | |
CapsLock:: | |
Send {RButton Down} | |
Return | |
CapsLock Up:: | |
Send {RButton Up} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment