code duplicated when using beautifier after vertical highlight/delete

jking

Member²
If I have the following code:

Code:
1  begin
2    null;
3  end;

And I remove the first column with the 1,2,3 values by doing a "vertical" highlight and delete:
* hold down ALT key and highlight the column containing 1,2,3
* press "Delete" to remove that column.

If I then do a "Beautifier" (to remove leading spaces), it duplicates the the existing code as shown below

Code:
begin
  null;
end;
  begin
    null;
  end;

ver 10.0.2.1697

Thanks.
 
Back
Top