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

37,661

Solution 1

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

Solution 2

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.

Share:
37,661
SqlRyan
Author by

SqlRyan

My name is Ryan McCauley, and I'm a database/reporting manager for a mid-size cable company. I spent a number of years as a .NET developer (mostly of the VB.NET variety), but now largely focus on T-SQL and the reporting with the Microsoft BI stack. On my own time, I build small apps to help get things done a little better, and have a couple posted at Codeplex: SQL Space Map - if you have some large SQL Server databases and you'd like a visual picture of which tables and indexes are taking up that space, it's the tool for you. SQL Server Contention Monitor - watches as may SQL Servers as you want and alerts you to blocked SPIDs, showing you the block tree (which process is blocking which, an what others are affected). It's still in a pretty alpha-ish phase, but it despite some instability at times, it gets the job done. Check them out and let me know what feedback you have!

Updated on September 17, 2022

Comments

  • SqlRyan
    SqlRyan over 1 year

    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.

  • Evan Carroll
    Evan Carroll almost 12 years
    And for the equiv of Ctrl+A you have Shift+PgDown though you'll have to hold it.
  • SqlRyan
    SqlRyan over 11 years
    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!
  • virtualadrian
    virtualadrian about 9 years
    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}
  • schlingel
    schlingel over 5 years
    for those who also don't know what AutoHotkey is: It is a 3rd party application and its homepage is: autohotkey.com