commit - afd3149814241c83780b6f8df65ea0cfa39fbcb8
commit + 33c3719a3133ea565d69348d51b7a65485dbbcee
blob - e8c907d8d9a4f50f4fdd9cce7cb1d2ebb7b3558b
blob + 56d92245cc73778b494f7d494ab0ad7560d3fab6
--- tog/tog.1
+++ tog/tog.1
Move the selection cursor down one page.
.It Cm Page-up, Ctrl+b
Move the selection cursor up one page.
-.It Cm Ctrl+d
+.It Cm Ctrl+d, d
Move the selection cursor down one half page.
-.It Cm Ctrl+u
+.It Cm Ctrl+u, u
Move the selection cursor up one half page.
.It Cm Home, g
Move the cursor to the newest commit.
Scroll down one page.
.It Cm Page-up, Ctrl+b
Scroll up one page.
-.It Cm Ctrl+d
+.It Cm Ctrl+d, d
Scroll down one half page.
-.It Cm Ctrl+u
+.It Cm Ctrl+u, u
Scroll up one half page.
.It Cm Home, g
Scroll to the top of the view.
Move the selection cursor down one page.
.It Cm Page-up, Ctrl+b
Move the selection cursor up one page.
-.It Cm Ctrl+d
+.It Cm Ctrl+d, d
Move the selection cursor down one half page.
-.It Cm Ctrl+u
+.It Cm Ctrl+u, u
Move the selection cursor up one half page.
.It Cm Home, g
Move the selection cursor to the first line of the file.
Move the selection cursor down one page.
.It Cm Page-up, Ctrl+b
Move the selection cursor up one page.
-.It Cm Ctrl+d
+.It Cm Ctrl+d, d
Move the selection cursor down one half page.
-.It Cm Ctrl+u
+.It Cm Ctrl+u, u
Move the selection cursor up one half page.
.It Cm Home, g
Move the selection cursor to the first entry.
Move the selection cursor down one page.
.It Cm Page-up, Ctrl+b
Move the selection cursor up one page.
-.It Cm Ctrl+d
+.It Cm Ctrl+d, d
Move the selection cursor down one half page.
-.It Cm Ctrl+u
+.It Cm Ctrl+u, u
Move the selection cursor up one half page.
.It Cm Home, g
Move the selection cursor to the first reference.
blob - 4f4980303045fa4c780164ca0158522fbc0b9867
blob + d0d583647fa722f8269697d6e94f89ef67153909
--- tog/tog.c
+++ tog/tog.c
select_commit(s);
break;
case CTRL('u'):
+ case 'u':
nscroll /= 2;
/* FALL THROUGH */
case KEY_PPAGE:
break;
}
case CTRL('d'):
+ case 'd':
nscroll /= 2;
/* FALL THROUGH */
case KEY_NPAGE:
s->first_displayed_line--;
break;
case CTRL('u'):
+ case 'u':
nscroll /= 2;
/* FALL THROUGH */
case KEY_PPAGE:
s->first_displayed_line++;
break;
case CTRL('d'):
+ case 'd':
nscroll /= 2;
/* FALL THROUGH */
case KEY_NPAGE:
s->first_displayed_line--;
break;
case CTRL('u'):
+ case 'u':
nscroll /= 2;
/* FALL THROUGH */
case KEY_PPAGE:
break;
}
case CTRL('d'):
+ case 'd':
nscroll /= 2;
/* FALL THROUGH */
case KEY_NPAGE:
tree_scroll_up(s, 1);
break;
case CTRL('u'):
+ case 'u':
nscroll /= 2;
/* FALL THROUGH */
case KEY_PPAGE:
tree_scroll_down(s, 1);
break;
case CTRL('d'):
+ case 'd':
nscroll /= 2;
/* FALL THROUGH */
case KEY_NPAGE:
ref_scroll_up(s, 1);
break;
case CTRL('u'):
+ case 'u':
nscroll /= 2;
/* FALL THROUGH */
case KEY_PPAGE:
ref_scroll_down(s, 1);
break;
case CTRL('d'):
+ case 'd':
nscroll /= 2;
/* FALL THROUGH */
case KEY_NPAGE: