aboutsummaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-04-05 08:56:50 +0000
committerKalle Wallin <kaw@linux.se>2004-04-05 08:56:50 +0000
commitcc10008d7908ddfe9379c94ae0930b182f078046 (patch)
tree6f6e3bc4c41802b3c313c7658c07d523b19572c9 /command.c
parentabf8689484dfd459dbac86fc5a623c854ab2a377 (diff)
downloadmpd-cc10008d7908ddfe9379c94ae0930b182f078046.tar.gz
mpd-cc10008d7908ddfe9379c94ae0930b182f078046.tar.xz
mpd-cc10008d7908ddfe9379c94ae0930b182f078046.zip
Added support for (auto) center/focus playlists.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@604 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--command.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/command.c b/command.c
index e165aa466..f3e129f04 100644
--- a/command.c
+++ b/command.c
@@ -51,7 +51,8 @@ static command_definition_t cmds[] =
{ { '+', RGHT, 0 }, CMD_VOLUME_UP, "Increase volume" },
{ { '-', LEFT, 0 }, CMD_VOLUME_DOWN, "Decrease volume" },
- { { 'w', 0, 0 }, CMD_TOGGLE_FIND_WRAP, "Toggle find mode" },
+ { { 'w', 0, 0 }, CMD_TOGGLE_FIND_WRAP, "Toggle find mode" },
+ { { 'U', 0, 0 }, CMD_TOGGLE_AUTOCENTER, "Toggle auto center mode" },
{ { ' ', 0, 0 }, CMD_SELECT, "Select/deselect song in playlist" },
{ { DEL, 'd', 0 }, CMD_DELETE, "Delete song from playlist" },