commit 0996b108f50d63f22a8a3b948385eaf29c34f51c from: Stefan Sperling date: Thu Oct 18 10:47:24 2018 UTC remove '[' and ']' key bindings from tog log commit - 48ae06eed46dc33d968d3c3e46e5728d92cd37a8 commit + 0996b108f50d63f22a8a3b948385eaf29c34f51c blob - ad5f96401198326c7e2089a105e6746a0ac5d5a4 blob + 2716958a93edd0cd2dd442cad2fa95093928383a --- tog/tog.1 +++ tog/tog.1 @@ -83,9 +83,9 @@ The key bindings for .Cm tog log are as follows: .Bl -tag -width Ds -.It Cm Down-arrow, j, ], Page-down +.It Cm Down-arrow, j, Page-down Move the selection cursor down. -.It Cm Up-arrow, k, [, Page-up +.It Cm Up-arrow, k, Page-up Move the selection cursor up. .It Cm Enter Open a blob - cb285c3f97db1229a9023ce2014a27254b50c567 blob + c414939ac76b56daca8dca217ab02535d4019773 --- tog/tog.c +++ tog/tog.c @@ -1290,7 +1290,6 @@ input_log_view(struct tog_view **new_view, struct tog_ switch (ch) { case 'k': case KEY_UP: - case '[': if (s->selected > 0) s->selected--; if (s->selected > 0) @@ -1309,7 +1308,6 @@ input_log_view(struct tog_view **new_view, struct tog_ break; case 'j': case KEY_DOWN: - case ']': if (s->selected < MIN(view->nlines - 2, s->commits.ncommits - 1)) { s->selected++;