Maybe a strange question, but is there a way to do a copy while paste? eg.
you have a mapper where you want to switch mapping direction:
object1.MyProperty = object2.HisProperty;
to
object2.HisProperty = object1.MyProperty;
I know you can to this with som regex gymnastics in an external editor, but if you do this with regular copy paste it will look like this after the first cut-paste:
object2.HisPropertyobject1.MyProperty = ;
And then you have to select the object1.MyProperty and cut-paste it over to the right side.
What I would like is a function that copy/cuts the text I'm replacing during paste.
Cheers!