Thomas Michael Engelke wrote:
Sometimes, I have to align statements in a large "assign"-statement
like this:
assign
var1 =
var2 =
.
I block-yank a block containing, left-upper, v of var1, right-lower 2
of var2, to insert both variable names after the equal-signs. So my
cursor stands in the spot behind the equals on the first row. I press
p. This is what I get:
assign
var1 =var1
var2 =var2
.
I think: Oh, it gets pasted from exactly where my cursor is. I must be
standing wrong. I undo the change, go 1 spot to the right and press p
again. I end up with this:
assign
var1 = var1
var2 = var2
.
Could it be you just have a tab there?
Wim