sacc

sacc(omys), simple console gopher client (mirror)
git clone https://git.parazyd.org/sacc
Log | Files | Refs | LICENSE

commit e034ff262431bb4f6c1e8340c6ff7ced21372160
parent ccbccf5ade02e280dd1ab05a8df0ed3b143d1647
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 30 Aug 2017 19:01:24 +0200

Put the missing key for printing uri in the help

Thanks to trqx for spotting it!

Diffstat:
Mui_ti.c | 1+
Mui_txt.c | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/ui_ti.c b/ui_ti.c @@ -101,6 +101,7 @@ help(Item *entry) "End, " S(_key_end) ": move to end of the page.\n" "Right, " S(_key_pgnext) ": view highlighted item.\n" "Left, " S(_key_pgprev) ": view previous item.\n" + S(_key_uri) ": print item uri.\n" S(_key_help) ": show this help.\n" "^D, " S(_key_quit) ": exit sacc.\n" }; diff --git a/ui_txt.c b/ui_txt.c @@ -40,6 +40,7 @@ help(void) { puts("Commands:\n" "N = [1-9]...: browse item N.\n" + "uN...: print item N uri.\n" "0: browse previous item.\n" "n: show next page.\n" "p: show previous page.\n"