Skip to content

Instantly share code, notes, and snippets.

@Radiokot
Created December 30, 2021 11:01
Show Gist options
  • Save Radiokot/427e0e8aa246f4270876493fa6a9fab6 to your computer and use it in GitHub Desktop.
Save Radiokot/427e0e8aa246f4270876493fa6a9fab6 to your computer and use it in GitHub Desktop.
Mac-like en and em dashes for Windows (AutoHotKey)
; 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