Variable: global-semantic-show-parser-state-mode

global-semantic-show-parser-state-mode is a customizable variable defined in util-modes.el.gz.

Value

nil

Documentation

Non-nil if Global Semantic-Show-Parser-State mode is enabled.

See the global-semantic-show-parser-state-mode(var)/global-semantic-show-parser-state-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-show-parser-state-mode(var)/global-semantic-show-parser-state-mode(fun).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
;;;;
;;;; Minor mode to display the parser state in the modeline.
;;;;

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