aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_help.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-25 21:35:06 +0200
committerMax Kellermann <max@duempel.org>2008-09-25 21:35:06 +0200
commit1198af221ec2d804d9ff840a9dcd5e770fb3d13a (patch)
treeb1be8456ca335ef6b0089e024ab26db6b8d70ba1 /src/screen_help.c
parent728309e4aeaac71555ce68ffcd3ff92952a270d3 (diff)
downloadmpd-1198af221ec2d804d9ff840a9dcd5e770fb3d13a.tar.gz
mpd-1198af221ec2d804d9ff840a9dcd5e770fb3d13a.tar.xz
mpd-1198af221ec2d804d9ff840a9dcd5e770fb3d13a.zip
screen_browser: added hotkey for adding song
CMD_ADD ('a') appends a song to the playlist, no matter if it is already there, i.e. unlike CMD_SELECT, it does not toggle the song.
Diffstat (limited to 'src/screen_help.c')
-rw-r--r--src/screen_help.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screen_help.c b/src/screen_help.c
index 3ac4b0543..2637af963 100644
--- a/src/screen_help.c
+++ b/src/screen_help.c
@@ -107,6 +107,7 @@ static help_text_row_t help_text[] =
{ 2, CMD_NONE, NULL },
{ 0, CMD_PLAY, N_("Enter directory/Select and play song") },
{ 0, CMD_SELECT, NULL },
+ { 0, CMD_ADD, N_("Append song to playlist") },
{ 0, CMD_SAVE_PLAYLIST, NULL },
{ 0, CMD_DELETE, N_("Delete playlist") },
{ 0, CMD_GO_PARENT_DIRECTORY, NULL },
@@ -121,6 +122,7 @@ static help_text_row_t help_text[] =
{ 0, CMD_SCREEN_SEARCH, N_("Search") },
{ 0, CMD_PLAY, N_("Select and play") },
{ 0, CMD_SELECT, NULL },
+ { 0, CMD_ADD, N_("Append song to playlist") },
{ 0, CMD_SELECT_ALL, NULL },
{ 0, CMD_SEARCH_MODE, NULL },
#endif