Variable: semantic-decoration-styles

semantic-decoration-styles is a customizable variable defined in mode.el.gz.

Value

(("semantic-decoration-on-includes" . t)
 ("semantic-decoration-on-protected-members")
 ("semantic-decoration-on-private-members")
 ("semantic-tag-boundary" . t))

Documentation

List of active decoration styles.

It is an alist of (NAME . FLAG) elements, where NAME is a style name and FLAG is non-nil if the style is enabled. See also define-semantic-decoration-style which will automatically add items to this list.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
;;; Styles List
;;
(defcustom semantic-decoration-styles nil
  "List of active decoration styles.
It is an alist of \(NAME . FLAG) elements, where NAME is a style name
and FLAG is non-nil if the style is enabled.
See also `define-semantic-decoration-style' which will automatically
add items to this list."
  :group 'semantic
  :type '(repeat (cons (string :tag "Decoration Name")
		       (boolean :tag "Enabled")))
  )