Skip to content

Instantly share code, notes, and snippets.

@Nullcaller
Created August 15, 2023 22:39
Show Gist options
  • Save Nullcaller/90d28ace674d4276d6ac7e3ba57713ad to your computer and use it in GitHub Desktop.
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.
!-::
{
Send "—"
}
!`::
{
Send "§"
}
!~::
{
Send "§"
}
!^-::
{
Send "–"
}
!^`::
{
Send "¶"
}
!^~::
{
Send "¶"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment