Skip to content

Instantly share code, notes, and snippets.

@cnorthwood
Last active January 31, 2025 12:02
Show Gist options
  • Save cnorthwood/9edc37206d21b681dc1f32e264445f7e to your computer and use it in GitHub Desktop.
Save cnorthwood/9edc37206d21b681dc1f32e264445f7e to your computer and use it in GitHub Desktop.
; --------------------------------------------------------------
; Use Mac keyboard bindings to navigation text/selections in Windows
; --------------------------------------------------------------
; thanks for https://github.com/thebitstick/AutoHotKey for this starting point
#Left:: Send, {Home}
#Right:: Send, {End}
#Up:: Send, {LCtrl Down}{Home}{LCtrl Up}
#Down:: Send, {LCtrl Down}{End}{LCtrl Up}
#+Left:: Send, {Shift Down}{Home}{Shift Up}
#+Right:: Send, {Shift Down}{End}{Shift Up}
#+Up:: Send, {Ctrl Down}{Shift Down}{Home}{Shift Up}{Ctrl Up}
#+Down:: Send, {Ctrl Down}{Shift Down}{End}{Shift Up}{Ctrl Up}
!Left:: Send, {Ctrl Down}{Left}{Ctrl Up}
!Right:: Send, {Ctrl Down}{Right}{Ctrl Up}
!+Left:: Send, {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
!+Right:: Send, {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment