At present, perl-mode aligns non-block closing brackets with the contents of the brackets, thus:

my @list = (
    'item one',
    'item two',
    'item three',
    );

Now, cperl-mode features on option, cperl-indent-parens-as-block, that causes the closing bracket to be aligned with the line of the opening bracket, as follows:

my @list = (
    'item one',
    'item two',
    'item three',
);

I personally find the latter behaviour easier to follow, and would like perl-mode to be able to do the same thing.

A patch is on the way...

--
Peter Oliver