Last active
May 21, 2021 15:50
-
-
Save nachodd/510f134c363b602d3ce3a5a33f3aeb42 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
; Replaces Win + Left = home | |
#left:: | |
send {home} | |
return | |
; Replaces Win + Right = end | |
#right:: | |
send {end} | |
return | |
; Replaces Win + Shift + Left = shift + home (select text to start) | |
#+left:: | |
send +{home} | |
return | |
; Replaces Win + Shift + Right = shift + end (select text to end) | |
#+right:: | |
send +{end} | |
return | |
; for keychron k3, I usually press accidentaly yhe PrintScreen button while trying to do backspace. So remap this. | |
PrintScreen:: | |
send {delete} | |
return | |
+PrintScreen:: | |
^PrintScreen:: | |
send {PrintScreen} | |
return | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment