Variable: global-semantic-decoration-mode
global-semantic-decoration-mode is a customizable variable defined in
mode.el.gz.
Value
nil
Documentation
Non-nil if Global Semantic-Decoration mode is enabled.
See the global-semantic-decoration-mode(var)/global-semantic-decoration-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function global-semantic-decoration-mode(var)/global-semantic-decoration-mode(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
;;; DECORATION MODE
;;
;; Generic mode for handling basic highlighting and decorations.
;;
;;;###autoload
(define-minor-mode global-semantic-decoration-mode
"Toggle global use of option `semantic-decoration-mode'.
Decoration mode turns on all active decorations as specified
by `semantic-decoration-styles'."
:global t :group 'semantic :group 'semantic-modes
;; Not needed because it's autoloaded instead.
;; :require 'semantic/decorate/mode
(semantic-toggle-minor-mode-globally
'semantic-decoration-mode (if global-semantic-decoration-mode 1 -1)))