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または、変数にセッターが定義されていないため、単に使用できます。

(setq cperl-indent-parens-as-block t)
于 2013-03-09T11:51:55.800 に答える