Variable: global-semantic-idle-breadcrumbs-mode-hook
global-semantic-idle-breadcrumbs-mode-hook is a customizable variable
defined in idle.el.gz.
Value
nil
Documentation
Hook run after entering or leaving global-semantic-idle-breadcrumbs-mode(var)/global-semantic-idle-breadcrumbs-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
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)))