Skip to content

Instantly share code, notes, and snippets.

@visualskyrim
Last active February 23, 2017 05:12
Show Gist options
  • Save visualskyrim/585512cc8f47ac6cbf135c73ce20d3b9 to your computer and use it in GitHub Desktop.
Save visualskyrim/585512cc8f47ac6cbf135c73ce20d3b9 to your computer and use it in GitHub Desktop.
$+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