Variable: cperl-indent-parens-as-block

cperl-indent-parens-as-block is a customizable variable defined in cperl-mode.el.gz.

Value

nil

Documentation

Non-nil means that non-block ()-, {}- and []-groups are indented as blocks.

However, trailing "," inside the group, won't increase indentation. One should tune up cperl-close-paren-offset as well.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-indent-parens-as-block nil
  "Non-nil means that non-block ()-, {}- and []-groups are indented as blocks.
However, trailing \",\" inside the group, won't increase indentation.
One should tune up `cperl-close-paren-offset' as well."
  :type 'boolean
  :group 'cperl-indentation-details)