Skip to content

Commit

Permalink
Update comment styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jasontheiler committed Nov 8, 2020
1 parent 0949194 commit 27ddf30
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions german-umlauts-and-symbols.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -37,34 +37,32 @@ updateMenu() {
}
}

; Shortcuts

; Suspend shortcuts (Shift + Alt + Pause)
; [Shift + Alt + Pause] - Suspends shortcuts.
+!Pause::
Suspend, Toggle
updateMenu()
return

; ä (Alt + a)
; [Alt + a] - Sends ä.
!a:: Send, ä

; Ä (Shift + Alt + a)
; [Shift + Alt + a] - Sends Ä.
+!a:: Send, Ä

; ö (Alt + o)
; [Alt + o] - Sends ö.
!o:: Send, ö

; Ö (Shift + Alt + o)
; [Shift + Alt + o] - Sends Ö.
+!o:: Send, Ö

; ü (Alt + u)
; [Alt + u] - Sends ü.
!u:: Send, ü

; Ü (Shift + Alt + u)
; [Shift + Alt + u] - Sends Ü.
+!u:: Send, Ü

; ß (Alt + s)
; [Alt + s] - Sends ß.
!s:: Send, ß

; € (Alt + e)
; [Alt + e] - Sends €.
!e:: Send, €

0 comments on commit 27ddf30

Please sign in to comment.