Skip to content

Instantly share code, notes, and snippets.

@Rccustevens
Rccustevens / CapsLockCtrlEscape.ahk
Last active January 29, 2023 13:36 — forked from sedm0784/CapsLockCtrlEscape.ahk
AutoHotkey script to map CapsLock to Escape when it's pressed on its own and Ctrl when used in combination with another key. Add a rule that maps LCtrl to CapsLock.
g_LastCtrlKeyDownTime := 0
g_AbortSendEsc := false
g_ControlRepeatDetected := false
*CapsLock::
if (g_ControlRepeatDetected)
{
return
}