Created
August 15, 2023 22:39
-
-
Save Nullcaller/90d28ace674d4276d6ac7e3ba57713ad to your computer and use it in GitHub Desktop.
An AutoHotkey script that allows for mac-like easy usage of the dash and the paragraph symbols on Windows.
This file contains hidden or 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
!-:: | |
{ | |
Send "—" | |
} | |
!`:: | |
{ | |
Send "§" | |
} | |
!~:: | |
{ | |
Send "§" | |
} | |
!^-:: | |
{ | |
Send "–" | |
} | |
!^`:: | |
{ | |
Send "¶" | |
} | |
!^~:: | |
{ | |
Send "¶" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment