Created
March 1, 2020 20:45
-
-
Save tenomoto/d332aabc389875aabe2e932b0aa50eb7 to your computer and use it in GitHub Desktop.
Autohotkey script to send _ withouth shift and en/em dash with alt/alt+shift+-
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
SC073::_ | |
; en-dash and em-dash | |
; https://my.wealthyaffiliate.com/pamdemonium/blog/how-to-create-em-dash-shortcut-using-autohotkey-on-windows | |
; conflicts with sending <- with alt+- in RStudio | |
!-::Send {U+2013} | |
+!-::Send {U+2014} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment