DEV Community

Cover image for Cómo usar Acentos y Ñ en teclado inglés con AutoHotkey
Eduardo Aranda Hernández
Eduardo Aranda Hernández

Posted on

Cómo usar Acentos y Ñ en teclado inglés con AutoHotkey

Caracteres en español usando CapsLock
Presionar CapsLock mas la vocal para acentuarla
Para la ñ se puede usar la n o la tecla ; (porque ahí estaba la ñ originalmente)
Para la ¿ usamos CapsLock y la tecla que tiene actualmente el ?

https://gist.github.com/eduardoarandah/512a949e1d6e57d90bd1260ba3bfb062

; mapear la n como ñ
CapsLock & n::
If GetKeyState("Shift", "P")
    Send Ñ
Else
    Send ñ
return 

; mapear la ; como ñ
CapsLock & `;::
If GetKeyState("Shift", "P")
    Send Ñ
Else
    Send ñ
return 

; mapear la ? como ¿
CapsLock & /::¿

; mapear las vocales
CapsLock & a::
If GetKeyState("Shift", "P")
    Send Á
Else
    Send á
return

CapsLock & e::
If GetKeyState("Shift", "P")
    Send É
Else
    Send é
return 

CapsLock & i::
If GetKeyState("Shift", "P")
    Send Í
Else
    Send í
return 

CapsLock & o::
If GetKeyState("Shift", "P")
    Send Ó
Else
    Send ó
return 

CapsLock & u::
If GetKeyState("Shift", "P")
    Send Ú
Else
    Send ú
return 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)