Skip to content

Instantly share code, notes, and snippets.

@spacehare
Last active June 24, 2024 04:03
Show Gist options
  • Save spacehare/0f75c2348ec353a141e6d5b33fcad6fd to your computer and use it in GitHub Desktop.
Save spacehare/0f75c2348ec353a141e6d5b33fcad6fd to your computer and use it in GitHub Desktop.
so you don't have to keep the button pressed down
#Requires AutoHotkey v2.0
toggle := false
#HotIf WinActive('ahk_exe quakespasm.exe')
RButton:: {
global toggle := !toggle
SendInput toggle ? '{LButton down}' : '{LButton up}'
}
~LButton:: {
global toggle := false
}
#HotIf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment