Extend Windows keyboard layout with typographic quotes, dashes and others
This file contains 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
; 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