Function: mpc-status-mode

mpc-status-mode is an interactive and byte-compiled function defined in mpc.el.gz.

Signature

(mpc-status-mode)

Documentation

Major mode to display MPC status info.

In addition to any hooks its parent mode mpc-mode might have run, this mode runs the hook mpc-status-mode-hook, as the final or penultimate step during initialization.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
;;; The mpc-status-mode buffer ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(define-derived-mode mpc-status-mode mpc-mode "MPC-Status"
  "Major mode to display MPC status info."
  (setq-local mode-line-format
              '("%e" mode-line-frame-identification
                mode-line-buffer-identification))
  (setq-local window-area-factor 3)
  (setq-local header-line-format '("MPC " mpc-volume)))