diff options
author | Jeffrey Middleton <jeffrey.r.middleton@nasa.gov> | 2009-03-26 22:02:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-26 22:02:56 +0100 |
commit | 13208bf5a7c91a6406195139f1068f173ccdac94 (patch) | |
tree | 9e4d346b9ec78eb84be3f7cb079206eb86977fe4 /doc/protocol.xml | |
parent | 7684c446c6f9b699ae4ea30b59cde81ec31efa53 (diff) | |
download | mpd-13208bf5a7c91a6406195139f1068f173ccdac94.tar.gz mpd-13208bf5a7c91a6406195139f1068f173ccdac94.tar.xz mpd-13208bf5a7c91a6406195139f1068f173ccdac94.zip |
queue/playlist/command: move range
The move command now accepts a range for the first argument, in the same
form as other range commands, e.g. move 15:17 3. The first song in the
range is placed at the destination position. Note that as with other
range commands, the range is inclusive on the left only; this example
would move only songs 15 and 16, not 17.
[mk: fixed signed/unsigned warnings; use G_MAXUINT instead of
UINT_MAX]
Diffstat (limited to '')
-rw-r--r-- | doc/protocol.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/protocol.xml b/doc/protocol.xml index 409f9ca0e..8f5b4b9e8 100644 --- a/doc/protocol.xml +++ b/doc/protocol.xml @@ -634,14 +634,18 @@ OK <term> <cmdsynopsis> <command>move</command> - <arg choice="req"><replaceable>FROM</replaceable></arg> + <group> + <arg choice="req"><replaceable>FROM</replaceable></arg> + <arg choice="req"><replaceable>START:END</replaceable></arg> + </group> <arg choice="req"><replaceable>TO</replaceable></arg> </cmdsynopsis> </term> <listitem> <para> - Moves the song at <varname>FROM</varname> to - <varname>TO</varname> in the playlist. + Moves the song at <varname>FROM</varname> or range of songs + at <varname>START:END</varname> to <varname>TO</varname> + in the playlist. </para> </listitem> </varlistentry> |