diff --git a/core/src/manager/tab.rs b/core/src/manager/tab.rs index b24fb4b2..bdac06e1 100644 --- a/core/src/manager/tab.rs +++ b/core/src/manager/tab.rs @@ -256,7 +256,9 @@ impl Tab { } tokio::spawn(async move { - let rx = emit!(Input(InputOpt::top("Find:").with_realtime())); + let rx = emit!(Input( + InputOpt::top(if prev { "Find previous:" } else { "Find next:" }).with_realtime() + )); let rx = Debounce::new(UnboundedReceiverStream::new(rx), Duration::from_millis(50)); pin!(rx);