From c518f845f59623345af6ab29ed0fa2e8b300480c Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 18 Mar 2025 20:23:43 +0000 Subject: [PATCH] chore: add progress --- helix-term/src/handlers/blame.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/helix-term/src/handlers/blame.rs b/helix-term/src/handlers/blame.rs index 6600ab9e..53200243 100644 --- a/helix-term/src/handlers/blame.rs +++ b/helix-term/src/handlers/blame.rs @@ -22,6 +22,12 @@ impl helix_event::AsyncHook for BlameHandler { fn finish_debounce(&mut self) { // TODO: this blocks on the main thread. Figure out how not to do that + // + // Attempts so far: + // - tokio::spawn + // - std::thread::spawn + // + // For some reason none of the above fix the issue of blocking the UI. job::dispatch_blocking(move |editor, _| { request_git_blame(editor); })