summaryrefslogtreecommitdiffstats
path: root/src/tabs
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2023-08-21 11:28:29 +0200
committerextrawurst <mail@rusticorn.com>2023-08-21 11:29:02 +0200
commitd253022f13fb392996e2cef98def7a2291fb5fcc (patch)
tree94c3434c1e9471f5dcb76400b6305f24cb8fe783 /src/tabs
parent4a6131fcd9a506617a9ffdb031b25ed302783478 (diff)
add missing command for new commit search in log
Diffstat (limited to 'src/tabs')
-rw-r--r--src/tabs/revlog.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tabs/revlog.rs b/src/tabs/revlog.rs
index 05590c46..e5e37e9d 100644
--- a/src/tabs/revlog.rs
+++ b/src/tabs/revlog.rs
@@ -690,6 +690,11 @@ impl Component for Revlog {
self.selected_commit().is_some(),
self.visible || force_all,
));
+ out.push(CommandInfo::new(
+ strings::commands::log_find_commit(&self.key_config),
+ true,
+ self.visible || force_all,
+ ));
visibility_blocking(self)
}