Last active
February 23, 2017 05:12
-
-
Save visualskyrim/585512cc8f47ac6cbf135c73ce20d3b9 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
$+h:: | |
GetKeyState, state, s, P ; D if CapsLock is ON or U otherwise. | |
if state = D | |
{ | |
if isCancelled != 1 | |
{ | |
isCancelled = 1 | |
Send {Shift down}{Left}{Shift up} | |
} else { | |
Send {Shift down}{Left} | |
} | |
} | |
else | |
{ | |
if isCancelled = 1 | |
{ | |
Send {Shift up} | |
} else { | |
Send {Shift down}{h}{Shift up} | |
} | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment