Variable: semantic-idle-summary-mode
semantic-idle-summary-mode is a buffer-local variable defined in
idle.el.gz.
Documentation
Non-nil if Semantic-Idle-Summary mode is enabled.
Use the command semantic-idle-summary-mode(var)/semantic-idle-summary-mode(fun) to change this variable.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(define-minor-mode semantic-idle-summary-mode
"Toggle Semantic Idle Summary mode.
When this minor mode is enabled, the echo area displays a summary
of the lexical token at point whenever Emacs is idle."
:group 'semantic
:group 'semantic-modes
(remove-hook 'eldoc-documentation-functions #'semantic--eldoc-info t)
(when semantic-idle-summary-mode
;; Enable the mode
(unless (and (featurep 'semantic) (semantic-active-p))
;; Disable minor mode if semantic stuff not available
(setq semantic-idle-summary-mode nil)
(error "Buffer %s was not set up for parsing"
(buffer-name)))
(add-hook 'eldoc-documentation-functions #'semantic--eldoc-info nil t)
(eldoc-mode 1)))