Skip to content

Instantly share code, notes, and snippets.

@nachodd
Last active May 21, 2021 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nachodd/510f134c363b602d3ce3a5a33f3aeb42 to your computer and use it in GitHub Desktop.
Save nachodd/510f134c363b602d3ce3a5a33f3aeb42 to your computer and use it in GitHub Desktop.
; 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