Variable: bib-cite-minor-mode-map

bib-cite-minor-mode-map is a variable defined in bib-cite.el.

Value

C-c b a  bib-apropos
C-c b b  bib-make-bibliography
C-c b d  bib-display
C-c b e  bib-etags
C-c b f  bib-find
C-c b h  bib-highlight-mouse
C-c b n  bib-find-next

Documentation

Bib-cite minor-mode keymap.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defvar bib-cite-minor-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "\C-cba" #'bib-apropos)
    (define-key map "\C-cbb" #'bib-make-bibliography)
    (define-key map "\C-cbd" #'bib-display)
    (define-key map "\C-cbe" #'bib-etags)
    (define-key map "\C-cbf" #'bib-find)
    (define-key map "\C-cbn" #'bib-find-next)
    (define-key map "\C-cbh" #'bib-highlight-mouse)
    map)
  "Bib-cite minor-mode keymap.")