Variable: cperl-file-style

cperl-file-style is a customizable variable defined in cperl-mode.el.gz.

Value

nil

Documentation

Indentation style to use in cperl-mode.

Setting this option will override options as given in cperl-style-alist for the keyword provided here. If nil, then the individual options as customized are used.
"PBP" is the style recommended in the Book "Perl Best
Practices" by Damian Conway. "CPerl" is the traditional style of cperl-mode, and "PerlStyle" follows the Perl documentation in perlstyle. The other styles have been developed for other programming languages, mostly C.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-file-style nil
  "Indentation style to use in `cperl-mode'.
Setting this option will override options as given in
`cperl-style-alist' for the keyword provided here.  If nil, then
the individual options as customized are used.
\"PBP\" is the style recommended in the Book \"Perl Best
Practices\" by Damian Conway.  \"CPerl\" is the traditional style
of `cperl-mode', and \"PerlStyle\" follows the Perl documentation
in perlstyle.  The other styles have been developed for other
programming languages, mostly C."
  :type '(choice (const "PBP")
                 (const "CPerl")
                 (const "PerlStyle")
                 (const "GNU")
                 (const "C++")
                 (const "K&R")
                 (const "BSD")
                 (const "Whitesmith")
                 (const :tag "Default" nil))
  :group 'cperl-indentation-details
  :version "29.1")