In the editor of the IDE, when I put the cursor somewhere and paste multiple
lines from the clipboard
then only the first line is indented (starts where the cursor is) but all
following lines are not indented
(start from column 0).
For example, if I have this code snippet in the clipboard:
case X of
1 :
else
end; { of case }
and paste it at column 4 then I get
case X of
1:
else
end; { of case }
instead of
case X of
1 :
else
end; { of case }
so I have to indent lines 2-4 manually each time I paste it.
Is that how it should be?
I would like to have the whole block indented in the same way as the first
column.
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus-ide.org/listinfo/lazarus