From 99f760bdac1c8d6eb423e062c7d795ea77f4503e Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Sun, 13 Dec 2020 09:35:05 +0100 Subject: [PATCH] Add new actions to sample bindings file and help screen --- doc/bindings | 2 ++ src/screens/help.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/doc/bindings b/doc/bindings index ab21cbf6..6f1c5363 100644 --- a/doc/bindings +++ b/doc/bindings @@ -147,6 +147,8 @@ ## The following actions are not bound to any key/command: ## ## - set_volume +## - load +## - play ## # #def_key "mouse" diff --git a/src/screens/help.cpp b/src/screens/help.cpp index 7cdca37d..868182f0 100644 --- a/src/screens/help.cpp +++ b/src/screens/help.cpp @@ -173,6 +173,7 @@ void write_bindings(NC::Scrollpad &w) key(w, Type::ShowServerInfo, "Show server info"); key_section(w, "Global"); + key(w, Type::Play, "Play"); key(w, Type::Stop, "Stop"); key(w, Type::Pause, "Pause"); key(w, Type::Next, "Next track"); @@ -247,6 +248,7 @@ void write_bindings(NC::Scrollpad &w) key(w, Type::MoveSelectedItemsDown, "Move selected item(s) down"); key(w, Type::MoveSelectedItemsTo, "Move selected item(s) to cursor position"); key(w, Type::Add, "Add item to playlist"); + key(w, Type::Load, "Load stored playlist"); # ifdef HAVE_TAGLIB_H key(w, Type::EditSong, "Edit song"); # endif // HAVE_TAGLIB_H