Skip to content

Instantly share code, notes, and snippets.

@agross
Created October 27, 2019 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agross/6c346c28cf512c6f0ff73b1999808a45 to your computer and use it in GitHub Desktop.
Save agross/6c346c28cf512c6f0ff73b1999808a45 to your computer and use it in GitHub Desktop.
; 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