emms-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [emms-help] Changing the way emms-next and emms-prev work


From: Jorgen Schaefer
Subject: Re: [emms-help] Changing the way emms-next and emms-prev work
Date: Tue, 13 Sep 2005 14:28:06 +0200
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux)

Yoni Rabkin Katzenell <address@hidden> writes:

> `emms-next' and friends skip to the next song and start playing even if
> Emms is currently stopped.

That's what I would expect them to do. It's easy to provide other
functions, though:

(defun emms-next-noplay ()
  "Select the next track, but don't play unless we are playing."
  (let ((playingp emms-player-playing-p))
    (when playingp
      (emms-stop))
    (emms-playlist-select-next)
    (when playingp
      (emms-start))))

etc.

Do you think those should go into the core? They seem to be more
appropriate for the playlist mode.

Greetings,
        -- Jorgen

-- 
((email . "address@hidden") (www . "http://www.forcix.cx/";)
 (gpg   . "1024D/028AF63C")   (irc . "nick forcer on IRCnet"))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]