Skip to content

Instantly share code, notes, and snippets.

@yoonbae81
Created April 20, 2020 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoonbae81/5e6574e819d60963ab285acdb0969b41 to your computer and use it in GitHub Desktop.
Save yoonbae81/5e6574e819d60963ab285acdb0969b41 to your computer and use it in GitHub Desktop.
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