如何在 Emacs 中设置 cperl 模式,以便括号后的缩进,例如
has 'name' => (
is => 'rw',
isa => 'Str',
required => 1,
);
(默认缩进)变得更像在例如Moose 手册中看到的那样,例如
has 'password' => (
is => 'rw',
isa => 'Str',
);
?