Skip to content

Instantly share code, notes, and snippets.

View adrianinsaval's full-sized avatar

Adrián Insaurralde Avalos adrianinsaval

View GitHub Profile
@adrianinsaval
adrianinsaval / autohotkeyÇtoÑ.ahk
Created October 28, 2021 19:26
rutina de autohotkey para usar la tecla ç como tecla ñ con mayúsculas consistentes | autohotkey script to use the ç key as a ñ key with consistent uppercase
ç::
CAPS_T := GetKeyState("CapsLock","T")
SHIFT_P := GetKeyState("Shift","P")
if CAPS_T and SHIFT_P
Capital := false
else
if CAPS_T or SHIFT_P
Capital := true
else
Capital := false