Variable: global-srecode-minor-mode

global-srecode-minor-mode is a customizable variable defined in mode.el.gz.

Value

nil

Documentation

Non-nil if Global Srecode minor mode is enabled.

See the global-srecode-minor-mode(var)/global-srecode-minor-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-srecode-minor-mode(var)/global-srecode-minor-mode(fun).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/mode.el.gz
;;;###autoload
(define-minor-mode global-srecode-minor-mode
  "Toggle global use of srecode minor mode."
  :global t :group 'srecode
  ;; Not needed because it's autoloaded instead.
  ;; :require 'srecode/mode
  (semantic-toggle-minor-mode-globally
   'srecode-minor-mode (if global-srecode-minor-mode 1 -1)))