Created
March 9, 2019 03:20
-
-
Save elsonwx/d7192ee764b6b4ae8972cd843b514026 to your computer and use it in GitHub Desktop.
autohotkey映射windows快捷键为mac方式
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
; !代表alt +代表shit键 | |
!q:: Send !{f4} | |
!w:: Send ^w | |
!c:: Send ^c | |
!v:: Send ^v | |
!x:: Send ^x | |
!z:: Send ^z | |
!l:: Send ^l | |
!f:: Send ^f | |
!t:: Send ^t | |
!a:: Send ^a | |
!r:: Send ^r | |
;chrome历史纪录映射 | |
!y:: Send ^h | |
!+t:: Send ^+t | |
!+]:: Send ^{Tab} | |
!+[:: Send ^+{Tab} | |
![:: Send !{Left} | |
!]:: Send !{Right} | |
!Left:: Send {Home} | |
!Right:: Send {End} | |
!+Left:: Send +{Home} | |
!+Right:: Send +{End} | |
!1:: Send ^1 | |
!2:: Send ^2 | |
!3:: Send ^3 | |
!4:: Send ^4 | |
;VPN开启关闭 | |
^!v:: Run C:\Users\wangxiang\Desktop\vpn.bat | |
;浏览器操作 | |
!LButton:: Send ^{LButton} | |
!+LButton:: Send ^+{LButton} | |
!Up:: Send {Home} | |
!Down:: Send {End} | |
#Up:: Send {PgUp} | |
#Down:: Send {PgDn} | |
!+=:: Send ^+= | |
!+-:: Send ^+- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment