Variable: semantic-idle-breadcrumbs-popup-map

semantic-idle-breadcrumbs-popup-map is a variable defined in idle.el.gz.

Value

<header-line> <mouse-1>  #<anonymous-function>
<header-line> <mouse-3>  semantic-idle-breadcrumbs--popup-menu

Documentation

Keymap for semantic idle breadcrumbs minor mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
;; TODO does this work for mode-line case?
(defvar semantic-idle-breadcrumbs-popup-map
  (let ((map (make-sparse-keymap)))
    ;; mouse-1 goes to clicked tag
    (define-key map
      [ header-line mouse-1 ]
      (semantic-idle-breadcrumbs--tag-function #'semantic-go-to-tag))
    ;; mouse-3 pops up a context menu
    (define-key map
      [ header-line mouse-3 ]
      #'semantic-idle-breadcrumbs--popup-menu)
    map)
  "Keymap for semantic idle breadcrumbs minor mode.")