Function: semantic-speedbar-analysis

semantic-speedbar-analysis is an autoloaded, interactive and byte-compiled function defined in ia-sb.el.gz.

Signature

(semantic-speedbar-analysis)

Documentation

Start Speedbar in semantic analysis mode.

The analyzer displays information about the current context, plus a smart list of possible completions.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia-sb.el.gz
;;;###autoload
(defun semantic-speedbar-analysis ()
  "Start Speedbar in semantic analysis mode.
The analyzer displays information about the current context, plus a smart
list of possible completions."
  (interactive)
  ;; Make sure that speedbar is active
  (speedbar-frame-mode 1)
  ;; Now, throw us into Analyze  mode on speedbar.
  (speedbar-change-initial-expansion-list "Analyze")
  )