| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Perl-Tidy-20260204.tar.gz | 2026-02-03 | 1.2 MB | |
| README.txt | 2026-02-03 | 999 Bytes | |
| Totals: 2 Items | 1.2 MB | 4 | |
## Changes from version 20260109 to version 20260204
- Fix issue git #195, where --want-break-before=s and --want-break-after=s
incorrectly rejected a string 's' with keywords 'and' and 'or'.
- When --delete-side-comments or --delete-block-comments are used to delete
comments, comments of the form '## no critic' are not deleted unless
--ignore-perlcritic-comments, or -ipc, is also set.
- A new parameter --delete-side-comments-exclusion-pattern=s, or -dscxp=s,
is available to prevent the --delete-side-comments parameter from deleting
certain side comments. The string s defines the leading characters of
comments which should not be deleted by -dsc. The manual has details.
One use is to prevent -dsc from deleting closing side comments, which
begin with two hash symbols. The command to do this is
perltidy -dsc -dscxp='\#\#' file.pl
The backslashes are required to get the string past a command line shell.