Created
February 3, 2015 01:35
-
-
Save tumtumtum/01cc79996036fd4d100d to your computer and use it in GitHub Desktop.
AutoHotKey script for OSX style cursor navigation and selection on an Apple keyboard
This file contains 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
; AutoHotKey script for OSX style cursor navigation and selection on an Apple keyboard | |
#Left::Send {Home} | |
+#Left::Send +{Home} | |
!Left::Send ^{Left} | |
+!Left::Send +^{Left} | |
#Right::Send {End} | |
+#Right::Send +{End} | |
!Right::Send ^{Right} | |
+!Right::Send +^{Right} | |
#Up::Send ^{Home} | |
+#Up::Send +^{Home} | |
#Down::Send ^{End} | |
+#Down::Send +^{End} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment