diff --git a/piusareLite.ahk b/piusareLite.ahk index b277468..47f9c07 100644 --- a/piusareLite.ahk +++ b/piusareLite.ahk @@ -15,9 +15,13 @@ LShift & RShift::CapsLock !o::ó !u::ú !n::Send, {U+00F1} +!/::Send, {U+00FC} !+a::Á !+e::É !+i::Í !+o::Ó !+u::Ú !+n::Send, {U+00D1} +!+/::Send, {U+00DC} + +;;Where :C?*:U"X:: contains the hotstring trigger, this case being typing U " X all together. Autohotkey gives us some control over how to interpret the hotstring, in this case by inserting C?* we are telling AHK to be case sensitie (C), to trigger even as part of a word (?) and to trigger without an ending character such as space or newline(*). \ No newline at end of file