By default, PerlTidy will line up assignments in my code. E.g.

PerlTidy changes this...

my $red = 1;
my $green = 2;
my $yellow = 3;
my $cyan = 4;

...into this...

my $red    = 1;
my $green  = 2;
my $yellow = 3;
my $cyan   = 4;

How do I prevent this from happening? I've trawled the manual but I can't find a solution.

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 6 down vote accepted

See the discussion of the -aws option (--add-whitespace). By default -aws is enabled. You can alter this behavior using -naws (deleting whitespace is OK, but don't add) or -fws (don't add or delete whitespace). Details here.

link|improve this answer
Thanks FM. -naws does roughly what I want. It won't un-align assignments that are already aligned, but such is life :) – nick Jun 18 '10 at 8:36
Is it possible to keep addition of single spaces? I have just asked such a question here: stackoverflow.com/questions/4538209/… – agsamek Dec 27 '10 at 11:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.