üwungüento

This commit is contained in:
Hane 2023-01-31 19:39:12 +01:00
commit 8b163b27cd

View file

@ -15,9 +15,13 @@ LShift & RShift::CapsLock
!o::ó !o::ó
!u::ú !u::ú
!n::Send, {U+00F1} !n::Send, {U+00F1}
!/::Send, {U+00FC}
!+a::Á !+a::Á
!+e::É !+e::É
!+i::Í !+i::Í
!+o::Ó !+o::Ó
!+u::Ú !+u::Ú
!+n::Send, {U+00D1} !+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(*).