Created
October 27, 2019 08:15
-
-
Save agross/6c346c28cf512c6f0ff73b1999808a45 to your computer and use it in GitHub Desktop.
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
; Make script persistent. | |
#Persistent | |
; Recommended for performance and compatibility with future AutoHotkey releases. | |
#NoEnv | |
; Recommended for new scripts due to its superior speed and reliability. | |
SendMode Input | |
#SingleInstance force | |
Menu Tray, Tip, Snippets | |
; https://autohotkey.com/docs/Hotstrings.htm | |
; * = end character is not required for the hotstring | |
; c = case-sensitive | |
; r = send the replacement text raw | |
; o = omit the ending character of auto-replace hotstrings when | |
; the replacement is produced | |
; ? = the hotstring can be part of another word | |
; `t = tab press is now part of the hotstring | |
; aa<Tab> -> ä | |
; AA<Tab> -> Ä | |
:*co?:"a`t::ä | |
:*co?:aa`t::ä | |
:*co?:"o`t::ö | |
:*co?:oo`t::ö | |
:*co?:"u`t::ü | |
:*co?:uu`t::ü | |
:*co?:"A`t::Ä | |
:*co?:AA`t::Ä | |
:*co?:"O`t::Ö | |
:*co?:OO`t::Ö | |
:*co?:"U`t::Ü | |
:*co?:UU`t::Ü | |
:*co?:"s`t::ß | |
:*co?:sss`t::ß | |
:*ro?:eur`t::€ | |
:*ro?:EUR`t::€ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment