commit 5a23f2a6c54c154c997cf70eafecae6e90827ab5
parent 927fe9a33ee11706a58bba9e762effdc676ef903
Author: sin <sin@2f30.org>
Date: Sat, 8 Jul 2017 12:01:06 +0200
Alias '?' to show help screen
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ui_txt.c b/ui_txt.c
@@ -45,7 +45,7 @@ help(void)
"b: go to the bottom of the page\n"
"!: refetch failed item.\n"
"^D, q: quit.\n"
- "h: this help.");
+ "h, ?: this help.");
}
static int
@@ -147,6 +147,7 @@ selectitem(Item *entry)
continue;
return entry;
case 'h':
+ case '?':
help();
continue;
default: