Cómo usar Acentos y Ñ en teclado inglés con AutoHotkey
Eduardo Aranda Hernández
Posted on October 24, 2022
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
💖 💪 🙅 🚩
Eduardo Aranda Hernández
Posted on October 24, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024