commit 48531068d9d28c72ded165ced5e98b95d0324579 from: Stefan Sperling date: Thu May 10 12:12:07 2018 UTC implement page-up scrolling in tog log view commit - aa0759286673bad2a80bef3f672ea5f6143f474e commit + 48531068d9d28c72ded165ced5e98b95d0324579 blob - 9d85cde781fd1831638443d9a6447362bbc299cc blob + c0fdf7c71398171ed44ffd754b68fbf4b110820b --- tog/tog.c +++ tog/tog.c @@ -597,6 +597,11 @@ show_log_view(struct got_object_id *start_id, struct g break; scroll_up(&first_displayed_entry, 1, &commits); break; + case KEY_PPAGE: + scroll_up(&first_displayed_entry, LINES, + &commits); + selected = 0; + break; case 'j': case KEY_DOWN: if (selected < LINES - 1)