Commit bf0668dd8c753e49753724e72e408bf8a568c700

Stefan Sperling 2019-06-26T09:44:51

tog log: remove 'r' key-binding; we might want to re-use it later

diff --git a/tog/tog.1 b/tog/tog.1
index c652b73..a263a2b 100644
--- a/tog/tog.1
+++ b/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, Ctrl+l
+.It Cm Ctrl+l
 Reload the log view with new commits found in the repository.
 .El
 .Pp
diff --git a/tog/tog.c b/tog/tog.c
index 635145a..3c2a6b3 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -2048,7 +2048,6 @@ input_log_view(struct tog_view **new_view, struct tog_view **dead_view,
 			return NULL;
 		}
 		break;
-	case 'r':
 	case CTRL('l'):
 		err = stop_log_thread(s);
 		if (err)