Been meaning to ask this for some time now, not sure how possible it is.  In
a language I use, I end up in two particular cases where I spend a lot of
time massaging my code:

SELECT foo, bar, cat, dog....

Then I get my results

foo = anItem '1;
bar = anItem '2;
cat = anItem '3;
dog = anItem '4;

Now, if I add another field to my select, my number order is off, so say I
add in "rat" after "bar", I need to adjust my numbers accordingly:

foo = anItem '1;
bar = anItem '2;
rat = anItem '2;
cat = anItem '3;
gog = anItem '4;

Is there some way to resequence my numbers, always in order?

*Yes, I know, it would be nice if my language returned named variables, but
it does not

Second issue, is that in most cases, my variable names are not always the
same length, but I like to line them up on the "=" sign:

Test     = "test";
Thistest = "test";

Is there any way to automatically do this as well?
-- 
-------------------------------------------------------------
Scott Haneda                                Tel: 415.898.2602
<http://www.newgeo.com>                     Novato, CA U.S.A.



-- 
------------------------------------------------------------------
Have a feature request? Not sure the software's working correctly?
If so, please send mail to <[EMAIL PROTECTED]>, not to the list.
List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml>
List archives: <http://www.listsearch.com/BBEditTalk.lasso>
To unsubscribe, send mail to:  <[EMAIL PROTECTED]>

Reply via email to