From: Jeffrey Middleton Date: Mon, 23 Mar 2009 15:08:39 +0000 (-0500) Subject: screen_help: keydef screen X-Git-Tag: release-0.14~56 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ae39bd6be09a3a66d9f16a6c25ca9187ee20a0b5;p=ncmpc.git screen_help: keydef screen Added keydef commands to the help screen. Also updated help text for CMD_UPDATE_LYRICS (it fetches lyrics for the currently playing song). --- diff --git a/src/screen_help.c b/src/screen_help.c index 4283ca3..e967793 100644 --- a/src/screen_help.c +++ b/src/screen_help.c @@ -151,7 +151,7 @@ static help_text_row_t help_text[] = { { 0, CMD_SCREEN_LYRICS, N_("View Lyrics") }, { 0, CMD_SELECT, N_("(Re)load lyrics") }, { 0, CMD_INTERRUPT, N_("Interrupt retrieval") }, - { 0, CMD_LYRICS_UPDATE, N_("Explicitly download lyrics") }, + { 0, CMD_LYRICS_UPDATE, N_("Download lyrics for currently playing song") }, { 0, CMD_SAVE_PLAYLIST, N_("Save lyrics") }, #endif #ifdef ENABLE_OUTPUTS_SCREEN @@ -161,6 +161,16 @@ static help_text_row_t help_text[] = { { 2, CMD_NONE, NULL }, { 0, CMD_PLAY, N_("Enable/disable output") }, #endif +#ifdef ENABLE_KEYDEF_SCREEN + { 0, CMD_NONE, NULL }, + { 0, CMD_NONE, NULL }, + { 1, CMD_NONE, N_("Keydef screen") }, + { 2, CMD_NONE, NULL }, + { 0, CMD_PLAY, N_("Edit keydefs for selected command") }, + { 0, CMD_DELETE, N_("Remove selected keydef") }, + { 0, CMD_GO_PARENT_DIRECTORY, N_("Go up a level") }, + { 0, CMD_SAVE_PLAYLIST, N_("Apply and save changes") }, +#endif }; #define help_text_rows (sizeof(help_text) / sizeof(help_text[0]))