Last active
January 11, 2022 20:12
-
-
Save Jackarain/5063e1d29123a8e92a6f8348e932307c to your computer and use it in GitHub Desktop.
Command autohotkey 键映射
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
#c:: | |
Send,^{c} | |
Return | |
#v:: | |
Send,^{v} | |
Return | |
#s:: | |
Send,^{s} | |
Return | |
#w:: | |
Send,^{w} | |
Return | |
#z:: | |
Send,^{z} | |
Return | |
#n:: | |
Send,^{n} | |
Return | |
#f:: | |
Send,^{f} | |
Return | |
#x:: | |
Send,^{x} | |
Return | |
#a:: | |
Send,^{a} | |
Return | |
#d:: | |
Send,^{d} | |
Return | |
<#Tab::AltTab | |
<#`::ShiftAltTab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment