Variable: global-semantic-highlight-edits-mode
global-semantic-highlight-edits-mode is a customizable variable
defined in util-modes.el.gz.
Value
nil
Documentation
Non-nil if Global Semantic-Highlight-Edits mode is enabled.
See the global-semantic-highlight-edits-mode(var)/global-semantic-highlight-edits-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-highlight-edits-mode(var)/global-semantic-highlight-edits-mode(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
;;;;
;;;; Minor mode to highlight areas that a user edits.
;;;;
;;;###autoload
(define-minor-mode global-semantic-highlight-edits-mode
"Toggle global use of option `semantic-highlight-edits-mode'."
:global t :group 'semantic :group 'semantic-modes
(semantic-toggle-minor-mode-globally
'semantic-highlight-edits-mode
(if global-semantic-highlight-edits-mode 1 -1)))