Is there a way to create a keyboard shortcut that would copy whatever you had highlighted and pasted over?
Rather than having to copy and paste something elsewhere, to then recopy it is pretty annoying, plus if possible it could be extremely useful to a lot of people?
EDIT:
Okay, let's see if I can better explain myself:
In coding, say you're trying to move a random key from one variable to another, and the place you're pasting it to already has a value you also want to keep.
$var_1 = roghiu2g3iugdfgiu2h3i4uh;
$var_2 = sdoihsoidfjsgoij;
As of now, I would have to copy one of these, place it elsewhere,
$var_1 = roghiu2g3iugdfgiu2h3i4uh;
$var_2 = sdoihsoidfjsgoij;
sdoihsoidfjsgoij
Then paste the other one over this:
$var_1 = roghiu2g3iugdfgiu2h3i4uh;
$var_2 = roghiu2g3iugdfgiu2h3i4uh;
sdoihsoidfjsgoij
And then finally cut/copy and delete the original, and put it in the new location:
$var_1 = sdoihsoidfjsgoij;
$var_2 = roghiu2g3iugdfgiu2h3i4uh;
So I'm trying to see if this is possible, and although I'm on Mac I'm sure this would be handy for all OS.