Function: semantic-idle-breadcrumbs-popup-menu

semantic-idle-breadcrumbs-popup-menu is an interactive and byte-compiled function defined in idle.el.gz.

Signature

(semantic-idle-breadcrumbs-popup-menu ARG1)

Documentation

Semantic Breadcrumbs Mode Menu.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(easy-menu-define
  semantic-idle-breadcrumbs-popup-menu
  semantic-idle-breadcrumbs-popup-map
  "Semantic Breadcrumbs Mode Menu."
  (list
   "Breadcrumb Tag"
   (vector
    "Go to Tag"
    (semantic-idle-breadcrumbs--tag-function #'semantic-go-to-tag)
    :active t
    :help  "Jump to this tag")
   ;; TODO these entries need minor changes (optional tag argument) in
   ;; senator-copy-tag etc
   ;;  (semantic-menu-item
   ;;   (vector
   ;;    "Copy Tag"
   ;;    (semantic-idle-breadcrumbs--tag-function #'senator-copy-tag)
   ;;    :active t
   ;;    :help   "Copy this tag"))
   ;;   (semantic-menu-item
   ;;    (vector
   ;;     "Kill Tag"
   ;;     (semantic-idle-breadcrumbs--tag-function #'senator-kill-tag)
   ;;     :active t
   ;;     :help   "Kill tag text to the kill ring, and copy the tag to
   ;; the tag ring"))
   ;;   (semantic-menu-item
   ;;    (vector
   ;;     "Copy Tag to Register"
   ;;     (semantic-idle-breadcrumbs--tag-function #'senator-copy-tag-to-register)
   ;;     :active t
   ;;     :help   "Copy this tag"))
   ;;   (semantic-menu-item
   ;;    (vector
   ;;     "Narrow to Tag"
   ;;     (semantic-idle-breadcrumbs--tag-function #'senator-narrow-to-defun)
   ;;     :active t
   ;;     :help   "Narrow to the bounds of the current tag"))
   ;;   (semantic-menu-item
   ;;    (vector
   ;;     "Fold Tag"
   ;;     (semantic-idle-breadcrumbs--tag-function #'senator-fold-tag-toggle)
   ;;     :active   t
   ;;     :style    'toggle
   ;;     :selected '(let ((tag (semantic-current-tag)))
   ;;		   (and tag (semantic-tag-folded-p tag)))
   ;;     :help     "Fold the current tag to one line"))
   "---"
   (vector
    "About this Header Line"
    (lambda ()
      (interactive)
      (describe-function 'semantic-idle-breadcrumbs-mode))
    :active t
    :help   "Display help about this header line.")))