Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Move "Pagination" commands to top of help menu
Allows for someone reading the help menu to know that they could paginate
through the help menu. [#439]
  • Loading branch information
sheelc committed May 10, 2020
commit 4637e97d8e26fde7e5af5892d752626bc58ba654
16 changes: 8 additions & 8 deletions src/ui/help.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
pub fn get_help_docs() -> Vec<Vec<&'static str>> {
vec![
vec!["Scroll down to next result page", "<Ctrl+d>", "Pagination"],
vec![
"Scroll up to previous result page",
"<Ctrl+u>",
"Pagination",
],
vec!["Jump to start of playlist", "<Ctrl+a>", "Pagination"],
vec!["Jump to end of playlist", "<Ctrl+e>", "Pagination"],
vec!["Jump to currently playing album", "a", "General"],
vec![
"Jump to currently playing artist's album list",
Expand Down Expand Up @@ -93,14 +101,6 @@ pub fn get_help_docs() -> Vec<Vec<&'static str>> {
"<Esc>",
"Search input",
],
vec!["Scroll down to next result page", "<Ctrl+d>", "Pagination"],
vec![
"Scroll up to previous result page",
"<Ctrl+u>",
"Pagination",
],
vec!["Jump to start of playlist", "<Ctrl+a>", "Pagination"],
vec!["Jump to end of playlist", "<Ctrl+e>", "Pagination"],
vec!["Delete saved album", "D", "Library -> Albums"],
vec!["Delete saved playist", "D", "Playlist"],
vec!["Follow an artists/playlist", "w", "Search result"],
Expand Down