Last active
January 10, 2017 03:02
-
-
Save phizaz/031e6620568b3aa0fc8ae801711cc0b6 to your computer and use it in GitHub Desktop.
AutoHotkey Mapping for Former Mac Users on Windows
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
; Tab Switching | |
+![:: | |
Send, ^+{TAB} | |
return | |
+!]:: | |
Send, ^{TAB} | |
return | |
; language switching | |
!space:: | |
Send, #{space} | |
return | |
; cursor control | |
!Left:: | |
Send, {Home} | |
return | |
!Right:: | |
Send, {End} | |
return | |
!Up:: | |
Send, {PgUp} | |
return | |
!Down:: | |
Send, {PgDn} | |
return | |
; copy, paste, select all, cut | |
!c:: | |
Send, ^c | |
return | |
!v:: | |
Send, ^v | |
return | |
!a:: | |
Send, ^a | |
return | |
!x:: | |
Send, ^x | |
return | |
; unde, redo | |
!z:: | |
Send, ^z | |
return | |
!+z:: | |
Send, ^y | |
return | |
; new, new tabe, close | |
!n:: | |
Send, ^n | |
return | |
!t:: | |
Send, ^t | |
return | |
!w:: | |
Send, ^w | |
return | |
; find | |
!f:: | |
Send, ^f | |
return | |
; reload | |
!r:: | |
Send, ^r | |
return | |
; save | |
!s:: | |
Send, ^s | |
return | |
!+s:: | |
Send, ^+s | |
return | |
; zoom in-out | |
!=:: | |
Send, ^= | |
return | |
!-:: | |
Send, ^- | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment