Skip to content

Instantly share code, notes, and snippets.

@karenepitaya
karenepitaya / CapsLockCtrlEscape.ahk
Last active June 26, 2026 13:59 — forked from sedm0784/CapsLockCtrlEscape.ahk
AutoHotkey2 script to map Caps Lock to Escape when it's pressed on its own and Ctrl when used in combination with another key, à la Steve Losh. Adapted from one that does something similar with the Ctrl Key on the Vim Tips Wiki (http://vim.wikia.com/wiki/Map_caps_lock_to_escape_in_Windows?oldid=32281). (Plus contribs from @randy909 & @mmikeww.)
#Requires AutoHotkey v2.0
#SingleInstance Force
SetCapsLockState "AlwaysOff"
g_LastCtrlKeyDownTime := 0
g_AbortSendEsc := false
g_ControlRepeatDetected := false
*CapsLock:: {