8

cperl 模式

以及我在源代码中看到的设置:

(defcustom cperl-indent-parens-as-block nil
  "*Non-nil means that non-block ()-, {}- and []-groups are indented as blocks,
but for trailing \",\" inside the group, which won't increase indentation.
One should tune up `cperl-close-paren-offset' as well."
  :type 'boolean
  :group 'cperl-indentation-details)

我试图使用(custom-set-variable '(cperl-indent-parens-as-block t)),但这不起作用,所以我怎样才能将其更改t为全局设置?

4

2 回答 2

13

该函数被称为...-variables

(custom-set-variables '(cperl-indent-parens-as-block t))

或者您可以只使用setq,因为该变量没有定义 setter:

(setq cperl-indent-parens-as-block t)
于 2013-03-09T11:51:55.800 回答
0

最简单的方法是M-x customize-variable cperl-indent-parens-as-block.

这会向您显示一个包含可能值等的漂亮菜单,然后将这些值添加到您的init.el(或emacs.el)中。

于 2017-09-29T15:06:06.923 回答