-
-
Save danielnunez/e52138a3c5bce3e32b369b02511e8f32 to your computer and use it in GitHub Desktop.
Cómo usar Acentos y Ñ en teclado inglés con AutoHotkey
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
; 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 ? | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
; 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment