Variable: semantic-idle-breadcrumbs-mode-hook
semantic-idle-breadcrumbs-mode-hook is a customizable variable defined
in idle.el.gz.
Value
nil
Documentation
Hook run at the end of function semantic-idle-breadcrumbs-mode(var)/semantic-idle-breadcrumbs-mode(fun).
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)))