Going further with this, I wish languages would be more copy/paste friendly. For example, in JavaScript I'll sometimes change code along the lines of
a.x = 1;
a.y = 2;
to a = {
x: 1,
y: 2
};"
If you eliminate the commas, semicolons and changed the colons/equals to the same thing, you could copy/paste it with much less hassle.