Skip to content

Instantly share code, notes, and snippets.

@iamasink
Last active August 17, 2023 19:57
Show Gist options
  • Save iamasink/1a4e3f8d6d4627ded35b30357e8ce53c to your computer and use it in GitHub Desktop.
Save iamasink/1a4e3f8d6d4627ded35b30357e8ce53c to your computer and use it in GitHub Desktop.
#Requires AutoHotkey v2.0
; change this value to change how far the cursor moves:
increment := 15
Right::
{
MouseMove(increment, 0, 0, "R")
}
Left::
{
MouseMove(-increment, 0, 0, "R")
}
Up::
{
MouseMove(0, -increment, 0, "R")
}
Down::
{
MouseMove(0, increment, 0, "R")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment