chore: add progress
This commit is contained in:
parent
1134c9def3
commit
c518f845f5
1 changed files with 6 additions and 0 deletions
|
@ -22,6 +22,12 @@ impl helix_event::AsyncHook for BlameHandler {
|
||||||
|
|
||||||
fn finish_debounce(&mut self) {
|
fn finish_debounce(&mut self) {
|
||||||
// TODO: this blocks on the main thread. Figure out how not to do that
|
// 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, _| {
|
job::dispatch_blocking(move |editor, _| {
|
||||||
request_git_blame(editor);
|
request_git_blame(editor);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue