16

The Home,End keys are at the top row in my laptop, and I use them most while selecting the entire line by pressing (Shift+Home, Shift+End) - it is very inconvenient. On the other hand, "PageUp, PageDown" keys are just below the Shift Key, and I don't use them at all.

Can I interchange my "PageUp" key with "Home" key and "PageDown" key with "End" key?

Is this possible using some software?

iglvzx
  • 23,818
teenup
  • 670

6 Answers6

17

Since you are on Windows, I recommend AutoHotkey.

Once installed you can remap Home to PageUp, End to PageDown, and vice versa, with a simple AutoHotKey script.

Just create a text file called remapKeys.ahk and execute (double click) it:

Home::PgUp
End::PgDn
PgUp::Home
PgDn::End

Documentation:

iglvzx
  • 23,818
2

Yes, it can be done easily, use the "Windows Power Toys". One simple solution for advanced windows users.

Step 1:- Install The Power Toys from the like given below.

Step 2:- Use the Key remap shortcuts for the mapping.

Step 3:- Use the + Button and remap the keys you want, restart your PC and you are done!

Download Link:- This is the Link

Hyzenberg
  • 21
  • 2
1

Building on iglvzx's answer about AutoHotKey, another option is to set up the arrow keys to act as PageUp, PageDown, Home, and End when the right shift keys is being pressed:

+Up::send {RShift Up}{PgUp}
+Down::send {RShift Up}{PgDn}
+Left::send {RShift Up}{Home}
+Right::send {RShift Up}{End}

(From http://forum.notebookreview.com/threads/one-handed-page-up-page-down-on-a-laptop-with-no-dedicated-keys.760843/)

1

SharpKeys is a powerful tool that will automatically edit your registry to rebind keys. It won't need to run in the background like Auto Hot Key does.

ebabaj
  • 11
0

On windows, instead of third party tools, can consider the keyboard manager power toy: https://learn.microsoft.com/en-us/windows/powertoys/keyboard-manager

Similar configuration as the AutoHotKey answer by @iglvzx (you configure using GUI instaed of a config file).

0

Key Tweak is a powerful tool that will automatically edit your registry to rebind keys. It won't need to run in the background like Auto Hot Key does.

mackenir
  • 595
max
  • 1