Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Correct formatting for new help docs
  • Loading branch information
RadicalZephyr committed Oct 28, 2019
commit 10251db724bc007fc9f04f0d02a3936cace2c79f
24 changes: 20 additions & 4 deletions src/ui/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,26 @@ pub fn get_help_docs() -> Vec<Vec<&'static str>> {
vec!["Seek forwards 5 seconds", ">", "General"],
vec!["Toggle shuffle", "<Ctrl+s>", "General"],
vec!["Cycle repeat mode", "<Ctrl+r>", "General"],
vec!["Move selection left", "h | <Left Arrow Key> | <Ctrl+b>", "General"],
vec!["Move selection down", "j | <Down Arrow Key> | <Ctrl+n>", "General"],
vec!["Move selection up", "k | <Up Arrow Key> | <Ctrl+p>", "General"],
vec!["Move selection right", "l | <Right Arrow Key> | <Ctrl+f>", "General"],
vec![
"Move selection left",
"h | <Left Arrow Key> | <Ctrl+b>",
"General",
],
vec![
"Move selection down",
"j | <Down Arrow Key> | <Ctrl+n>",
"General",
],
vec![
"Move selection up",
"k | <Up Arrow Key> | <Ctrl+p>",
"General",
],
vec![
"Move selection right",
"l | <Right Arrow Key> | <Ctrl+f>",
"General",
],
vec!["Enter input for search", "/", "General"],
vec!["Pause/Resume playback", "<Space>", "General"],
vec!["Enter active mode", "<Enter>", "General"],
Expand Down