diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2018-09-25 14:21:54 -0400 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2018-09-25 14:21:54 -0400 |
commit | 309babf7af4a05faae2a1d91dcad94812e99a3db (patch) | |
tree | 5aed1fa7df64f37371747e41e231d532df5a2602 | |
parent | f9b2e8214790a89b22952cfa6b33c2de88f8e145 (diff) |
* doc/emms.texinfo: document emms-playlist-limit
-rw-r--r-- | doc/emms.texinfo | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/doc/emms.texinfo b/doc/emms.texinfo index d18ce6b..d98a48d 100644 --- a/doc/emms.texinfo +++ b/doc/emms.texinfo @@ -75,6 +75,7 @@ Modules and Extensions * Persistent Playlists:: Restoring playlists on emacs startup. * Editing Tracks:: Editing track information from within Emms. * Emms Mode Line:: Emms information on the mode line. +* Limiting:: Derive a new playlist from the current. * Music Player Daemon:: Interface to Music Player Daemon. * Lyrics:: Displaying lyrics synchronously. * Volume:: Changing the volume. @@ -2050,6 +2051,75 @@ Remove playing time from mode line. @c ------------------------------------------------------------------- +@node Limiting +@chapter Limiting + +@cindex limiting +@cindex playlist + +The package `emms-playlist-limit', provided by +@file{emms-playlist-limit.el}, allows creating a new playlist derived +from the current playlist. For instance, it is possible to create a +new playlist containing only a certain artist or genre from the +current playlist. + +@table @kbd +@item / n +@kindex / n +@findex emms-playlist-limit-to-name +Create a new playlist buffer and populate it with tracks matching the +name of the track at point. + +@item / a +@kindex / a +@findex emms-playlist-limit-to-info-artist +Create a new playlist buffer and populate it with tracks matching the +artist info field of the track at point. + +@item / c +@kindex / c +@findex emms-playlist-limit-to-info-composer +Create a new playlist buffer and populate it with tracks matching the +composer info field of the track at point. + +@item / p +@kindex / p +@findex emms-playlist-limit-to-info-performer +Create a new playlist buffer and populate it with tracks matching the +performer info field of the track at point. + +@item / t +@kindex / t +@findex emms-playlist-limit-to-info-title +Create a new playlist buffer and populate it with tracks matching the +title info field of the track at point. + +@item / b +@kindex / b +@findex emms-playlist-limit-to-info-album +Create a new playlist buffer and populate it with tracks matching the +album info field of the track at point. + +@item / y +@kindex / y +@findex emms-playlist-limit-to-info-year +Create a new playlist buffer and populate it with tracks matching the +year info field of the track at point. + +@item / g +@kindex / g +@findex emms-playlist-limit-to-info-genre +Create a new playlist buffer and populate it with tracks matching the +genre info field of the track at point. + +@item / / +@kindex / / +@findex emms-playlist-limit-to-all +Switch to the original playlist buffer (if it still exists). +@end table + + +@c ------------------------------------------------------------------- @node Music Player Daemon @chapter Music Player Daemon |