commit 75e48879a0a0698f6687007c34a673949451e1ac from: Stefan Sperling date: Sun May 20 11:28:33 2018 UTC make space bar scroll page down in tog diff view commit - b304db33392ed26f1cc70bcf734308e485459658 commit + 75e48879a0a0698f6687007c34a673949451e1ac blob - ea595b46157840dd6d4fcc289592379a6748b1c9 blob + 46284fb89254d8345b2a47b18057eaf03f1fea33 --- tog/tog.c +++ tog/tog.c @@ -905,6 +905,7 @@ show_diff_view(struct got_object *obj1, struct got_obj first_displayed_line++; break; case KEY_NPAGE: + case ' ': i = 0; while (!eof && i++ < LINES - 1) { char *line = parse_next_line(f, NULL);