2

I recently switched back to Windows from macOS and my portable keyboard does not have a home or end key. I am wondering if there is a way to remap the Windows + Left Arrow to be Home key and Windows + Right Arrow to be the End key?

1 Answers1

4

Sure, you can use one of many 3d party utilities to remap keys. See e.g. How can I remap a keyboard key?
My favorite is Autohotkey because it is like a real programming language, it is very popular and has good support.
Here is how you remap win + arrow keys. # stands for the win key.

#left::
    send {home}
return

#right::
    send {end}
return
Mikhail V
  • 1,041