Skip to content

Instantly share code, notes, and snippets.

@hyvyys
Created November 11, 2020 10:29
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 hyvyys/ed9c494da80468ba9e340d21253fa223 to your computer and use it in GitHub Desktop.
Save hyvyys/ed9c494da80468ba9e340d21253fa223 to your computer and use it in GitHub Desktop.
Extend Windows keyboard layout with typographic quotes, dashes and others
; print endash
!-::
Send {Asc 0150}
return
; print emdash
+!-::
Send {Asc 0151}
return
; print “
!'::
Send {Asc 0147}
return
; print ”
+!'::
Send {Asc 0148}
return
; print „
^+!'::
Send {Asc 0132}
return
; print ‘
!;::
Send {Asc 0145}
return
; print ’
+!;::
Send {Asc 0146}
return
; print ‚
^+!;::
Send {Asc 0130}
return
; print ı
!i::
Send {U+131}
return
; print ȷ
!j::
Send {U+237}
return
; show/hide desktop
F11::
Send #d
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment