Skip to content

Commit

Permalink
Don't show add memo help in pager for local items
Browse files Browse the repository at this point in the history
  • Loading branch information
meowgorithm committed Oct 9, 2020
1 parent 66a8ac1 commit 11d5858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/pager.go
Original file line number Diff line number Diff line change
Expand Up @@ -479,12 +479,12 @@ func pagerHelpView(m pagerModel, width int) (s string) {
"q quit",
}
if m.authStatus == authOK && m.currentDocument.markdownType != stashedMarkdown {
col1[4] = "s stash this document"
col1[5] = "s stash this document"
}

s += "\n"
s += "k/↑ up " + col1[0] + "\n"
s += "j/↓ down " + col1[1] + "\n"
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"
Expand Down

0 comments on commit 11d5858

Please sign in to comment.