Variable: mpc-tagbrowser-dir-mode-map

mpc-tagbrowser-dir-mode-map is a variable defined in mpc.el.gz.

Value

M-RET  mpc-tagbrowser-dir-toggle

Documentation

Keymap for mpc-tagbrowser-dir-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
;;; Hierarchical tagbrowser ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Todo:
;; - Add a button on each dir to open/close it (?)
;; - add the parent dir on the previous line, grayed-out, if it's not
;;   present (because we're in the non-selected part and the parent is
;;   in the selected part).

(defvar mpc-tagbrowser-dir-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map mpc-tagbrowser-mode-map)
    (define-key map [?\M-\C-m] #'mpc-tagbrowser-dir-toggle)
    map))