mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
transition to nucleo for fuzzy matching (#7814)
* transition to nucleo for fuzzy matching * drop flakey test case since the picker streams in results now any test that relies on the picker containing results is potentially flakely * use crates.io version of nucleo * Fix typo in commands.rs Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com> --------- Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com>
This commit is contained in:
parent
40d7e6c9c8
commit
0cb595e226
26 changed files with 756 additions and 1051 deletions
|
@ -23,7 +23,6 @@ pub(super) struct DiffWorker {
|
|||
pub channel: UnboundedReceiver<Event>,
|
||||
pub diff: Arc<Mutex<DiffInner>>,
|
||||
pub new_hunks: Vec<Hunk>,
|
||||
pub redraw_notify: Arc<Notify>,
|
||||
pub diff_finished_notify: Arc<Notify>,
|
||||
}
|
||||
|
||||
|
@ -32,11 +31,7 @@ impl DiffWorker {
|
|||
let mut accumulator = EventAccumulator::new();
|
||||
accumulator.handle_event(event).await;
|
||||
accumulator
|
||||
.accumulate_debounced_events(
|
||||
&mut self.channel,
|
||||
self.redraw_notify.clone(),
|
||||
self.diff_finished_notify.clone(),
|
||||
)
|
||||
.accumulate_debounced_events(&mut self.channel, self.diff_finished_notify.clone())
|
||||
.await;
|
||||
(accumulator.doc, accumulator.diff_base)
|
||||
}
|
||||
|
@ -137,7 +132,6 @@ impl<'a> EventAccumulator {
|
|||
async fn accumulate_debounced_events(
|
||||
&mut self,
|
||||
channel: &mut UnboundedReceiver<Event>,
|
||||
redraw_notify: Arc<Notify>,
|
||||
diff_finished_notify: Arc<Notify>,
|
||||
) {
|
||||
let async_debounce = Duration::from_millis(DIFF_DEBOUNCE_TIME_ASYNC);
|
||||
|
@ -164,7 +158,7 @@ impl<'a> EventAccumulator {
|
|||
None => {
|
||||
tokio::spawn(async move {
|
||||
diff_finished_notify.notified().await;
|
||||
redraw_notify.notify_one();
|
||||
helix_event::request_redraw();
|
||||
});
|
||||
}
|
||||
// diff is performed inside the rendering loop
|
||||
|
@ -190,7 +184,7 @@ impl<'a> EventAccumulator {
|
|||
// and wait until the diff occurs to trigger an async redraw
|
||||
log::info!("Diff computation timed out, update of diffs might appear delayed");
|
||||
diff_finished_notify.notified().await;
|
||||
redraw_notify.notify_one();
|
||||
helix_event::request_redraw()
|
||||
});
|
||||
}
|
||||
// a blocking diff is performed inside the rendering loop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue