Variable: global-semantic-highlight-func-mode

global-semantic-highlight-func-mode is a customizable variable defined in util-modes.el.gz.

Value

nil

Documentation

Non-nil if Global Semantic-Highlight-Func mode is enabled.

See the global-semantic-highlight-func-mode(var)/global-semantic-highlight-func-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-func-mode(var)/global-semantic-highlight-func-mode(fun).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
;;;;
;;;; Minor mode to make highlight the current function
;;;;

;; Highlight the first like of the function we are in if it is different
;; from the tag going off the top of the screen.

;;;###autoload
(define-minor-mode global-semantic-highlight-func-mode
  "Toggle global use of option `semantic-highlight-func-mode'."
  :global t :group 'semantic :group 'semantic-modes
  ;; Not needed because it's autoloaded instead.
  ;; :require 'semantic/util-modes
  (semantic-toggle-minor-mode-globally
   'semantic-highlight-func-mode
   (if global-semantic-highlight-func-mode 1 -1)))