Skip to content

Instantly share code, notes, and snippets.

@phizaz
Last active January 10, 2017 03:02
Show Gist options
  • Save phizaz/031e6620568b3aa0fc8ae801711cc0b6 to your computer and use it in GitHub Desktop.
Save phizaz/031e6620568b3aa0fc8ae801711cc0b6 to your computer and use it in GitHub Desktop.
AutoHotkey Mapping for Former Mac Users on Windows
#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