Created
May 28, 2016 19:23
-
-
Save kjlubick/9c486c2583b9436d2ab0cc1f6b29a5f1 to your computer and use it in GitHub Desktop.
Autohotkey script to easily add spanish letters to keyboards w/o numpads
This file contains hidden or 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
#Hotstring EndChars `n `t | |
# Type ' then letter for lower case " then letter for uppercase | |
# The accented letter will appear after you hit tab, return or space. | |
::'a:: | |
Send, {U+00E1} | |
Return | |
::"A:: | |
Send, {U+00C1} | |
Return | |
::'e:: | |
Send, {U+00E9} | |
Return | |
::"E:: | |
Send, {U+00C9} | |
Return | |
::'i:: | |
Send, {U+00ED} | |
Return | |
::"I:: | |
Send, {U+00CD} | |
Return | |
::'o:: | |
Send, {U+00F3} | |
Return | |
::"O:: | |
Send, {U+00D3} | |
Return | |
::'u:: | |
Send, {U+00FA} | |
Return | |
::"U:: | |
Send, {U+00DA} | |
Return | |
::~n:: | |
Send, {U+00F1} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment