Skip to content

Instantly share code, notes, and snippets.

@dataduke
Last active January 15, 2016 09:30
Show Gist options
  • Save dataduke/b48e0d0146ef7f639afd to your computer and use it in GitHub Desktop.
Save dataduke/b48e0d0146ef7f639afd to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment