Last active
January 31, 2025 12:02
-
-
Save cnorthwood/9edc37206d21b681dc1f32e264445f7e to your computer and use it in GitHub Desktop.
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
; -------------------------------------------------------------- | |
; 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