Function: mpc-toggle-shuffle

mpc-toggle-shuffle is an interactive and byte-compiled function defined in mpc.el.gz.

Signature

(mpc-toggle-shuffle)

Documentation

Toggle shuffling of the playlist (random mode).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc-toggle-shuffle ()
  "Toggle shuffling of the playlist (random mode)."
  (interactive)
  (mpc-cmd-random
   (if (string= "0" (cdr (assq 'random (mpc-cmd-status)))) "1" "0")))