dataduke
1/15/2016 - 9:28 AM

AutoHotkey script to type umlaute with other keyboards

AutoHotkey script to type umlaute with other keyboards

#a::
!a::
    Send, ä
Return
!+a::
    Send, Ä
Return
#o::
!o::
    Send, ö
Return
!+o::
    Send, Ö
Return
#u::
!u::
    Send, ü
Return
!+u::
    Send, Ü
Return
#s::
!s::  
    Send, ß
Return