commit e3d2a5c6a3bb4c206467d23cc6857ecabc18c05a from: Stefan Sperling date: Wed Jun 26 07:32:39 2019 UTC Bind reload in 'tog log' to Ctrl+l commit - 9221fb1e6c5f3d3e2a80d951b8b1a57eaf896326 commit + e3d2a5c6a3bb4c206467d23cc6857ecabc18c05a blob - 8911577c58aeeb5285ded12c00bece9cee219f9c blob + 56f9820ba75590ec44d78300601159278f27932b --- tog/tog.1 +++ tog/tog.1 @@ -114,7 +114,7 @@ Regular expression syntax is documented in Find the next commit which matches the current search pattern. .It Cm N Find the previous commit which matches the current search pattern. -.It Cm r +.It Cm r, Ctrl+l Reload the log view with new commits found in the repository. .El .Pp blob - 2c60e90ad804622a25f2e0f017c4379a92df40a3 blob + 635145aafbe60d491e2930a081371a4711240253 --- tog/tog.c +++ tog/tog.c @@ -2049,6 +2049,7 @@ input_log_view(struct tog_view **new_view, struct tog_ } break; case 'r': + case CTRL('l'): err = stop_log_thread(s); if (err) return err;