mirror of
https://github.com/charmbracelet/glow.git
synced 2026-08-23 08:34:17 +02:00
Remove duplicate "down/j" from the "?" help
This commit is contained in:
parent
6a1c227231
commit
66a8ac10bc
1 changed files with 5 additions and 6 deletions
11
ui/pager.go
11
ui/pager.go
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue