in reply to Re: Your Favorite Options for Perltidy
in thread Your Favorite Options for Perltidy

Thanks so much. But when does .perltidyrc get executed?

Replies are listed 'Best First'.
Re^3: Your Favorite Options for Perltidy
by pboin (Deacon) on Nov 06, 2005 at 11:54 UTC

    Nothing's *automatic* per se. Perltidy is a filter that you run on source. As TheDamian has it setup, it will print to STDOUT, so you can do something like this:

    perltidy sloppy_format.pl > cleaned_up.pl

    .perltidyrc will be automatically called for configuration details. Once you get that figured out, you can even hightlight one block in vim and do "! perltidy" to cleanup just a block within a file.

    Good luck and perservere. Tidy code is a worthwhile endeavor, whether you create it that way or beat it into submission with a tool.