Created
December 30, 2021 11:01
-
-
Save Radiokot/427e0e8aa246f4270876493fa6a9fab6 to your computer and use it in GitHub Desktop.
Mac-like en and em dashes for Windows (AutoHotKey)
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
; Alt + minus = En dash | |
!-:: | |
Send {U+2013} | |
return | |
; Alt + Shift + minus = Em dash | |
+!-:: | |
Send {U+2014} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment