Created
April 20, 2020 13:29
-
-
Save yoonbae81/5e6574e819d60963ab285acdb0969b41 to your computer and use it in GitHub Desktop.
This file contains 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
MButton:: | |
if (A_ThisHotkey = A_PriorHotkey and A_TimeSincePriorHotkey < 200) | |
Send, ^w | |
else | |
Send, {MButton} | |
Return | |
RButton:: | |
if (A_ThisHotkey = A_PriorHotkey and A_TimeSincePriorHotkey < 200) { | |
Send, {Browser_Back} | |
Send, {ESC} | |
} | |
else | |
Send, {RButton} | |
Return | |
RButton & WheelUP::^PgUp | |
RButton & WheelDown::^PgDn | |
#Esc::ExitApp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment