Change CTRL-X, -C, and -V hotkeys in Windows to different keys

10

5

I use my mouse left-handed, which makes the default Cut/Copy/Paste hotkeys in Windows really akward to use. Is there any way I can change these - say to something like Control-m, comma, and period? That way, I could mouse with my left hand and use my right for the hotkey functions.

SqlRyan

Posted 2010-07-21T21:44:07.473

Reputation: 1 021

Answers

7

You can use AutoHotkey to assign the same function to another combo. The benefit is that the old ones will still work as well so if someone else uses your machine it wont throw them off:

^m::^x
^,::^c
^.::^v

John T

Posted 2010-07-21T21:44:07.473

Reputation: 149 037

I spent some time for how to do this, so I'll add it here hoping it helps someone... I also remapped the Windows Key + R and used the following:

#r::run, explorer.exe Shell:::{2559a1f3-21d7-11d4-bdaf-00c04f60b9f0} – kroolk – 2015-05-15T20:58:39.763

for those who also don't know what AutoHotkey is: It is a 3rd party application and its homepage is: https://autohotkey.com/

– schlingel – 2018-10-02T08:59:54.487

7

You might be interested to learn that there are alternative hotkeys available:

  • Copy: Ctrl+Ins
  • Cut: Shift+Del
  • Paste: Shift+Ins

These hotkeys seem to have been derived from the IBM CUA. However, I don't know if they were specifically chosen for left-handed users.

Der Hochstapler

Posted 2010-07-21T21:44:07.473

Reputation: 77 228

And for the equiv of Ctrl+A you have Shift+PgDown though you'll have to hold it. – Evan Carroll – 2012-05-24T19:56:51.627

Hmm - those hotkeys seem to work (I had no idea), though they're not really what I'm after, as they're awkward to reach with my right hand. Good to know, though! – SqlRyan – 2012-10-24T22:28:46.610