Variable: global-semantic-idle-summary-mode

global-semantic-idle-summary-mode is a customizable variable defined in idle.el.gz.

Value

nil

Documentation

Non-nil if Global Semantic-Idle-Summary mode is enabled.

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

Key Bindings

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)))