<http://forum.pspad.com/read.php?f=2&i=11706&t=11706>
----------------------------------------------------------------
When a column selection is pasted, each line of the column is pasted
starting at the same column position of the current cursor position.
The problem with that is that the column position is calculated as the
amount of characters from the beginig of a line. That is wrong because tab
character are broader than a normal character.
Consider the following block of text:
for(int i=0 ; i<n ; ++i)
{ var =//I want to paste green text here (8th column)
variable =
}
"hello" ;
"bye" ;
The expected result after pasting the green text (a column of text) will
be:
for(int i=0 ; i<n ; ++i)
{ var ="hello" ;
variable ="bye" ;
}
But that's not what happens in PSPad because the 8th column in the line
below is not after the equal sign.
Please fix that.
Thanks.
--
PSPad freeware editor http://www.pspad.com