3

Being left-handed, I use the mouse in my left hand. In most applications I use Ctrl + Insert or Shift + Insert to copy and paste (with my right hand).

For some bone-headed reason, this is not supported in Photoshop, so I have to use right-click > Copy sub-menus, which is a lot slower.

Is there a way to configure Photoshop to use Ctrl + Insert to copy and Shift + Insert to paste?

EDIT: I tried editing keyboard shortcuts, but it will not accept CTRL + INSERT as a valid entry.

Is there no valid option for left-handed users?

alt text

2
  • 2
    what operating system?
    – JT.WK
    Commented Mar 17, 2010 at 23:04
  • 2
    actually, by his shortcuts, it is probably Windows.
    – studiohack
    Commented Mar 18, 2010 at 3:15

2 Answers 2

2
+100

The free utility AutoHotKey can remap keyboard input to achieve the effect you are looking for:

Ctrl+Insert to Ctrl+C (copy) and Shift+Insert to Ctrl+V (paste).

Note this does not affect the CTRL+C/CTRL+V shortcuts; you can continue to use them. Here is the script that does it:

^Insert::^c
+Insert::^v

Just install AHK and copy the script above into the notepad window that opens at the end of installation. This is the default AHK script that runs when AHK is started. Restart AHK to ensure the modified script is active.

  • This remapping will be globally effective for all applications. This is probably a benefit for you, since you don't have to configure each application separately. However, it is possible to modify the script to limit it to only certain applications.
  • AHK can actually intercept any keypress combination and send any keypress combination, as well as many more things.
1
3

If you go to the "Edit" menu, and choose "Keyboard shortcuts", you'll be able to edit the shortcuts by making your own set.

1
  • One would expect this to be a valid solution, but there seems to be a special place in Photoshop hell for left-handed people. See my edits. Commented Mar 18, 2010 at 15:12

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .