Created
June 25, 2021 16:10
-
-
Save williballenthin/e0f3e4d285b07df3b93b63bff88fe1b0 to your computer and use it in GitHub Desktop.
remap CapsLock-H/J/K/L to arrows and similar via AutoHotKey
This file contains hidden or 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
#NoEnv | |
#Warn | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
SetCapsLockState AlwaysOff | |
CapsLock::Send {esc} | |
CapsLock & j::Send {Down} | |
CapsLock & k::Send {Up} | |
CapsLock & h::Send {Left} | |
CapsLock & l::Send {Right} | |
CapsLock & f::Send {PgDn} | |
CapsLock & b::Send {PgUp} | |
CapsLock & 4::Send {End} | |
CapsLock & 6::Send {Home} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment