Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
If I have code like this:
#!/usr/bin/perl
my %hash = (
some_long_key => {
INCLUDE_PATH => __PACKAGE__->path_to('www/templates/tt')
}
);
I'd love it if perltidy stopped turning it into this:
#!/usr/bin/perl
my %hash = ( some_long_key =>
{ INCLUDE_PATH => __PACKAGE__->path_to('www/templates/tt') } );
I can tell perltidy to keep my whitespace, but I'd like to have it be smart about about formatting this in the first place. I've tried various switch combinations but can't quite seem to get this to work. Suggestions?
Tidy options (Score:1)
Re:Tidy options (Score:1)