Variable: global-semantic-idle-summary-mode-hook
global-semantic-idle-summary-mode-hook is a customizable variable
defined in idle.el.gz.
Value
nil
Documentation
Hook run after entering or leaving global-semantic-idle-summary-mode(var)/global-semantic-idle-summary-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(define-minor-mode global-semantic-idle-summary-mode
"Toggle Global Semantic Idle Summary mode.
When this minor mode is enabled, `semantic-idle-summary-mode' is
turned on in every Semantic-supported buffer."
:global t
:group 'semantic
:group 'semantic-modes
(semantic-toggle-minor-mode-globally
'semantic-idle-summary-mode
(if global-semantic-idle-summary-mode 1 -1)))