Variable: pascal-auto-lineup

pascal-auto-lineup is a customizable variable defined in pascal.el.gz.

Value

(all)

Documentation

List of contexts where auto lineup of :'s or ='s should be done.

Elements can be of type: paramlist, declaration or case, which will do auto lineup in parameterlist, declarations or case-statements respectively. The word all will do all lineups. (case paramlist) for instance will do lineup in case-statements and parameterlist, while (all) will do all lineups.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/pascal.el.gz
(defcustom pascal-auto-lineup '(all)
  "List of contexts where auto lineup of :'s or ='s should be done.
Elements can be of type: `paramlist', `declaration' or `case', which will
do auto lineup in parameterlist, declarations or case-statements
respectively.  The word `all' will do all lineups.  (case paramlist) for
instance will do lineup in case-statements and parameterlist, while (all)
will do all lineups."
  :type '(set :extra-offset 8
	      (const :tag "Everything" all)
	      (const :tag "Parameter lists" paramlist)
	      (const :tag "Declarations" declaration)
              (const :tag "Case statements" case)))