Created
December 17, 2015 20:44
-
-
Save jogleasonjr/2dc77173405562267ba0 to your computer and use it in GitHub Desktop.
Autohotkey script to map the numpad operator keys to markdown hints
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
; Surround current word in BOLD e.g. this is **bold** | |
NumpadMult::Send ^{Left}**^{Right}** | |
; Surround current word in ITALIC e.g. this is *italic* | |
NumpadDiv::Send ^{Left}*^{Right}* | |
; Surround current word in CODE e.g. this is some `code` | |
NumpadSub::Send ^{Left}{SC029}^{Right}{SC029} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment