Variable: custom-buffer-style

custom-buffer-style is a customizable variable defined in cus-edit.el.gz.

Value

links

Documentation

Control the presentation style for customization buffers.

The value should be a symbol, one of: brackets: groups nest within each other with big horizontal brackets. links: groups have links to subgroups. tree: display groups as trees.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;; Buffer.

(defcustom custom-buffer-style 'links
  "Control the presentation style for customization buffers.
The value should be a symbol, one of:
`brackets': groups nest within each other with big horizontal brackets.
`links': groups have links to subgroups.
`tree': display groups as trees."
  :type '(radio (const brackets)
		(const links)
                (const tree))
  :group 'custom-buffer)