Function: mpc-tagbrowser-mode
mpc-tagbrowser-mode is an interactive and byte-compiled function
defined in mpc.el.gz.
Signature
(mpc-tagbrowser-mode)
Documentation
Major mode derived from mpc-mode by define-derived-mode.
It inherits all of the parent's attributes, but has its own keymap, abbrev table and syntax table:
mpc-tagbrowser-mode-map, mpc-tagbrowser-mode-abbrev-table and
mpc-tagbrowser-mode-syntax-table
which more-or-less shadow mpc-mode's corresponding tables.
In addition to any hooks its parent mode might have run, this mode runs
the hook mpc-tagbrowser-mode-hook, as the final or penultimate step
during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(define-derived-mode mpc-tagbrowser-mode mpc-mode '("MPC-" mpc-tag-name)
(setq-local mode-line-process '("" mpc-tag-name))
(setq-local mode-line-format nil)
(setq-local header-line-format '("" mpc-tag-name)) ;; "s"
(setq-local buffer-undo-list t)
)