Skip to content

Commit

Permalink
Remove duplicate "down/j" from the "?" help
Browse files Browse the repository at this point in the history
  • Loading branch information
bubersson authored and muesli committed Oct 9, 2020
1 parent 6a1c227 commit 66a8ac1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions ui/pager.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,12 +484,11 @@ func pagerHelpView(m pagerModel, width int) (s string) {

s += "\n"
s += "k/↑ up " + col1[0] + "\n"
s += "j/↓ down " + col1[1] + "\n"
s += "j/↓ down " + col1[2] + "\n"
s += "b/pgup page up " + col1[3] + "\n"
s += "f/pgdn page down " + col1[4] + "\n"
s += "u ½ page up " + col1[5] + "\n"
s += "d ½ page down"
s += "j/↓ down " + col1[1] + "\n"
s += "b/pgup page up " + col1[2] + "\n"
s += "f/pgdn page down " + col1[3] + "\n"
s += "u ½ page up " + col1[4] + "\n"
s += "d ½ page down " + col1[5] + "\n"

s = indent(s, 2)

Expand Down

0 comments on commit 66a8ac1

Please sign in to comment.