6

如何在 Emacs 中设置 cperl 模式,以便括号后的缩进,例如

has 'name'    => (
                  is       => 'rw',
                  isa      => 'Str',
                  required => 1,
              );

(默认缩进)变得更像在例如Moose 手册中看到的那样,例如

has 'password' => (
    is  => 'rw',
    isa => 'Str',
);

?

4

1 回答 1

7

我在 Emacs Wiki上找到了答案。将以下内容添加到 .emacs:

(custom-set-variables
     '(cperl-indent-parens-as-block t))
于 2010-07-01T06:53:59.090 回答