aboutsummaryrefslogtreecommitdiff
path: root/emms.texinfo
diff options
context:
space:
mode:
authoryonirabkin <yonirabkin>2006-03-23 12:53:00 +0000
committeryonirabkin <mwolson@gnu.org>2006-03-23 12:53:00 +0000
commit8ace62a9927e23b188e25b5464c82351a4b92fa2 (patch)
treeb71b6b69e5eab95ec06ad0af9e26ea7623ecf529 /emms.texinfo
parent147707e5c30059c297ee448c915627e377cff6a6 (diff)
Added `emms-playlist-sort' to the Emms manual.
darcs-hash:20060323125334-be80e-cba5ae5567623d231f81df0b1331905cd9ccf50f.gz
Diffstat (limited to 'emms.texinfo')
-rw-r--r--emms.texinfo47
1 files changed, 46 insertions, 1 deletions
diff --git a/emms.texinfo b/emms.texinfo
index d0084e7..a952ab0 100644
--- a/emms.texinfo
+++ b/emms.texinfo
@@ -63,8 +63,11 @@ Emms basics
Advanced Features
* Track Information:: More narrative track descriptions.
* Interactive Playlists:: Interactive Playlists.
-* Extending Emms:: How to define new players and modules.
+
+Modules and Extensions
+* Sorting Playlists:: Sorting the order of the tracks.
* Streaming Audio:: Interface to streaming audio.
+* Extending Emms:: How to define new players and modules.
Copying and license
* Copying:: The GNU General Public License gives you permission to
@@ -987,6 +990,48 @@ from @file{emms-player-simple.el}
Now we have a ready player and we could add commands like
@command{emms-mpg321-remote-pause} for example.
+@node Sorting Playlists
+@chapter Sorting Playlists
+
+@cindex sort
+@cindex track order
+
+The `emms-playlist-sort' module, defined in the
+@file{emms-playlist-sort.el} package provides functions for sorting
+Emms playlists. `emms-playlist-sort' can be loaded by invoking:
+
+@lisp
+(require 'emms-playlist-sort)
+@end lisp
+
+@defun emms-playlist-sort-by-name
+Sort playlist by name in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-info-artist
+Sort playlist by artist in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-info-title
+Sort playlist by title in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-info-album
+Sort playlist by album in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-info-year
+Sort playlist by year in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-info-note
+Sort playlist by notes in ascending order.
+@end defun
+
+@defun emms-playlist-sort-by-score
+Sort emms playlist by score in descending order.
+@end defun
+
@node Streaming Audio
@chapter Streaming Audio