Function: global-semantic-idle-breadcrumbs-mode
global-semantic-idle-breadcrumbs-mode is an interactive and
byte-compiled function defined in idle.el.gz.
Signature
(global-semantic-idle-breadcrumbs-mode &optional ARG)
Documentation
Toggle global-semantic-idle-breadcrumbs-mode.
With ARG, turn the minor mode on if ARG is positive, off otherwise.
When this minor mode is enabled, semantic-idle-breadcrumbs-mode(var)/semantic-idle-breadcrumbs-mode(fun) is
turned on in every Semantic-supported buffer.
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)))