Skip to content

Instantly share code, notes, and snippets.

@tumtumtum
Created February 3, 2015 01:35
Show Gist options
  • Save tumtumtum/01cc79996036fd4d100d to your computer and use it in GitHub Desktop.
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
; 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