79378586

Date: 2025-01-22 16:55:29
Score: 1
Natty:
Report link

Here's how to do it with the V2 version of AHK:

#Requires AutoHotkey v2.0

; Alt + I for Up Arrow
Alt & i:: {
    Send("{Up}")
}

; Alt + J for Left Arrow
Alt & j:: {
    Send("{Left}")
}

; Alt + K for Down Arrow
Alt & k:: {
    Send("{Down}")
}

; Alt + L for Right Arrow
Alt & l:: {
    Send("{Right}")
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mister.durden