<http://forum.pspad.com/read.php?f=2&i=11336&t=11318> 
----------------------------------------------------------------

RE: Indent / UnIndent?  --- Not Exactly.

Something from CodeWright Editor which was helpful for aligning parameters
of a function call for example:

Before...

exec sp_mySP @p1 = '1', @p2 = '2', @p3 = '3'
exec sp_mySP @p1 = '44', @p2 = '55', @p3 = '66'
exec sp_mySP @p1 = '777', @p2 = '888', @p3 = '999'

After said column alignment feature (based on white space)...

exec sp_mySP @p1 = '1',      @p2 = '2',      @p3 = '3'
exec sp_mySP @p1 = '44',    @p2 = '55',    @p3 = '66'
exec sp_mySP @p1 = '777',  @p2 = '888',  @p3 = '999'

-- notice all the text is aligned and it makes it easier to read

-- 
PSPad freeware editor http://www.pspad.com

Reply via email to