var
iCount : Integer;
Commands : TDatabaseCommands;
iLcv,iWhatEver : Integer;
When I declare variables I tend declare them one per line but not always.
I also place my ":" at column 34.
When I cut/paste variables and they move from one level to another
inside a method I find the smart feature starts them off properly but
does not adjust the left side. To be REALLY smart and for
declarations only, it would cool if the editor could remove some white
space (if possible) between the end of the last declared variable and
the colon.
procedure Test;
var
iInt1,iInt2 : Integer;
Test2 : string;
procedure SubTest1;
var
iInt1,iInt2 : Integer;
Test2 : string;
begin
end;
begin
end;
Notice that when I take declarations from one spot I want the colons
to be in alignment. If I could get that when I copy/cut paste I would
be totally impressed :-)
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus