Variable: semantic-idle-breadcrumbs-mode

semantic-idle-breadcrumbs-mode is a buffer-local variable defined in idle.el.gz.

Documentation

Non-nil if Semantic-Idle-Breadcrumbs mode is enabled.

Use the command semantic-idle-breadcrumbs-mode(var)/semantic-idle-breadcrumbs-mode(fun) to change this variable.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(define-semantic-idle-service semantic-idle-breadcrumbs
  "Display breadcrumbs for the tag under point and its parents."
  (let* ((scope    (semantic-calculate-scope))
	 (tag-list (if scope
		       ;; If there is a scope, extract the tag and its
		       ;; parents.
		       (append (oref scope parents)
			       (when (oref scope tag)
				 (list (oref scope tag))))
		     ;; Fall back to tags by overlay
		     (semantic-find-tag-by-overlay))))
    ;; Display the tags.
    (funcall semantic-idle-breadcrumbs-display-function tag-list)))