Last active
August 29, 2015 14:19
-
-
Save danielthiel/a4162a7d41fc4c23734d to your computer and use it in GitHub Desktop.
Remap Capslock to special characters via AutoHotkey (umlauts)
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
; Remap Umlaute | |
; http://www.autohotkey.com/ | |
; 2015-04-21 | |
SetCapsLockState AlwaysOff | |
Capslock::RAlt | |
>!+a:: | |
Send, Ä | |
Return | |
>!+u:: | |
Send, Ü | |
Return | |
>!+o:: | |
Send, Ö | |
Return | |
>!a:: | |
Send, ä | |
Return | |
>!u:: | |
Send, ü | |
Return | |
>!o:: | |
Send, ö | |
Return | |
>!s:: | |
Send, ß | |
Return | |
>!e:: | |
Send, € | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment