Created
October 2, 2014 19:26
-
-
Save mmatrosov/562ff109b500376919c0 to your computer and use it in GitHub Desktop.
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
; Remaps are suspended by default | |
Suspend On | |
; Press CapsLock to toggle remaps | |
~CapsLock:: | |
Suspend ; Mark this handler as not suspending | |
GetKeyState, state, CapsLock, T | |
if state = D | |
Suspend, Off | |
else | |
Suspend, On | |
return | |
; Remaps | |
i::Up | |
j::Left | |
k::Down | |
l::Right | |
o::PgUp | |
.::PgDn | |
m::Home | |
,::End | |
u::Del | |
p::Ins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment